@vntricky right now the order of input fields is alphabetic so it is still possible to rename it in a way that it would be in a desired order ("1Use Proxy","2Proxy String",etc.) , but what is the order of actions ? @Fox In any case would be good to know how to change the order if it is possible?
Can I use "call function" in an async function?
-
Lets say I have four functions in one script: Main, controller, load and inputCredentials.
The Main function is essentially only a loop waiting for new credentials. when it gets the new credentials (through an api) it starts controller function using "call function asynchronously" module. Then the controller calls load and inputCredentials functions.
So, the controller can work asynchronously with the Main function and the async thread will end when the account is created. Is that possible? If not, what is the alternative approach?
Test Script:
test_script.xml -
@pirkhezr Asynchronous functions and multi-threaded function calls operate independently of the main logic; they do not have shared variables.
To use logic and transfer data within such functions, use global variables, as they can transfer data within functions, which local variables cannot do.
-
This post is deleted!