Aug 20, 2013

[iMacros Tips imacros loop over 99999]

[iMacros Tips imacros loop over 99999]

Normally codes.
VERSION BUILD=8510617 RECORDER=FX
TAB T=1
URL GOTO=https://www.google.com/
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:tsf ATTR=ID:lst-ib CONTENT=test{{!LOOP}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:tsf ATTR=NAME:btnK
WAIT SECONDS=2

Imacros file first and then build up.

imacros code copy [1].
imacros code copy [2].
imacros code copy [3].

Set maximum a loop 99999.
99999 +99999 +99999 = 299997 will.



New code.

VERSION BUILD=8510617 RECORDER=FX
TAB T=1
URL GOTO=https://www.google.com/
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:tsf ATTR=ID:lst-ib CONTENT=test{{!LOOP}}<SP>Code<SP>1
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:tsf ATTR=NAME:btnK
WAIT SECONDS=2

TAB T=1
URL GOTO=https://www.google.com/
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:tsf ATTR=ID:lst-ib CONTENT=test{{!LOOP}}<SP>Code<SP>2
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:tsf ATTR=NAME:btnK
WAIT SECONDS=2

TAB T=1
URL GOTO=https://www.google.com/
TAG POS=1 TYPE=INPUT:TEXT FORM=ID:tsf ATTR=ID:lst-ib CONTENT=test{{!LOOP}}<SP>Code<SP>3
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:tsf ATTR=NAME:btnK
WAIT SECONDS=2 


Mar 1, 2013

[iMacros Script blog.yahoo.com]

[iMacros Script blog.yahoo.com]

'********************** Start Script ***************************

VERSION BUILD=7500718 RECORDER=FX
SET !ERRORIGNORE YES
SET !EXTRACT_TEST_POPUP NO
SET !ERRORCONTINUE YES
CMDLINE !DATASOURCE Post<SP>Content.csv
SET !DATASOURCE_COLUMNS 2
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
SET !TIMEOUT_TAG 100
TAB T=1
URL GOTO=http://blog.yahoo.com/y/blog/post
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:ygubpost ATTR=ID:art-title CONTENT={{!COL1}}
TAG POS=1 TYPE=EM ATTR=TXT:HTML<SP>editor
TAG POS=1 TYPE=TEXTAREA FORM=NAME:ygubpost ATTR=ID:ygurte CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:ygubpost ATTR=ID:tags-area CONTENT={{!COL1}}<SP>Hello,{{!COL1}}<SP>Today,{{!COL1}}<SP>imacros<SP>gui 
TAG POS=1 TYPE=BUTTON ATTR=ID:ygurtePubInput
SET !EXTRACT NULL
ADD !EXTRACT {{!URLCURRENT}}
SAVEAS TYPE=EXTRACT FOLDER=* FILE=yahoo_post_url_x.csv

'********************** End Script ***************************

Post Content.csv
Col 1 = Title
Col 2 = HTML Content

C:\Users\##youname##\Documents\iMacros\Datasources






Dec 24, 2012

[ imacros script ] Remove all blog from blogger

[iMacros Script] Remove all blog from blogger

VERSION BUILD=7601105 RECORDER=FX
TAB T=1
TAG POS=1 TYPE=A ATTR=href:/blogger.g?blogID=*#overview/src=dashboard&&TXT:*
WAIT SECONDS=1
TAG POS=1 TYPE=SPAN ATTR=ID:blog-tab-settings
WAIT SECONDS=1
TAG POS=1 TYPE=SPAN ATTR=TXT:Other
WAIT SECONDS=1
TAG POS=1 TYPE=A ATTR=TXT:Delete<SP>blog
WAIT SECONDS=1
TAG POS=1 TYPE=BUTTON ATTR=TXT:Delete<SP>This<SP>Blog
WAIT SECONDS=3


1. Login google account
2. goto blogger dashboard
3. Look at repeat macros (imacros bar)
4. put max loop in text box
5. Click "Play (Loop) bottom

Jul 6, 2012

[iMacros Script] Secure Gmail Login

'------------------------------ Start Script -----------------------------------

URL GOTO=https://www.google.com/accounts/ServiceLogin?service=mail
 TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:https://www.google* ATTR=ID:Email CONTENT=<YOUR GMAIL LOGIN>
 SET !ENCRYPTION NO
 TAG POS=1 TYPE=INPUT:PASSWORD FORM=ACTION:https://www.google* ATTR=ID:Passwd CONTENT=<YOUR GMAIL PASSWORD>
 TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:https://www.google* ATTR=ID:PersistentCookie CONTENT=NO
 TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:https://www.google* ATTR=NAME:signIn
 'Switch to HTTPS
 URL GOTO=https://mail.google.com/mail


' ------------------------- End Script ------------------------------------------

Jun 28, 2012

[iMacros Program] iMacros Script Code Creator

iMacros Script Code Creator

About the Software

The iMacros Code Creator is a simple tool to convert iMacros macros into a scripting language's code fragment that contains the very same macro e.g. in a string variable, cf. screenshot below. The other way round (script -> macro), conversion is supported, too, which makes the software very useful for developers that want to script the iMacros software.
Here's how the iMacros Code Creator looks like on Windows 7:


Features

Currently supported code styles

  • VBS string
  • VB function
  • Javascript string (useful for Firefox scripting)
  • C# string
  • Java string
  • Php string

Utilities

  • New! Convert macros and Javascript to single URLs (for iMacros' Social Scripting feature)
  • Sample code (VBS only)
  • Links to online code samples
  • iMacros string conversion ("My Documents" --> "My<SP>Documents")
  • Check for updates online

Contact

Please submit bugs, feature requests and all other questions by creating a ticket.

Popularity

Find the download stats here

  

image and content from http://sourceforge.net/apps/trac/imacros-codegen

Jun 23, 2012

[iMacros Script] Remove All Notes From Facebook Notes

Remove All Notes From Facebook Notes
***Change the value. The red.***
/*                                              Save File As .js   (javascript file)       
                                                    Start Script

*/

var jsLF="\n";
var header,macro;
Remove_Drafts = 0;
Your_Note_Link    = 'http://www.facebook.com/pages/XXXXX/999999999999999?sk=notes';



for (i = 1;i<100;i++){
    macro = "CODE:";
    macro += "SET !ERRORIGNORE YES" + jsLF;
    macro += "SET !ERRORCONTINUE YES" + jsLF;
    if (Remove_Drafts != 1){
        macro += "URL GOTO="+ Your_Note_Link + jsLF;
        macro += "TAG POS=1 TYPE=A ATTR=HREF:/note*"    + jsLF;   
        macro += "WAIT SECONDS=1"    + jsLF;   
        macro += "TAG POS=1 TYPE=I ATTR=CLASS:mrs<SP>img<SP>*"    + jsLF;
        macro += "WAIT SECONDS=1"    + jsLF;       
        macro += "TAG POS=1 TYPE=SPAN ATTR=TXT:Delete"    + jsLF;   
    }else{
        macro += "URL GOTO=" + Your_Note_Link + '_drafts' + jsLF;
        macro += "TAG POS=1 TYPE=A ATTR=TXT:Discard"    + jsLF;       
    }
    macro += "WAIT SECONDS=1"    + jsLF;   
    macro += "TAG POS=1 TYPE=INPUT:BUTTON ATTR=NAME:confirm&&VALUE:Confirm"    + jsLF;   
    iimPlay(macro);
}
iimPlay(macro);

/*                                                   End Script
*/

May 9, 2012

[iMacros Script] iMacros sidebar

'----------------------------- Start Script -----------------------------
VERSION BUILD=7401110 RECORDER=FX
TAB T=1   
TAB CLOSEALLOTHERS   
SET !ERRORIGNORE YES
SET !ERRORCONTINUE YES
URL GOTO=http://{{your_domain}}.com/wp-admin/widgets.php   
TAG POS=1 TYPE=A ATTR=ID:show-settings-link 
TAG POS=1 TYPE=A ATTR=ID:access-on 
WAIT SECONDS=2
'New page loaded     
TAG POS=14 TYPE=SPAN ATTR=TXT:Add
WAIT SECONDS=2 
'New page loaded     
TAG POS=1 TYPE=TEXTAREA FORM=ACTION:widgets.php ATTR=ID:widget-text-__i__-text CONTENT=TEXT<SP>Widget
TAG POS=1 TYPE=INPUT:RADIO FORM=ACTION:widgets.php ATTR=NAME:sidebar&&VALUE:primary-widget-area CONTENT=YES
TAG POS=1 TYPE=SELECT FORM=ACTION:widgets.php ATTR=NAME:primary-widget-area_position CONTENT=1
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:widgets.php ATTR=ID:savewidget
WAIT SECONDS=2
'New page loaded
---------------------Stop Script -----------------------

I try to do it. I have also been distributed.
The statement added that as the sidebar TEXT widget I for one will not be easy to script banner amazon or adsense.

[iMacros Script] iMacro WPMU initial setup

'------------------------------------ Start Script -----------------------------------

VERSION BUILD=7401110 RECORDER=FX
TAB T=1
CMDLINE !DATASOURCE Data_File.csv
SET !DATASOURCE_COLUMNS 3
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
SET !ERRORIGNORE YES
URL GOTO={{!COL1}}/wp-login.php
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:loginform ATTR=ID:user_login CONTENT=username
SET !ENCRYPTION NO
TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:loginform ATTR=ID:user_pass CONTENT=password
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:loginform ATTR=ID:wp-submit
TAG POS=1 TYPE=A ATTR=TXT:Posts
TAG POS=6 TYPE=INPUT:CHECKBOX FORM=NAME:NoFormName ATTR=* CONTENT=YES
TAG POS=1 TYPE=SELECT FORM=NAME:NoFormName ATTR=NAME:action CONTENT=%trash
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:posts-filter ATTR=ID:doaction
TAG POS=1 TYPE=A ATTR=TXT:Links
TAG POS=6 TYPE=INPUT:CHECKBOX FORM=NAME:NoFormName ATTR=* CONTENT=YES
TAG POS=1 TYPE=SELECT FORM=NAME:NoFormName ATTR=NAME:action CONTENT=%delete
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:posts-filter ATTR=ID:doaction
TAG POS=1 TYPE=A ATTR=TXT:Pages
TAG POS=5 TYPE=INPUT:CHECKBOX FORM=NAME:NoFormName ATTR=* CONTENT=YES
TAG POS=1 TYPE=SELECT FORM=NAME:NoFormName ATTR=NAME:action CONTENT=%trash
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:posts-filter ATTR=ID:doaction
TAG POS=1 TYPE=A ATTR=TXT:Settings
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:options.php ATTR=ID:blogname CONTENT={{!COL2}}
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:options.php ATTR=ID:blogdescription CONTENT={{!COL3}}
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:options.php ATTR=ID:submit
TAG POS=1 TYPE=A ATTR=TXT:Writing
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:options.php ATTR=ID:enable_xmlrpc CONTENT=YES
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:options.php ATTR=ID:submit
TAG POS=1 TYPE=A ATTR=TXT:Discussion
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:options.php ATTR=ID:comment_registration CONTENT=YES
TAG POS=1 TYPE=INPUT:CHECKBOX FORM=ACTION:options.php ATTR=ID:close_comments_for_old_posts CONTENT=YES
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:options.php ATTR=ID:close_comments_days_old CONTENT=1
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:options.php ATTR=ID:submit
TAG POS=1 TYPE=A ATTR=TXT:Permalinks
TAG POS=1 TYPE=INPUT:RADIO FORM=NAME:form ATTR=ID:custom_selection
TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:form ATTR=ID:permalink_structure CONTENT=/%postname%/
TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:form ATTR=ID:submit
TAG POS=1 TYPE=A ATTR=TXT:Log<SP>Out

 '------------------------------------ End Start Script -----------------------------------

This record of wpmu Imacro Imacro what this is doing.
- Jump to a hello world.
- Remove link in the blogroll at all by default.
- Delete the sample page.
- Set and Title Blog Description Blog.
-Enable XML RPC.
- Discussion to set off the comment spam is a day that people would automatically close the comment.
- Permalinks set to a Postname to otherwise show signs of aging.

Do any of the other parts may be different as they plungin theme.



File Data_File.csv
Channel 1 is the url of the blog.
Channel 2 is Title Blog.
Channel 3 is the Description Blog.