Search found 118 matches

by siniy
Fri Dec 10, 2010 11:32 am
Forum: iMacros for Firefox
Topic: Have iMacros pickup where left off when starting script?
Replies: 9
Views: 5571

Re: Have iMacros pickup where left off when starting script?

'File which contains last loop value. Initial value "0" SET !ERRORIGNORE YES SET !DATASOURCE c:\LastLoop.csv SET !DATASOURCE_COLUMNS 1 SET !DATASOURCE_LINE 1 'If file does not exists, it will be created with initial value 0 SET !VAR1 0 'If file exists read and increment value. 'If its our...
by siniy
Fri Dec 10, 2010 1:59 am
Forum: iMacros for Firefox
Topic: Copy text from webpage and pas it
Replies: 2
Views: 2226

Re: Copy text from webpage and pas it

Code: Select all

SET !EXTRACT_TEST_POPUP NO
VERSION BUILD=7031111 RECORDER=FX
TAB T=1
URL GOTO=http://www.savoir-inutile.com/cruw28
TAG POS=1 TYPE=H2 ATTR=ID:phrase&&TXT:* EXTRACT=TXT
SAVEAS TYPE=EXTRACT FOLDER=c:\ FILE=savoir.txt
Will be saved to c:\savoir.txt
by siniy
Fri Dec 10, 2010 1:56 am
Forum: iMacros for Firefox
Topic: Issues caused by iMacros remaining after uninstallation
Replies: 3
Views: 1940

Re: Issues caused by iMacros remaining after uninstallation

Intall TabMix extension its pretty useful.
by siniy
Fri Dec 10, 2010 1:55 am
Forum: iMacros for Firefox
Topic: Reading from text file __undefined__
Replies: 6
Views: 14092

Re: Reading from text file __undefined__

I don't know where you saw such example of datasource usage. This is how it supposed to work. VERSION BUILD=7031111 SET !DATASOURCE /home/paulie/iMacros/Datasources/Profile.txt SET !DATASOURCE_COLUMNS 1 SET !LOOP 2 SET !DATASOURCE_LINE {{!LOOP}} URL GOTO=http://www.somepage.com TAG POS=1 TYPE=INPUT:...
by siniy
Fri Dec 10, 2010 1:50 am
Forum: iMacros for Firefox
Topic: Tag Select works but select wrong entry
Replies: 3
Views: 1965

Re: Tag Select works but select wrong entry

If you have exact matching values in your column and drop down list, why are you using wildcards?
Replace

Code: Select all

TAG POS=1 TYPE=SELECT FORM=NAME:frmForm ATTR=ID:gbr_gbg_id CONTENT=$*{{!COL1}}*
with

Code: Select all

TAG POS=1 TYPE=SELECT FORM=NAME:frmForm ATTR=ID:gbr_gbg_id CONTENT=${{!COL1}}
by siniy
Fri Dec 10, 2010 1:45 am
Forum: iMacros for Firefox
Topic: Click every button on a webpage using wildcards?
Replies: 6
Views: 22446

Re: Click every button on a webpage using wildcards?

Code: Select all

SET !LOOP 1
TAG POS={{!LOOP}} TYPE=DIV ATTR=ID:helpful*
Play this macros in 100 loops
by siniy
Wed Dec 08, 2010 1:37 pm
Forum: iMacros for Firefox
Topic: Have iMacros pickup where left off when starting script?
Replies: 9
Views: 5571

Re: Have iMacros pickup where left off when starting script?

I know its been a while. But maybe someone find this helpful. This code will allow you to remember last loop value and continue from last position. You don't need javascript or scripting edition. 'File which contains last loop value. Initial value "0" SET !ERRORIGNORE YES SET !DATASOURCE c...
by siniy
Mon Dec 06, 2010 10:58 am
Forum: iMacros for Firefox
Topic: Inspect Element via Macros
Replies: 1
Views: 2717

Re: Inspect Element via Macros

You can change html of the page. Not with Firebug but with javascript. You will need a bit of knowledge with JS. When you done with your javascript code that changes page html, navigate with imacros like this: URL GOTO=javascript:function%20f1(param1){alert(param1)};f1("Test") Its better t...
by siniy
Wed Dec 01, 2010 3:02 pm
Forum: iMacros for Firefox
Topic: removing quotes in excel column
Replies: 2
Views: 2030

Re: removing quotes in excel column

I had the same issue. Saving file with UTF-8 encoding helped.
by siniy
Wed Dec 01, 2010 3:00 pm
Forum: iMacros for Firefox
Topic: ONDOWNLOAD problem with csv & xls file type.
Replies: 18
Views: 44769

Re: ONDOWNLOAD problem with csv & xls file type.

When I had issues with ONDOWNLOAD command, I set up firefox so its download file itself without any dialogs. Check downloads settings in firefox Options, General tab.
by siniy
Sun Nov 14, 2010 1:26 pm
Forum: iMacros for Firefox
Topic: How to use ""Frame ID"?
Replies: 2
Views: 1707

Re: How to use ""Frame ID"?

So I've checked imacros source code, turns out you can can access frames by name like this: FRAME NAME=ifinbox "ifinbox" frame name at my site. It is useful at sites like hotmail. Sometimes frame with ads appears there and messes with frame numbers. People from iopus, you should update htt...
by siniy
Sun Nov 14, 2010 1:20 pm
Forum: iMacros for Firefox
Topic: Frame text extract script
Replies: 2
Views: 1849

Re: Frame text extract script

You don't need frame here.

Code: Select all

VERSION BUILD=7031111 RECORDER=FX
TAB T=1
URL GOTO=http://en.wikipedia.org/wiki/Ohm
TAG POS=1 TYPE=DIV ATTR=ID:content EXTRACT=TXT
by siniy
Wed Nov 10, 2010 9:31 am
Forum: iMacros for Firefox
Topic: How to use ""Frame ID"?
Replies: 2
Views: 1707

How to use ""Frame ID"?

This is from changelog for Firefox addon, version 6.5.0.0 - "Use frame ID to specify frame in addition to number (see FRAME command for details)" There is no explanation how to use frame id on this page http://wiki.imacros.net/FRAME I want to use frame id because the frame I need, constant...