I have the same stack issue with autoit closing as a few others here have encountered. I know what I did wrong. I have:
Func1
If...Func2
Else...Func3
EndFunc
Func3
If...Func4
Else...Func1
EndFunc
So basically, I check things and go back to step 1 if the functions don't find their values. It ends up creating functions inside functions...etc. Instead of pointing back at step one, how can I FINISH and go BACK to step 1? The actual code is much more complicated, however if you can solve this, I can easily apply it. I want to avoid a massive logic nest, as that would be tedious and error prone in my case.
Thanks