In the below iMacros how can I set a variable value and then concatenate it?
VERSION BUILD=8530828 RECORDER=FX
TAB T=1
SET !ERRORIGNORE YES
SET !DATASOURCE allsource.CSV
SET !TIMEOUT 1
SET !VAR! = My<SP>Content<SP>Here.
TAG POS=1 TYPE=TEXTAREA FORM=ID:pst-main ATTR=ID:description CONTENT={{!COL1}}
How can the SET !VAR1 = MyContentHere. work? Please correct my syntax.
And, how can I concatenate COL1 and VAR1 the below way didn't work
TAG POS=1 TYPE=TEXTAREA FORM=ID:pst-main ATTR=ID:description CONTENT={{!COL1}} !VAR1
Please correct my syntax, thanks
EDIT1
Also, I am able to set Loop start as SET !LOOP 2
how can I set LOOP end without manually setting Loop Number and hit play loop
button?
To assign a value to a variable, use this:
Concatenate COL1 and VAR1:
If you don't want to set loop end manually, you'll need to use JavaScripting.
Your macro should look like this:
Read here about JavaScripting, you will have to save this code in a *.js file.