AutoHotkey Webinar Videos and Links
- Here is a link to video of the First hour
- Video of Second hour
Link to AutoHotkey Webinar resources:
- Jackie Sztuk: [email protected] jszapp.com Connect on LinkedIn YouTube videos Resources
- Joe Glines: [email protected] the-Automator.com Connect on LinkedIn YouTube videos Resources
Additional resources mentioned in AutoHotkey Webinar
Using built-in Functions
SubStr(String, StartingPos [, Length])
Trim()
Round(Number[,N])
Creating your own custom function
- Why you want to create them
- Things to pay attention to:
- Accessing variables outside your function
- Passing parameters
- Setting defaults
- Returning values
DLL call
- What is it?
- Why is it so valuable an Asset?
- Why is it so ‘tricky’?
- Message Box
v:= DllCall("MessageBox","Uint",0,"Str","my message","Str","my title","Uint","0x00000036L")
Additional DLLCall Resources
- Windows API Index
- AutoHotkey, WinAPI & DllCall’s
- Windows data types Windows Data types for AHK by jNizM
- Windows Data Type Ranges
- Mouse controls
- DLL Export viewer ILSpy (.Net Decompiler)
- YouTube tutorial from RaptorX /AHKTuts DLL Call part 1
- YouTube tutorial from RaptorX /AHKTuts DLL Call part 2
Script Highlight- Pasting plain text
#SingleInstance Force ^g:: ;Control G pastes plain text Store:=ClipboardAll ;Store full version of clipboard ClipBoard := ClipBoard ; Convert to plain text Sleep, 50 SendInput, ^v ;paste plain text Sleep, 50 Clipboard:=Store ;restore clipboard to original content return
Register for upcoming AutoHotkey webinars here