Work on Selected Files

Discuss RoboTask here
Post Reply
Ghostdraconi
Posts: 2
Joined: Sun Apr 06, 2008 12:48 am

Work on Selected Files

Post by Ghostdraconi »

I would like to set up a task so that I could select a Random file or files in Explorer and have the moved to a predetermined location using a Shortcut key (e.g. I press Ctrl-M and all the files I've selected go the C:\Storage)
endofrainbow
Posts: 3
Joined: Fri Apr 11, 2008 7:23 am

Work on Selected Files

Post by endofrainbow »

First i want to show you a way which isnt about Robotask. You should use SendTo function of right click menu of your mouse to make this task.Follow this steps.1- Select Tools in explorer windows and next Folder Options.2- Activate Appearance and select 'Show hidden files and folders'3- Go to C:\Documents and Settings\Your User Name\Sendto folder4- Add a shortcut of your destination folder into Sendto folderAfter this, when you select multiple files. Right click to yor mouse and go to sentto and your specific destination folder. Your Files will be transferred.In Roboform you can set variable for this process, which i dont know how exactly. But making this without a selection of files is easier.
Oleg
Site Admin
Posts: 3014
Joined: Thu Jan 01, 1970 1:00 am
Contact:

Work on Selected Files

Post by Oleg »

Also see this example below.

When you have selected some files in windows explorer press Crtl-M. The task will copy selected files into c:\incoming folder

;*****************************
;* RoboTask Task file       
;* Do not edit in text editor!
;*****************************

[Root]
ActionAfterRun=INTEGER|0
Actions=FOLDER
Automat=INTEGER|-1
CatID=INTEGER|700197831
ContinueOnError=INTEGER|0
Events=FOLDER
ExternalName=STRING|"Task592"
Hide=INTEGER|0
ID=INTEGER|584710934
Name=STRING|"copy files from explorer"
Priority=INTEGER|3
RunOnClose=INTEGER|0
RunOnStartup=INTEGER|0
ToLog=INTEGER|3
WriteGeneralLog=INTEGER|0

[Actions]
Action1=FOLDER
Action2=FOLDER
Action3=FOLDER
Action4=FOLDER
Action5=FOLDER
Action6=FOLDER

[Actions\Action1]
ActionID=STRING|"A_CLIPBOARD_COPY"
Enabled=INTEGER|-1
Name=STRING|"Copy"
Params=FOLDER

[Actions\Action1\Params]
mode=STRING|"1"

[Actions\Action2]
ActionID=STRING|"A_GENERAL_PAUSE"
Enabled=INTEGER|-1
Name=STRING|"Delay 200 ms"
Params=FOLDER

[Actions\Action2\Params]
delay=STRING|"2"

[Actions\Action3]
ActionID=STRING|"A_FOLDER_CREATE"
Enabled=INTEGER|-1
Name=STRING|"Create Folder (c:\incoming)"
Params=FOLDER

[Actions\Action3\Params]
newfolder=STRING|"c:\incoming"

[Actions\Action4]
ActionID=STRING|"A_GENERAL_RUN_PROG"
Enabled=INTEGER|-1
Name=STRING|"Run ""incoming """
Params=FOLDER

[Actions\Action4\Params]
program=STRING|"c:\incoming"
runas=STRING|"0"
wait=STRING|"1"

[Actions\Action5]
ActionID=STRING|"A_GENERAL_PAUSE"
Enabled=INTEGER|-1
Name=STRING|"Delay 200 ms"
Params=FOLDER

[Actions\Action5\Params]
delay=STRING|"2"

[Actions\Action6]
ActionID=STRING|"A_CLIPBOARD_PASTE"
Enabled=INTEGER|-1
Name=STRING|"Paste"
Params=FOLDER

[Actions\Action6\Params]
mode=STRING|"1"

[Events]
Event1=FOLDER

[Events\Event1]
Enabled=INTEGER|-1
EventID=STRING|"E_GENERAL_HOTKEY"
Params=FOLDER

[Events\Event1\Params]
hotkey=STRING|"16461"
Ghostdraconi
Posts: 2
Joined: Sun Apr 06, 2008 12:48 am

Work on Selected Files

Post by Ghostdraconi »

Thank you both
Post Reply