Search found 96 matches

by slamsal
Mon May 23, 2011 10:22 pm
Forum: iMacros Consultants
Topic: Firefox iMacros Code Needed Quickly
Replies: 7
Views: 12582

Re: Firefox iMacros Code Needed Quickly

I have been focusing on programming part rather than web automation part for last couple years. Recently, I have been to have more free time and will be able to contribute more to forum. Please send me an email if you need any help. Here are the projects I am really interested on doing if anyone wan...
by slamsal
Thu Aug 05, 2010 4:53 pm
Forum: iMacros for Firefox
Topic: Firefox Issue
Replies: 1
Views: 1291

Firefox Issue

Imacros script opens up firefox and Goes to this page;
about:blank?authorizeAll=false&pipeUuid=ba3598f8_0850_4df4_bac7_a2736cd7f927&creatorUuid=4a72e3fd_5fe8_4341_bcd0_c4e1267bee87

and does nothing.

I have no idea why it goes to that page.

Any solution on this.
by slamsal
Tue Aug 03, 2010 8:20 pm
Forum: iMacros for Firefox
Topic: iMacros 6.6.5.0 not compatible with FF 3.6.4
Replies: 17
Views: 18944

Re: [Solved] iMacros 6.6.5.0 not compatible with FF 3.6.4

2. If you do script Firefox via the iMacros Scripting Interface iimInit ("-fx") : => Downgrade Firefox to V3.6.3 or older and use iMacros for Firefox V6.7.0.0 or older. I tried that!! But still having an issue. Imacros script opens up firefox and Goes to this page; about:blank?authorizeAll...
by slamsal
Mon Jul 19, 2010 8:08 pm
Forum: iMacros for Firefox
Topic: SET !ERRORIGNORE YES
Replies: 2
Views: 2301

Re: SET !ERRORIGNORE YES

Please change the timeout limits.

Imacros Tray - > Options -> General -> Reduce the timeout limits to 10 seconds and see the difference.
by slamsal
Wed May 26, 2010 6:19 pm
Forum: iMacros Consultants
Topic: looking for
Replies: 2
Views: 4149

Re: looking for

I just talked to you over the phone but I just looked at my scheledule and found out that 8 AM CST would not work for me. Does anytime between: 4:30 PM - 10 PM today work? 6:00 AM - 7:30 AM tomorrow work? otherwise, feel free to send me an email with your requirements, we can communicate through ema...
by slamsal
Wed May 26, 2010 5:56 pm
Forum: iMacros Consultants
Topic: looking for
Replies: 2
Views: 4149

Re: looking for

Contact me at 218-310-2403. We can discuss more about this project.
by slamsal
Tue May 25, 2010 1:26 pm
Forum: General Support & Discussions
Topic: Mobile Imacros - iphone, google android phone
Replies: 3
Views: 8988

Mobile Imacros - iphone, google android phone

Can imacros run in mobile phone like iphone, google andriod phone?
by slamsal
Fri May 14, 2010 7:37 pm
Forum: iMacros for Firefox
Topic: Can i capture/replay in flash
Replies: 1
Views: 1361

Re: Can i capture/replay in flash

It can be done via imacros.

Please see the link below:

http://wiki.imacros.net/Image_Recognition

And the video link in the page will help a lot: http://forum.imacros.net/_uploads/ImageRecognition.htm
by slamsal
Fri May 14, 2010 7:20 pm
Forum: General Support & Discussions
Topic: iMacros shouldnt stop if a site doesnt exist
Replies: 6
Views: 5018

Re: iMacros shouldnt stop if a site doesnt exist

use following code

Code: Select all

SET !ERRORIGNORE YES
But if you are using vbscript or other scripting;
iret = iim1.iimPlay("testmacro")
if iret < 0 then
//whatever you want to do
end if
by slamsal
Fri May 14, 2010 6:58 pm
Forum: iMacros Consultants
Topic: Scrape value from Cookie
Replies: 1
Views: 3722

Re: Scrape value from Cookie

Is there a session ID in the url? You can extract the url and use spilt function to spilt it. Or you can extraction the source code and spilt it that way as well.
by slamsal
Wed May 12, 2010 9:03 pm
Forum: iMacros for Firefox
Topic: How to use imacros to manage research
Replies: 4
Views: 2559

Re: How to use imacros to manage research

Code: Select all

SET !LOOP 2
TAG POS={{!LOOP}} TYPE=A ATTR=TXT:więcej
And play Loop.
by slamsal
Wed May 12, 2010 8:49 pm
Forum: General Support & Discussions
Topic: Do a pause in a macro to write
Replies: 2
Views: 1962

Re: Do a pause in a macro to write

Use code PAUSE when needed and then press continue when you want to continue.

Code: Select all

PAUSE
by slamsal
Fri Apr 23, 2010 5:07 pm
Forum: iMacros for Firefox
Topic: Automating a Deletion Based on Variable? I think...
Replies: 3
Views: 2151

Re: Automating a Deletion Based on Variable? I think...

Code: Select all

VERSION BUILD=6600217 RECORDER=FX
TAB T=1
URL GOTO=http://www.tutoring911.com/states.html
TAG POS=1 TYPE=TD ATTR=TXT:Alabama
TAG POS=R1 TYPE=A ATTR=TXT:delete
Keyword is: R1
by slamsal
Fri Apr 23, 2010 6:18 am
Forum: Data Extraction and Web Screen Scraping
Topic: ASP Login form
Replies: 4
Views: 4416

Re: ASP Login form

The above solution works in Free version of imacros. If you already have scripting version of Imacros, its piece of cake.
by slamsal
Fri Apr 23, 2010 6:16 am
Forum: Data Extraction and Web Screen Scraping
Topic: ASP Login form
Replies: 4
Views: 4416

Re: ASP Login form

1) Run the login macros 2) Intentionally create a error and ask macro to run a error macro which is your next macro 3) In the next macro, Intentionally create a error and ask macro to run the same macro that you are running....which means you are looping. 4) Make Sense? Keyword is: SET !ERRORMACRO m...