I want to launch my AHK script like described here. I will need to do two different things, A and B. I can either put them in one script, or two separate scripts. But B needs some data from A, which is where my problem lies.
- Solution one: Put A and B into one script, and somehow notify it when it's time for part B, but without restarting it. But how?
- Solution two: Put them into separate scripts, and somehow pass the values between them. But again, how? The value does not fit into the exit code, and I also don't know how to get the exit code and now to launch multiple executables from and UWP app.