Search found 6 matches

by Jabberwock
Tue Oct 16, 2007 1:54 am
Forum: General Discussion
Topic: Opening latest document
Replies: 3
Views: 8383

Opening latest document

Very interesting! Shows that I have to study the examples deeper...
by Jabberwock
Tue Oct 16, 2007 1:48 am
Forum: General Discussion
Topic: Assign exit code to variable
Replies: 2
Views: 7329

Assign exit code to variable

What I meant is returning the contents of the output buffer, so I could, for example, use a perl script to specify a filename etc.
by Jabberwock
Mon Oct 01, 2007 2:25 am
Forum: General Discussion
Topic: Assign exit code to variable
Replies: 2
Views: 7329

Assign exit code to variable

Am I doing something wrong, or does this option return only 1/0?It would be much more useful if it was possible to get the output of the executed program...
by Jabberwock
Sat Sep 29, 2007 1:15 pm
Forum: Suggestions
Topic: Folder for TrayIcon menu
Replies: 0
Views: 13183

Folder for TrayIcon menu

I have some tasks which I would use from time to time... I do not want to sacrifice a hotkey or a tray icon, still accessing them from the main RoboTask window is not that convenient either...Maybe the RoboTask tree could contain a special folder, which structure would reflect a menu accesible from ...
by Jabberwock
Sat Sep 29, 2007 12:00 pm
Forum: General Discussion
Topic: Opening latest document
Replies: 3
Views: 8383

Opening latest document

Did with an external script...VBS script:Set aFSO = CreateObject("Scripting.FileSystemObject")Set aFolder = aFSO.GetFolder("C:\MyPath")Set aFiles = aFolder.FilesFor Each aFile In aFiles        If aFSO.GetExtensionName(aFile.Name) = "dvprj" And aFile.DateLastModified > L...
by Jabberwock
Sat Sep 29, 2007 7:24 am
Forum: General Discussion
Topic: Opening latest document
Replies: 3
Views: 8383

Opening latest document

The task I am planning requires opening of a latest document in a specific folder. Can I do that in RoboTask?If not, can I use a script output (e.g. PERL) as a variable?