Jump to content

eKolin

Active Members
  • Posts

    22
  • Joined

  • Last visited

Reputation Activity

  1. Like
    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  
  2. Like
    eKolin reacted to SadBunny in WinActivate question   
    Welcome to the wondrous world of &  
    $firstName = "John" $lastName = "Johnson" $fullName = $firstName & " " & $lastName MsgBox(64, "name", $fullName)  
  3. Like
    eKolin reacted to JohnOne in Current task, GOTO?   
    Opt("TrayIconDebug", 1) ;0=no info, 1=debug line info  
  4. Like
    eKolin reacted to ViciousXUSMC in Current task, GOTO?   
    Yes look at the debug features.
    Yes again, you will need to use Functions.
  5. Like
    eKolin reacted to Jos in Question   
    WinClose() is not the right function to use here but rather use GuiDelete()
    Jos
  6. Like
    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.
  7. Like
    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
×
×
  • Create New...