Y T Nuke  
Results 1 to 13 of 13
i finally realized the potential with macros so i got imacros for firefox. my first ...
  1. #1
    intence's Avatar
    intence is offline Regular Member
    Join Date
    Nov 2008
    Posts
    415
    Reputation
    13
    Thanks
    53
    Thanked 74 Times in 57 Posts

    Default any imacro firefox experts?

    i finally realized the potential with macros so i got imacros for firefox.

    my first set of macros are strictly used for social bookmarking. i have a list of the top 30 sites and have set up 15 so far. each site has an individual macro that fills out all info and submits it. its pretty much 99% automated unless theres a captcha.

    heres where im stuck: i need help linking these macros. i want to one run script that will launch all my macros so they can do their thing in separate tabs.

    if you can help, i will provide you with my social bookmarking macros.

    thanks!
    Last edited by intence; 11-24-2009 at 04:28 AM.

  2. #2
    hardk's Avatar
    hardk is offline Registered Member
    Join Date
    Aug 2009
    Posts
    51
    Reputation
    10
    Thanks
    26
    Thanked 48 Times in 7 Posts

    Default Re: any imacro firefox experts?

    i think you can do that in separate windows, not tabs..

  3. #3
    rufus15's Avatar
    rufus15 is offline Junior Member
    Join Date
    May 2009
    Location
    Philippines
    Posts
    123
    Reputation
    14
    Thanks
    173
    Thanked 160 Times in 21 Posts

    Default Re: any imacro firefox experts?

    I'm giving you a clue, PHP and IIMrunner

  4. #4
    Rhianni32 is offline Junior Member
    Join Date
    May 2009
    Location
    Colorado, US
    Posts
    162
    Reputation
    10
    Thanks
    18
    Thanked 32 Times in 25 Posts

    Default Re: any imacro firefox experts?

    Imacros has two great resources for help.... Their wiki (hxxp://wiki.imacros.net/Main_Page) and a forum where the devs frequently answer questions (hxxp://forum.iopus.com/)

    Now having said that I am afraid that according to the devs, there is no way for a macro to run other macros. I'm in the same boat as you and wanting to run multiple ones. Two options that I have come up with.

    1: You can enter in the following line at the beginning of your macro
    SET !ERRORIGNORE YES
    This will have it skip any errors and go to the next line. This is what I am doing and the idea is that if a site changes anything that would break the macro it just keeps going on to the next line until it hits something it can do, preferebly going to a new URL for the next site.

    2: They have said that you can create a .bat file or compiled exe I believe that will do each one. That requires the full paid version. A separate program that triggers macros will probably be in order and what rufus is getting at.

  5. #5
    mtravel13's Avatar
    mtravel13 is offline Registered Member
    Join Date
    Sep 2009
    Location
    internet
    Posts
    81
    Reputation
    10
    Thanks
    8
    Thanked 17 Times in 13 Posts

    Default Re: any imacro firefox experts?

    hey i think i can help you in this , couple of months ago i was having exactly the same problem with imacros and i fixed with a sweet trick , maybe it could help you too , pm me the details for more info

  6. #6
    Damo8884's Avatar
    Damo8884 is offline Newbie
    Join Date
    Apr 2009
    Location
    Northern Earth
    Posts
    48
    Reputation
    13
    Thanks
    15
    Thanked 12 Times in 7 Posts

    Default Re: any imacro firefox experts?

    The firefox version is quite limited, think you're gonna need the scripting edition of Imacros (it was in the downloads section on here)

    I use an excel spreadsheet with all my proxies and other variables in, then just press a button that runs a VBA script to call the imacros using the data in the spreadsheet. Any extracted data is then outputted back to the Spreadsheet.

  7. #7
    SpazzyMcSpazz's Avatar
    SpazzyMcSpazz is offline Regular Member
    Join Date
    Apr 2009
    Posts
    260
    Reputation
    16
    Thanks
    26
    Thanked 74 Times in 55 Posts

    Default Re: any imacro firefox experts?

    every macro has a unique url, it's in edit-share macro, you can use that with firefox openurl option with a new-tab argument

  8. #8
    intence's Avatar
    intence is offline Regular Member
    Join Date
    Nov 2008
    Posts
    415
    Reputation
    13
    Thanks
    53
    Thanked 74 Times in 57 Posts

    Default Re: any imacro firefox experts?

    Quote Originally Posted by SpazzyMcSpazz View Post
    every macro has a unique url, it's in edit-share macro, you can use that with firefox openurl option with a new-tab argument
    hmm i tried the share url and used javascript window.open command but it would open a window and nothing would happen.

  9. #9
    npimpfellow is offline Newbies
    Join Date
    May 2010
    Posts
    3
    Reputation
    10
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Re: any imacro firefox experts?

    Read this
    http://wiki.imacros.net/iimPlay%28%29

    In the iMacros for Firefox built-in Javascript Scripting Interface you have the option to add the relative path to the iimPlay command. Example: If your Javascript (JS) file is in the main directory, but the macros are in the "test1" subdirectory, then please use iimPlay ("test1/yourmacro"). (Note: This feature will be added to the general Scripting Interface in the near future, too.)


    So your JS code will look like:


    iimPlay ("test1/yourmacro")


    For example to extract a value from a website and then execute your code if the returned value is greater than 1:

    iret = iimPlay("test1/retrievevalue.iim");
    if ( iimGetLastExtract() > 1 )
    {iret = iimPlay("test1/yourmacro.iim");
    }



    Also to have your macro open a new tab and then switch to it and open a site:

    TAB OPEN
    TAB T=2
    URL GOTO=http://www.NewTabSite.com
    Last edited by npimpfellow; 05-12-2010 at 11:15 PM.

  10. #10
    tabish8612's Avatar
    tabish8612 is offline Regular Member
    Join Date
    Sep 2009
    Location
    Karachi, Pakistan
    Posts
    222
    Reputation
    15
    Thanks
    9
    Thanked 70 Times in 20 Posts

    Default Re: any imacro firefox experts?

    if you want pm me...My imacros script will signup in 20+ social bookmarking site.

  11. #11
    biks's Avatar
    biks is offline Jr. VIP
    Join Date
    Oct 2008
    Posts
    696
    Reputation
    43
    Thanks
    185
    Thanked 350 Times in 166 Posts

    Default Re: any imacro firefox experts?

    The easy way is to build a master iMacro and copy the ones you want in sequence. Put a couple of '>>>>>>> as dividers and stick a couple of PAUSES in there if you need to stop for captchas or whatever.

    If you have the scripting version (found here) it's not that hard to string a few together. You'll be starting with a text file and chaning it a ".bat" file. This will change it into a mini application which can be run and controlled in the application scheduler area of Windoze.

    An example of a .bat file is this:

    echo Start Go To Yahoo imacro
    "C:\Program Files\iMacros\imacros.exe" -macro GoToYahoo
    "C:\Program Files\iMacros\imacros.exe" -macro GoToGoog
    echo Done!

    GoToYahoo was an iMacro and GoToGoog was another iMacro that I created. These ran together when I launched the .bat file. This is all explained in an encryptic manner on the iOpus site.

    I managed to figured this out a month ago and got it to work once for a test. If you guys start asking me questions I'll just go "I dunno, I'm on a Mac right now"

    Anyone interested in the iMacros video tutorial site that I started to build, but kind of lost interest in temporarily? I can put the videos that I created online somewhere.
    Last edited by biks; 05-12-2010 at 11:50 PM.

  12. #12
    blackhattrial's Avatar
    blackhattrial is offline Regular Member
    Join Date
    Jul 2008
    Location
    black hat world -
    Posts
    402
    Reputation
    20
    Thanks
    166
    Thanked 130 Times in 43 Posts

    Default Re: any imacro firefox experts?

    great you are using imacros for bookmarking
    batch file is better option in my opinion
    php part i have not yet tried...


    Imacro for scripting addition is it error free? if yes then i will download it...
    I buy backlinks << Pm me.

  13. #13
    Superpower's Avatar
    Superpower is offline Regular Member
    Join Date
    Mar 2010
    Location
    Just Ahead Of Every Expert
    Posts
    302
    Reputation
    25
    Thanks
    110
    Thanked 28 Times in 27 Posts

    Default Re: any imacro firefox experts?

    I think copying all ya macros into one single macro will be easy to go and faster than each in different tab since each site as a captcha to be filled so if you are entering captcha manualy it will be easy if u have all macros in one.
    Think differently to be a winner

Natural Slow Link Building


SEO Blasts - High quality link building service

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
  SEnukeX SEO Software
Proudly Powered by Hostwinds.com Web Hosting Click Here For Exclusive BHW Discounts!

Cheap Web Hosting


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75