Search found 627 matches

by MattBell7
Mon Apr 04, 2011 1:31 pm
Forum: General Support & Discussions
Topic: Datasource problem
Replies: 8
Views: 3656

Re: Datasource problem

screenshot of the txt file is a bit small to make much sense of, but have you tried inserting values directly into the fields to see if the problem lies with the element selection, rather than the datasource loading.
by MattBell7
Mon Jun 14, 2010 10:46 am
Forum: General Support & Discussions
Topic: Check for button's presence and Escaping *
Replies: 2
Views: 2028

Check for button's presence and Escaping *

2 questions for the price of one, bargain!!! 1. Is there anyway to check for a buttons presence on a page without actually clicking on it? (this applies to links as well) 2. Is there anyway to check for a * on a page, rather than it always acting as a wildcard. Thanks. Code Samples: 1. 'check for ca...
by MattBell7
Fri Jun 04, 2010 2:27 pm
Forum: Command Line and Scripting Interface
Topic: Simple Help - New to Imacros and any kind of programming
Replies: 3
Views: 3217

Re: Simple Help - New to Imacros and any kind of programming

scrub that, just put

Code: Select all

SET !ERRORIGNORE YES
right before the line where it clicks the second link. then

Code: Select all

SET !ERRORIGNORE NO
after
by MattBell7
Fri Jun 04, 2010 2:22 pm
Forum: Command Line and Scripting Interface
Topic: js test extracted date is bigger than specified date[solved]
Replies: 4
Views: 2999

Re: js test extracted date is bigger than specified date

Is it java or javascript?

If its Java then its fairly simple to use Date/Timestamp objects. If so let me know and i'll knock up some dummy code

Javascript should be doable as well, but i dont know the language as well, so cant help out as much.
by MattBell7
Fri Jun 04, 2010 1:02 pm
Forum: General Support & Discussions
Topic: Imacros scripts are not able to run in FF
Replies: 2
Views: 1818

Re: Imacros scripts are not able to run in FF

Recorder=FF means the script was recorded in Firefox, from my own experience using players in both, they expect different forms of encoding, so you'd have to create the script in 1, copy paste it and change the encoding format for the copy to be able to understand it in the other browser
by MattBell7
Thu May 20, 2010 3:54 pm
Forum: Command Line and Scripting Interface
Topic: How to use an iMacro variable in Javascript ?
Replies: 4
Views: 5064

Re: How to use an iMacro variable in Javascript ?

Daniel, iOpus wrote:Thanks MattBell7! I think one could also simply set !EXTRACT variable to {{!COL1}} (SET !EXTRACT {{!COL1}}) and then use iimGetLastExtract().

Best regards,

pffff, why do things the simple way when you could make life harder for yourself... :P
by MattBell7
Thu May 20, 2010 3:50 pm
Forum: General Support & Discussions
Topic: Force Macro to open in Internet Explorer
Replies: 5
Views: 2507

Re: Force Macro to open in Internet Explorer

he means if you use the scripting interface you can do this

Code: Select all

iimInit("ie")
to force the macro to run in IE rather than iMacros browser
by MattBell7
Fri May 14, 2010 12:41 pm
Forum: iMacros for Firefox
Topic: How to use imacros to manage research
Replies: 4
Views: 2566

Re: How to use imacros to manage research

or if your more lazy and dont want to loop TAG POS=1 TYPE=A ATTR=TXT:więcej TAG POS=R1 TYPE=A ATTR=TXT:więcej 'repeat above line for each extra link but personally i'd loop like slamsal said. see http://wiki.imacros.net/Loop_after_Query_or_Login for a great example of exactly what your asking for.
by MattBell7
Fri May 14, 2010 12:36 pm
Forum: iMacros for Firefox
Topic: Automatic copy-ing data
Replies: 7
Views: 3339

Re: Automatic copy-ing data

so you always want to tick the 2 boxes after Ping Host (LOSS)-loss (as an example) and the 2 after (RTT)-max if the id's are changing, the way i would do it would be TAG POS=1 TYPE=TD ATTR=TXT:*(LOSS)-loss* TAG POS=R1 TYPE=INPUT:CHECKBOX FORM=NAME:meritve ATTR=NAME:display_* CONTENT=YES TAG POS=R1 T...
by MattBell7
Fri May 14, 2010 12:28 pm
Forum: iMacros for Firefox
Topic: LOOP
Replies: 21
Views: 35696

Re: LOOP

Code: Select all

for (var i=25; i<=40; i++){
   iimSet('i', i); //increment {{i}} each time 25 to 40
   iimPlay('loopSection');
}
tada
by MattBell7
Fri May 14, 2010 12:22 pm
Forum: iMacros for Firefox
Topic: Craigslist macro
Replies: 1
Views: 1444

Re: Craigslist macro

Code: Select all

PAUSE
you then click Continue on the iMacros sidebar to continue the script
by MattBell7
Fri May 14, 2010 12:19 pm
Forum: iMacros for Firefox
Topic: Generate a sequence
Replies: 4
Views: 2268

Re: Generate a sequence

use the scripting interface, that way you can use normal script to loop through the numbers and pass them through to iMacros.
by MattBell7
Fri May 14, 2010 12:17 pm
Forum: General Support & Discussions
Topic: Datasource CSV data extraction error
Replies: 1
Views: 2600

Re: Datasource CSV data extraction error

replace

Code: Select all

'SET !DATASOURCE_LINE 1
with

Code: Select all

SET !DATASOURCE_LINE {{!LOOP}}
by MattBell7
Fri May 14, 2010 12:13 pm
Forum: General Support & Discussions
Topic: From CSV file form filling
Replies: 1
Views: 1716

Re: From CSV file form filling

Code: Select all

WAIT XXX
where XXX is the number of seconds to wait
by MattBell7
Thu May 13, 2010 9:33 am
Forum: Command Line and Scripting Interface
Topic: How to use an iMacro variable in Javascript ?
Replies: 4
Views: 5064

Re: How to use an iMacro variable in Javascript ?

try putting Col1 into a field on the page somewhere, then extract the content of that field, and use iimGetLastExtract to return it, i've done this before when i've wanted to extract the current timestamp from the script.