Support for iMacros. The iMacros software is the unique solution for automating every activity inside a web browser, for data extraction and web testing.
Forum rules
Before asking a question or reporting an issue:
1. Please review the list of
FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the
iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information:
CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
-
sailor
- Posts: 6
- Joined: Fri Mar 07, 2014 5:58 am
Post
by sailor » Sat Mar 08, 2014 3:10 pm
hello everyone! I am new to iMacros and I try to write my first scripts ,here is what I write this script to do: I just setup a new blog and I check all the post everyday,the page link is in format: web.com/999.htm ,I need iMacros to open all the posts one by one with 4 secends interval each start frome 123.htm increase progressively to 999.htm or from 999.htm to 123.htm decrease progressively ,I can only write part of the scripts below and it not work , pls show me how to make my first script runing as my wish.
Code: Select all
VERSION BUILD=9002379
TAB T=1
TAB CLOSEALLOTHERS
SET !VAR1 1
ADD !VAR1 1
SET !ERRORIGNORE YES
URL GOTO=web.com/{{!VAR1}}.htm
[/size]
Last edited by
sailor on Sun Mar 09, 2014 6:30 am, edited 1 time in total.
-
chivracq
- Posts: 9576
- Joined: Sat Apr 13, 2013 1:07 pm
- Location: Amsterdam (NL)
Post
by chivracq » Sat Mar 08, 2014 4:31 pm
Sorry, your Post is unreadable, use some normal Letter type and size...
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE').
- I don't even read the Qt if that (required) Info is not mentioned...!
- Script & URL help a lot for more "educated" Help...
-
sailor
- Posts: 6
- Joined: Fri Mar 07, 2014 5:58 am
Post
by sailor » Sun Mar 09, 2014 6:31 am
I have reset the size and can you read now?
chivracq wrote:Sorry, your Post is unreadable, use some normal Letter type and size...
-
chivracq
- Posts: 9576
- Joined: Sat Apr 13, 2013 1:07 pm
- Location: Amsterdam (NL)
Post
by chivracq » Sun Mar 09, 2014 10:54 am
sailor wrote:I have reset the size and can you read now?
chivracq wrote:Sorry, your Post is unreadable, use some normal Letter type and size...
Mwoaw, now it's nearly too small, but that's better...
And always mention your Configuration with all Versions when asking a Question on the Forum, from "VERSION BUILD=9002379" I can deduct you are on IE or on the iMacros Browser, but that's all...
Answer to your Question will be stg like:
And you loop it 900 times...
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE').
- I don't even read the Qt if that (required) Info is not mentioned...!
- Script & URL help a lot for more "educated" Help...
-
sailor
- Posts: 6
- Joined: Fri Mar 07, 2014 5:58 am
Post
by sailor » Mon Mar 10, 2014 8:36 am
Thanks a lot,your script makes 123.htm to 999.htm, how to make it work from 999.htm to 123.htm pls ?
chivracq wrote:sailor wrote:I have reset the size and can you read now?
chivracq wrote:Sorry, your Post is unreadable, use some normal Letter type and size...
Mwoaw, now it's nearly too small, but that's better...
And always mention your Configuration with all Versions when asking a Question on the Forum, from "VERSION BUILD=9002379" I can deduct you are on IE or on the iMacros Browser, but that's all...
Answer to your Question will be stg like:
And you loop it 900 times...
-
chivracq
- Posts: 9576
- Joined: Sat Apr 13, 2013 1:07 pm
- Location: Amsterdam (NL)
Post
by chivracq » Mon Mar 10, 2014 9:59 am
sailor wrote:Thanks a lot,your script makes 123.htm to 999.htm, how to make it work from 999.htm to 123.htm pls ?
Boah, that's not difficult to find out by yourself...!
If
loops from 123 to 999, then
Code: Select all
SET !VAR1 1000
ADD !VAR1 -{{!LOOP}}
will loop from 999 to 123...
- (F)CI(M) = (Full) Config Info (Missing): iMacros + Browser + OS (+ all 3 Versions + 'Free'/'PE').
- I don't even read the Qt if that (required) Info is not mentioned...!
- Script & URL help a lot for more "educated" Help...