Since the 9.5.1 release, i've noticed a change that broke my usual workflow...
i use text files parsed by autohotkey to connect to ftp sites
firt line is to connect to the ftp server, then the second line is to go to the correct folder.
until the 9.5 release, i've always used something like this in autohotkey :
and i worked perfectly, but since i updated to the latest release, this does not work anymore, it works as a button :
Go FTPSITE="ovh adnpix.fr" NEWTAB OPENINRIGHT
Go FTP://ftp.mediaPlan.ovh.net//www/someproject OPENINRIGHT
Any idea ?
Thanks in advance for giving me some clues
Nicolas
i noticed that if i have add a pause between commands, it works...
that is :
RunWait, %dopus% /cmd Go FTPSITE="ftp" NEWTAB OPENINRIGHT
Sleep, 1000
RunWait, %dopus% /cmd Go FTP://someserver//www/someproject OPENINRIGHT
before 9.5.1 release there was no need for this pause, maybe dopusrt does not send the same information when it ends ? making the autohotkey command RunWait not working ?
If there's a general problem with dopusrt then it's worth looking into but if it only affects pairs of FTP commands like in this example, where it's better to use a single command anyway, then I don't think it is.
Have you run into any other problems with dopusrt since updating?
you are perfectly right, however since this behavior appeared between 9.5.0 and 9.5.1 (maybe only for pairs of FTP command i admit), i think it's worth investigating
in any case, thanks to you my workflow is back to normal
Hi,
since upgrading to dopus 10 the command suggested by leo does not work as expected :
Go "@entry_of_ftp_address_book//www/someproject" OPENINRIGHT
it does connect but the problem is it does not connect using a secure connection ... it should since "entry_of_ftp_address_book" is set as a secure connection
Go "@entry_of_ftp_address_book" does work, that is, it does connect using a secure connection
i guess this is a bug... is there any workaround while waiting for a fix... if not i'll have to downgrade to dopus 9...