hi!
I just want to change the directory ...
->didn't find somethig like cm_ChangeDirektory
->tryed SendText("cd d:\foo"); SendVKey(VK_RETURN,2);
all that is send is cd dfoo ...
any ideas? (other than sending 12 direktories in a row???)
change direktories in tzSkript
Moderators: Hacker, petermad, Stefan2, white
- franck8244
- Power Member
- Posts: 704
- Joined: 2003-03-06, 17:37 UTC
- Location: Geneva...
you mean in "http://fgartemann.free.fr/TCMD/Script/09.tcs" ?
you have to admid that this way of doing it is a pay in the ass...
i have to change into some directory like
c:\data\mp3\fun\wise - guys\skandal\some - stuff.mp3
where i have to use many different direktories there...
i found some workaround:
do
SendVKey(VK_TAB,2);
SendVKey(67,2); //'c'
SetClipbrd("d d:\download2\test\sorted\muell");
SendVKey(VK_LCONTROL,1);
SendVKey(86,2);
SendVKey(VK_LCONTROL,2);
SendVKey(VK_RETURN,2);
SendVKey(VK_TAB,2);
it uses the clipboard...
you have to admid that this way of doing it is a pay in the ass...
i have to change into some directory like
c:\data\mp3\fun\wise - guys\skandal\some - stuff.mp3
where i have to use many different direktories there...
i found some workaround:
do
SendVKey(VK_TAB,2);
SendVKey(67,2); //'c'
SetClipbrd("d d:\download2\test\sorted\muell");
SendVKey(VK_LCONTROL,1);
SendVKey(86,2);
SendVKey(VK_LCONTROL,2);
SendVKey(VK_RETURN,2);
SendVKey(VK_TAB,2);
it uses the clipboard...
- franck8244
- Power Member
- Posts: 704
- Joined: 2003-03-06, 17:37 UTC
- Location: Geneva...