iMacros Random Word ?

fiesta

Junior Member
Joined
Jan 5, 2011
Messages
174
Reaction score
42
using the firefox extension, who knows how to have a variable assigned a random word or random text string?
 
i think we replace it with wildcard symbol *

I always interested to master iMacros automation software.. till now i can't figure it out on how to get and extract some text like twitter usernames.. i know this is simple but i can't figure it out to extract all the twitter members usernames only. Ex: www dot twitter dot com/johndoe

I have question, can we use a wildcard symbol * to get and call iMacros to extract those usernames?

Please share your knowledge everyone..
 
I don't know much about imacros bro! If you are good at anyother programming lang like VB or C++ you can make imacros to do a lot of work.

There was a wso on macros and it is here somewhere in download section

Here is the download links for this WSO

Code:
http://www.warriorforum.com/warrior-special-offers-forum/226924-imacro-video-tutorials-50-bookmark-imacros.html

Code:
http://www.mirrorcreator.com/files/1LUPESMV/macrorecorder.zip.001_links
Code:
http://www.mirrorcreator.com/files/0NSW7OGC/macrorecorder.zip.002_links
Code:
http://www.mirrorcreator.com/files/2KEBUNLR/macrorecorder.zip.003_links

I always interested to master iMacros automation software.. till now i can't figure it out on how to get and extract some text like twitter usernames.. i know this is simple but i can't figure it out to extract all the twitter members usernames only. Ex: www dot twitter dot com/johndoe

I have question, can we use a wildcard symbol * to get and call iMacros to extract those usernames?

Please share your knowledge everyone..
 
Last edited:
i think we replace it with wildcard symbol *

interesting, let's say I have this line

TAG POS=1 TYPE=INPUT:TEXT FORM=NAME: ATTR=NAME:user CONTENT={{!COL1}}

I tried putting '*' at the !COL1 in the .csv file but it just copied it to the form.
 
Hi there

I suggest you download the videos and try to understand.What i have seen is that * is used if there is a variation in URLs.

Let us say you are creating profile in one forum and you are recording a macro.

then macro will look like this.

goto

Code:
 [URL="http://www.forumloginurl.com/1234"]www.forumloginurl.com/1234[/URL]

so if u rerun the macro it wont work because some forums will have dynamic url for login page i mean like this

Code:
 [/URL]

[URL="http://www.forumloginurl.com/1245"]www.forumloginurl.com/1245[/URL]

so you go to your macrocode and add * symbol like this

Code:
[URL="http://www.forumloginurl.com/*"]www.forumloginurl.com/*[/URL]




interesting, let's say I have this line

TAG POS=1 TYPE=INPUT:TEXT FORM=NAME: ATTR=NAME:user CONTENT={{!COL1}}

I tried putting '*' at the !COL1 in the .csv file but it just copied it to the form.
 
interesting, let's say I have this line

TAG POS=1 TYPE=INPUT:TEXT FORM=NAME: ATTR=NAME:user CONTENT={{!COL1}}

I tried putting '*' at the !COL1 in the .csv file but it just copied it to the form.

You just make those random texts in the excel and save as CSV files, then use

TAG POS=1 TYPE=INPUT:TEXT FORM=NAME: ATTR=NAME:user CONTENT={{!COL1}}

Also google -username generator- and you will find software that generates thousands of usernames for you to paste into excel.
 
Back
Top