-
Posts
22 -
Joined
-
Last visited
Reputation Activity
-
eKolin reacted to SadBunny in WinActivate question
Stitching strings together is called concatenation. & (and &=) are concatenation operators. Check the helpfile for "Language Reference - Operators":
Indeed
-
eKolin reacted to SadBunny in WinActivate question
Welcome to the wondrous world of &
$firstName = "John" $lastName = "Johnson" $fullName = $firstName & " " & $lastName MsgBox(64, "name", $fullName)
-
eKolin reacted to JohnOne in Current task, GOTO?
Opt("TrayIconDebug", 1) ;0=no info, 1=debug line info
-
eKolin reacted to ViciousXUSMC in Current task, GOTO?
Yes look at the debug features.
Yes again, you will need to use Functions.
-
-
eKolin reacted to JLogan3o13 in Detect GUI (simple question)
@eKolin as I tell my son who is just beginning his journey into scripting - sometimes it is better to do it yourself than to have someone tell you. Mock up a script and try out the difference between 0 and 2; it should become pretty apparent to you.
-
eKolin reacted to JLogan3o13 in Detect GUI (simple question)
@eKolin I am guessing you are looking to use Mouse functions. Look at MouseCoordMode in the help file to set it relative to the active window.
Or, you can give a better explanation of what you're trying to accomplish and we can help you get away from all the messy Mouse-work altogether