Code: Select all
return
should fix it ....
Code: Select all
return
Code: Select all
GuiContextMenu:
if (A_GuiControl = "Comm1")
Menu, ME1, Show, %A_GuiX%, %A_GuiY%
else if (A_GuiControl = "Comm2")
Menu, ME2, Show, %A_GuiX%, %A_GuiY%
Return
Code: Select all
^!V:: ;Ctrl-Alt-V 'Special Paste'
Haystack := Clipboard
Needle := "(?<=:)\s*(?<Keep>.+)$"
RegExMatch(Haystack, Needle, TextTo)
Clipboard := TextToKeep
Send, ^V
return
Code: Select all
arr := ["hello", "world", "test", "Autohotkey" ]
loop % arr.Count()
{
if (A_index & 1) ; Check LSB: if set it's odd
msgbox % "odd " A_index " : " arr[A_index]
else
msgbox % "even " A_index " : " arr[A_index]
}
Code: Select all
While GetKeyState("LButton") and !GetKeyState("Shift") {