Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. The main reason is that AutoIt has an official UDF for interacting with IE and it has many functions which makes the automation easier
  2. Hi, first of all, great framework! I am in a scenario where I have multiple buttons with the "same properties" (atleast the same "title" property). They all look the same... but I have to click on a specific button. The simplespy.au3 script's generated code clicks on the first button... and I have to click on the 3rd button (let's assume). How do I accomplish this? I can provide more information if wanted, thanks in advance!
  3. Why do you think that it is better than my suggestion of creating a Local variable?
  4. Sorry @Jos, I thought this forum followed the "one question per thread" policy. Again, many apologies
  5. Glad to know that my code works . About your other question, I recommend you to ask to MODs to split the thread with the question about GUI in the AutoIt GUI Help forum, only 1 question per 1 thread
  6. You can use the Assign function in a loop For $iVarNum = 1 To 10 Assign("v" & $iVarNum, $iVarNum) Next
  7. Looks like you have misunderstood me Melba, I was trying to propose that as an idea, not to actually use Volatile to do what @czardas wanted
  8. Something like this?: Global Volatile $vOneTimeUseOnly
  9. So are we talking about Local variables at the scope of "outside functions"?
  10. I think it would create more confusion for beginners , why encourage them to use which is not the way it works just to make sure that they use Local inside functions? The newbies use global variables, which are very easy to understand, as the newbies progress in their programming adventure, they will eventually recognize that Local variables are used inside functions... I see no problem here with using Global variables .
  11. Quite funny . I prefer to do it right when I do it, no matter how small "it" is .
  12. nope, gists are hard to manage and they have limited version control. Also, gist isn't really suited for multiple files, hard to navigate and download the required bits link to the raw code or linking to specific lines of code in a file.
  13. If I remember correctly, isn't it impossible to declare Local variables outside functions? AutoIt automatically creates a global variable when declared out side a function regardless of the Keyword used to declare the variable. Local $vGlobalVariable = "foobar" Example() Func Example() MsgBox(0, $vGlobalVariable, $vGlobalVariable) EndFunc That code snippet works for me .
  14. I can volunteer to manage a GitHub repository . Please let me know if anyone needs a hand . Regarding to the link between the exercises and solution, we can follow a naming scheme for the names of the code snippet files (.au3 files).
  15. Maybe we can upload all of the answers as code snippets to a GitHub repository?
  16. Are we going to post the solutions in this thread where everything is not in one place?
  17. Western coast of the Netherlands? or Holland in the US?
  18. Hmm... since I no longer use ISN AutoIt Studio, I have forgotten most of the options . @ISI360 might be able to help you!
  19. This is how it looks for me:
  20. I have used the Gui Builder and as far as I remember, I was using the English version
  21. You can try my Process UDF which is capable of returning the STD output for you
×
×
  • Create New...