Muckytears Posted November 4, 2011 Share Posted November 4, 2011 I downloaded the program this morning and did a bit of messing about with it. I was attempting to create a script that when I press a certain key, the cursor on screen will jump to a set position. I was using the functions HotKeySet and MouseMove, but no matter what I did it was always refusing to run the program. I'm away from my computer with it installed atm so I can't copy my attempts, so just if anyone could offer some useful advice of how the scripting should look would be a great help =] Thanks in advance Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted November 4, 2011 Moderators Share Posted November 4, 2011 Muckytears,Welcome to the AutoIt forum. That was your one-time use of the "not at my machine now" excuse for not posting your coding attempt! This works for me - I have suggested where I think you might have had a problem: ; Set the HotKeys HotKeySet("a", "MoveMouse") ; Pressing "a" moves the mouse HotKeySet("{ESC}", "On_Exit") ; Pressing ESCAPE exits the script ; Use an infinite loop to keep the script alive - I bet this is what you did not have in your version ;) While 1 Sleep(10) WEnd Func MoveMouse() MouseMove(100, 100) ; Move the mouse to 100, 100 EndFunc Func On_Exit() Exit EndFuncPlease ask if you have any questions. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Muckytears Posted November 4, 2011 Author Share Posted November 4, 2011 ah massive thanks for this, and i really was away from my computer xD I had to get off to college so I didn't have time to ask it at home. Wasn't too far off but yeah I didn't have the loop in it also creepy that you used point 100,100 because that's the point that I was testing it with this morning xD Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted November 4, 2011 Moderators Share Posted November 4, 2011 Muckytears, Nice to see the remote debugging skills are still up to scratch! Enjoy your coding in AutoIt. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now