Search found 3241 matches

by Oleg
Mon Oct 20, 2025 7:43 pm
Forum: General Discussion
Topic: Day of week for a specific date
Replies: 3
Views: 223

Re: Day of week for a specific date

You need enter the date in you current system date format thy these strings {Date} {DayOfWeek} {DayOfWeek({FormatToDateTime(2025-10-16,yyyy-mm-dd)})} Also I'm afraid that hyphens in the system format and in the action parameters are different symbols (see screenshot). Different_symbols.png So the ac...
by Oleg
Sat Oct 18, 2025 6:57 am
Forum: General Discussion
Topic: Day of week for a specific date
Replies: 3
Views: 223

Re: Day of week for a specific date

use the expression {DayOfWeek(01.01.2010)}
Specify necessary date in you current system format
by Oleg
Sat Oct 11, 2025 3:01 pm
Forum: General Discussion
Topic: JavaScript - assign result of fn to variable robotakst
Replies: 5
Views: 52339

Re: JavaScript - assign result of fn to variable robotakst

Unfortunately Python Script and Node.JS script actions can set only local variables now and does not process prefixes.
We'll fix this problem in next release.
by Oleg
Sat Oct 11, 2025 2:56 pm
Forum: General Discussion
Topic: FTP File Loop Reset
Replies: 1
Views: 632

Re: FTP File Loop Reset

Is there a way to reset the FTP File Loop so that it can be rebuilt for each file in the file loop?
There is only one way: to begin the loop again.

Unfortunately, I don't know your algorithm, but perhaps it would be better to use FTP Synchronization or SSL FTP Synchronization?
by Oleg
Sat Oct 11, 2025 2:49 pm
Forum: General Discussion
Topic: c:\progra~2\Progress\WS_FTP~1
Replies: 4
Views: 5879

Re: c:\progra~2\Progress\WS_FTP~1

Code: Select all

What was the solution, in case I have this problem again?
Read here how to use reserved symbols in Send Keystrokes action : https://robotask.com/help/index.html?send_keys.htm
On the bottom of the page
by Oleg
Sat Oct 11, 2025 2:44 pm
Forum: General Discussion
Topic: Help Creating a Task to Automate Daily File Backup
Replies: 4
Views: 11653

Re: Help Creating a Task to Automate Daily File Backup

Make the task like this:

Code: Select all

If not {FolderExists(I:\)} then
   send email
end if
Use Send email action
This task will send email if specified folder does not exist
by Oleg
Fri Oct 10, 2025 7:57 am
Forum: General Discussion
Topic: JavaScript - assign result of fn to variable robotakst
Replies: 5
Views: 52339

Re: JavaScript - assign result of fn to variable robotakst

Try to use variable name like this: "local@ResVar" Also you can create local variable with necessary name Look at my example below. I have global variable MyVar . By the script set value to local variable MyVar ;***************************** ;* RoboTask Task file ;* Do not edit in text edi...
by Oleg
Tue Sep 23, 2025 10:40 am
Forum: General Discussion
Topic: Comma-Text- Conversion
Replies: 1
Views: 10959

Re: Comma-Text- Conversion

Thank you for the information.
Already fixed. Download fresh version here: https://robotask.com/download/
Or use check for updates option.
by Oleg
Mon Sep 22, 2025 1:17 pm
Forum: General Discussion
Topic: Count files only
Replies: 4
Views: 36921

Re: Count files only

Take a look at this example You can count files in the loop ;***************************** ;* RoboTask Task file ;* Do not edit in text editor! ;***************************** [Root] ActionAfterRun=INTEGER|0 Actions=FOLDER Automat=INTEGER|-1 CatID=INTEGER|307868550 Comment=STRINGLIST ContinueOnError=...
by Oleg
Mon Sep 22, 2025 12:55 pm
Forum: General Discussion
Topic: Extract text from web pages
Replies: 1
Views: 5831

Re: Extract text from web pages

Look at these actions: These actions allow to extract text from page element or whole page. Next you need to analyze extracted data.