I Need Help With This...

Discussions and Tech Support related to website data extraction, screen scraping and data mining using iMacros.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

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
Post Reply
ezncome
Posts: 10
Joined: Sat Aug 30, 2008 8:56 pm

I Need Help With This...

Post by ezncome » Mon Sep 01, 2008 7:38 am

Anybody here can help me to solve loop value which is more than 5 digits?
IIM accepts loop value which is only 5 digits. I need an additonal code in
order to run my loop which number is greater than 5 digits.

for example:

http://www.mywebsite.com/07014030

VERSION BUILD=4201203
TAB T=1
TAB CLOSEALLOTHERS
SET !EXTRACT_TEST_POPUP NO
SET !LOOP 07014030
URL GOTO=http://www.mywebsite.com/{{!LOOP}}
SIZE X=801 Y=602
EXTRACT POS=1 TYPE=TXT ATTR=<P<SP>class=middle>*
SAVEAS TYPE=EXTRACT FOLDER=* FILE=myextract.csv

This is my problem:
SET !LOOP 07014030

Please help... and Thanks!
my2testing
Posts: 21
Joined: Tue Oct 30, 2007 6:57 am
Contact:

Re: I Need Help With This...

Post by my2testing » Tue Sep 09, 2008 8:12 am

Code: Select all

VERSION BUILD=4201203
TAB T=1
TAB CLOSEALLOTHERS
SET !EXTRACT_TEST_POPUP NO
URL GOTO=http://www.mywebsite.com/07014030
SIZE X=801 Y=602
EXTRACT POS=1 TYPE=TXT ATTR=<P<SP>class=middle>*
SAVEAS TYPE=EXTRACT FOLDER=* FILE=myextract.csv
Post Reply