I've finally started implementing queuing a queue from CLI with the -id and -single switch in my script and I'm running in a problem using v5.0.0 b3765 RC3.
Loading a second queue works perfectly, as it's supposed to be, but I can't get the transfer to start automatically until I load a second queue which is very problematic since I won't necessarily do that.
Even without using -id and -single, I can't get it to start automatically.
Previously, I was loading a queue like so which works fine:
Code:
Flashfxp.exe -c2 -get "queue.fqf"
But for the -id and -single to work, the queue has to be specified using -queue(I tried without and it failed to load the second queue) and I can't get it to work(I tried putting the -get parameter everywhere):
Code:
Flashfxp.exe -c2 -queue="queue.fqf" -get
or
Code:
Flashfxp.exe -id="Test" -single -c2 -queue="queue.fqf" -get
both open the queue in a FlashFXP instance, but doesn't start the transfer.
If I launch the one with -id and -single again, then it will be queue in the running instance and all transfers will start.