Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;AHKv2
- f1::
- {
- vartest := "Hello World"
- msgbox vartest
- result := MsgBox("Another " vartest " I guess") ;make sure on spacing
- }
- f2::
- {
- send "hello world"
- send "{Tab 5}"
- Click "Right"
- }
- f3::
- {
- startover:
- age := InputBox("What is your age?", "Age", "w100 h100") ;hw order
- if age.Result = "Cancel"
- {
- MsgBox "Nah Son you need to tell me your age"
- goto startover
- }
- else
- {
- MsgBox "You entered '" age.Value "'."
- }
- }
- f4::
- {
- msgbox "closing script"
- Exitapp
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement