Jump to content

iZno

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by iZno

  1. I didn't try, but it seems to be a good idea. Does it need to be in a separate script? And then launch the 2 scripts? Then, I'm not supposed to know the <name of the window>. But I also can do several tests with typical names of popups. That's eventually a solution.
  2. not an AutoIT popup, It can be a popup from the program i'm trying to automate, or even a popup from windows such as "file already exists" when you try to save a file.
  3. Lol, I made a mistake today, I tried to hide each window I got. I also believed it will hide only visibles windows, as you expected too ;] But wow, it hided like 200 windows xD no more taskbar, no more control tasks, etc Lol take care with it
  4. StringCompare Compares two strings with options. StringCompare ( "string1", "string2" [, casesense] ) Return Value 0 string1 and string2 are equal > 0 string1 is greater than string2 < 0 string1 is less than string2 Example $result = StringCompare("MELÓN", "melón") MsgBox(0, "StringCompare Result (mode 0):", $result) $result = StringCompare("MELÓN", "melón", 1) MsgBox(0, "StringCompare Result (mode 1):", $result) $result = StringCompare("MELÓN", "melón", 2) MsgBox(0, "StringCompare Result (mode 2):", $result)
  5. Lol, don't you have any other idea? ^^ or explain me what your code is supposed to do =)
  6. #comments-start ... ... #comments-end
  7. Thanks for replying, It would be perfect if I would be able to catch the interruption/popup (cuz' it can occurs at any moment, any place) But I also don't know how to ^^ Does exist a "If popup occurs Then" ? ^^
  8. Hi, When my script is running, a popup occurs, and then the script seems to be paused. (Waiting for me to close manually the popup and then continue the script) How can I catch this popup and also close it? Any Idea would be appreciated as I'm quite new (: Thanks!^^
×
×
  • Create New...