-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
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. -
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
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 . -
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
Ticket #3250: New directive for changing AutoIt's Stack Depth has been created . -
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
@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 . -
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
How about an Opt() option for stack size instead of using #pragma? -
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
Why no do it yourself? I don't know much about stack as you do . I will be sure to follow that ticket . -
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
Agreed. -
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
@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 . -
As you are not automating games, I can assure you that someone will indeed help you .
-
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 .
-
What is the MAX Recursion level in AutoIt?
TheDcoder replied to TheDcoder's topic in AutoIt General Help and Support
Hmm.... So there is no hard coded limit then... Makes my job harder now . Thanks guys . -
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 .
-
Checking for changes in website?
TheDcoder replied to dkim295's topic in AutoIt General Help and Support
I think @dkim295 is trying to use this UDF: -
Arrays 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
@kcvinu In the future maybe . Wait for Maps first -
Arrays 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
@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. -
Arrays 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
-
There is a reason why I am TheDcoder .
-
Its "AutoIt", Capital "I" and a small "t" . btw, FileOpen won't do any good, it only opens files for writing programmatically...
-
Arrays 101: All you need to know about them!
TheDcoder replied to TheDcoder's topic in AutoIt Technical Discussion
I just updated the 101: Added FAQ #5 and Looping through loops! Enjoy learning! TD -
lol indeed
-
Old Version CD I think... He might be trying to install to the "Old Version CD" folder .
-
Where did you find the link? My google search did not show up anything particular.
-
AutoIt bot needs display
TheDcoder replied to pranaynanda's topic in AutoIt General Help and Support
My pleasure -
AutoIt bot needs display
TheDcoder replied to pranaynanda's topic in AutoIt General Help and Support
I don't know, I am not very experienced with K&M automation . Someone more qualified than me will answer your question