Spintax for iMacros?

Ming the Merciless

Power Member
Joined
Sep 30, 2012
Messages
706
Reaction score
847
Is there a way to use "spintax" in iMacros (I am using it on FireFox). I googled it but came up with nothing of use. I also did a test which looked like this:

Code:
TAG POS=1 TYPE=SELECT FORM=NAME:register ATTR=ID:gender CONTENT={%WOMAN|%MAN}

Notice where I tried to "spin" woman|man. It didn't work and maybe it is not a possibility. Any insight would be great.
 
For example, you are about to make a comment on facebook. Without leaving facebook, can you for example do a request to another website to get it's response? This would mean you could send your text to spin to a service and get spinned text back to post on facebook.
 
SET !VAR1 {{!NOW:ss}} // takes random number 0-100 from time
SET !DATASOURCE out.csv // you must have a out.csv file with 100 lines in C:\Users\USERNAME\Documents\iMacros\Datasources
SET !DATASOURCE_LINE {{!VAR1}}
TAG POS=1 TYPE=SELECT FORM=NAME:register ATTR=ID:gender CONTENT={{!COL1}}

Didn't test .. but its possible for sure :)
 
For example, you are about to make a comment on facebook. Without leaving facebook, can you for example do a request to another website to get it's response? This would mean you could send your text to spin to a service and get spinned text back to post on facebook.

Ahhh, I see what you are saying. I do not need to spin text. I just need to choose a random option on a drop down menu when making profiles, so I do not think that will work. Thank you though.
 
SET !VAR1 {{!NOW:ss}} // takes random number 0-100 from time
SET !DATASOURCE out.csv // you must have a out.csv file with 100 lines in C:\Users\USERNAME\Documents\iMacros\Datasources
SET !DATASOURCE_LINE {{!VAR1}}
TAG POS=1 TYPE=SELECT FORM=NAME:register ATTR=ID:gender CONTENT={{!COL1}}

Didn't test .. but its possible for sure :)

This looks more like what I need. I guess I will just need to play around with it. Thanks!
 
Back
Top