I want to run an AHK executable and then have java wait for that executable to terminate it\'s own process at the end of it\'s script and then continue, is there a function to m
It is as simple as one line of code:
Runtime.getRuntime().exec().waitfor();
PS: It is just one line so I didn't mind, but this is not a place to obtain full working code from others. The usual response is "look here, do it yourself", unless the OP post relevant code with a small part missing, which is not the case here.
PS2: Please consider accepting Jim's answer as it was the correct one.