Jump to content

Recommended Posts

Posted

Hi folks,

I have used AutoIt sporadically for the past 10+ years and now I am creating a script, that should wait for a key combination from me (say Ctrl+Alt+D), then execute a block of commands (I have that already) and then wait again...

I tried the below, but get an error (Unknown function name, for the line with the first IF):

While 1
If _IsPressed('A0') = 1 Then
While 1
If _IsPressed('A2') = 1 Then
While 1
If _IsPressed('44') = 1 Then
 
 
...... block of commands ......
 
EndIf
Wend
EndIf
Wend
EndIf
Wend
  • Moderators
Posted

joeyeti,

Welcome to the AutoIt forum. :graduated:

Take a look at HotKeySet in the Help file - a much easier way to do what you want. :)

; This HotKey exits the script
HotKeySet("{ESC}", "On_Exit")

; This one is your special HotKey
HotKeySet("!^d", "_Do_It")

While 1
    Sleep(10)
WEnd

Func _Do_It()
    MsgBox(0, "HotKey", "What did you want me to do?")
EndFunc

Func On_Exit()
    Exit
EndFunc

Please ask if anything is unclear. ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png 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 columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Posted (edited)

#include "misc.au3"; package includes/enables _ispressed() definition
 
 
While 1
Sleep(10)
If _IsPressed("01") Then; when left mouse button pressed
  while _ispressed('01'); wait for left mouse button to be released
   sleep(10)
  wend
  ExitLoop
endif
WEnd

This code will wait for the mouse button to be released before moving on. A system which solves some logical errors in this type of event.

Edited by songersoft

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...