Sabrina 0 Posted March 18, 2015 I am new in autoit programming.Used for a long time ahk.In ahk there is a $ you use the key and more the function of the script.I wonder if the autoit have something?example:I use left is script will use to left and then up.script: $left:: send {left} send {up} return In Autoit there doing this? Share this post Link to post Share on other sites
JohnOne 1,598 Posted March 18, 2015 HotkeySet Click it. Hide JohnOne's signature Hide all signatures AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites
Sabrina 0 Posted March 18, 2015 (edited) HotkeySet Click it. HotKeySet("{left}", "jump") Func jump() Send ("{up}{left}") Endfunc If I do that when you press left the script will go up and come into loop.the script will not run up and left ------[Edit]------ result: HotKeySet("{left}", "jump") Func jump() HotKeySet("{left}") Send ("{up}{left}") HotKeySet("{left}", "jump") Endfunc Ok... But would not otherwise or prefix? Edited March 18, 2015 by Sabrina Share this post Link to post Share on other sites
JohnOne 1,598 Posted March 18, 2015 Syntax is quite different. Hide JohnOne's signature Hide all signatures AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites