Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. Wow , I assure you that its not like what you think it is at ##AutoIt! ! I don't want to do something offtopic here, and I am 99% sure that there is no alternative to what I am doing.
  2. It is something which is hard to explain... It has something to do with my IRC Bot. I can explain it in detail if you were to visit us there .
  3. Ticket #3250: New directive for changing AutoIt's Stack Depth has been created .
  4. @jchd Ah! Ok, now I understand... @orbs The recursion I am working on is a little different, its not iterating over something. Of course, I have it well planned too .
  5. How about an Opt() option for stack size instead of using #pragma?
  6. Why no do it yourself? I don't know much about stack as you do . I will be sure to follow that ticket .
  7. @BrewManNH I have planned the recursion in detail but there is a 0.001% chance that it will hit that limit (As the limit is artificial). I haven't implemented this idea in my project yet. So lets just see how it goes .
  8. As you are not automating games, I can assure you that someone will indeed help you .
  9. You are threading on thin ice, MEmu is can be used to play android games. If you are looking to automate a game, you won't get any help. Game Automation is forbidden here! So I recommend you focus on automating non-game apps in MEmu .
  10. Hmm.... So there is no hard coded limit then... Makes my job harder now . Thanks guys .
  11. The classic "Recursion level has been exceeded - AutoIt will quit to prevent stack overflow" error in AutoIt. I made these 2 scripts to test the Recursion levels in AutoIt: This is the first script I made: Global $iRecursionLevel = 0 X() Func X() Y() EndFunc Func Y() $iRecursionLevel += 1 ConsoleWrite($iRecursionLevel & @CRLF) X() EndFunc It made ran until the $iRecursionLevel exceeded 1899. The next script I made however, made till 3799!: Global $iRecursionLevel = 0 X() Func X() $iRecursionLevel += 1 ConsoleWrite($iRecursionLevel & @CRLF) X() EndFunc So, my question is simple, What is the MAX Recursion level in AutoIt?? Thanks in Advance .
  12. I think @dkim295 is trying to use this UDF:
  13. @kcvinu In the future maybe . Wait for Maps first
  14. @kcvinu If you are looking for resizablility, you can resize them using ReDim but it is not very efficient... I am not very experienced with other languages so I cannot comment here.
  15. There is a reason why I am TheDcoder .
  16. Its "AutoIt", Capital "I" and a small "t" . btw, FileOpen won't do any good, it only opens files for writing programmatically...
  17. I just updated the 101: Added FAQ #5 and Looping through loops! Enjoy learning! TD
  18. Old Version CD I think... He might be trying to install to the "Old Version CD" folder .
  19. Where did you find the link? My google search did not show up anything particular.
  20. I don't know, I am not very experienced with K&M automation . Someone more qualified than me will answer your question
×
×
  • Create New...