Search found 9 matches

by jackmacokc
Wed Jun 18, 2008 12:47 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Is this possible?
Replies: 4
Views: 3751

Re: Is this possible?

You would need to write a script in order to iterate through all the links and emails like you're wanting to do. And the data not being in tables really doesn't impact anything. You need to think of a way to iterate through those links, either reading the list of links into an array and iterating th...
by jackmacokc
Wed Jun 18, 2008 12:40 pm
Forum: General Support & Discussions
Topic: I need to error trap if form isnt avail?
Replies: 5
Views: 3341

Re: I need to error trap if form isnt avail?

im a programmer can you point me in the right way for documentation on this? i have vs2005 already so i just need to know api docs if you know where i can read that Here's a basic reference: http://wiki.imacros.net/CSharp You basically add the reference to the dll's to your project and then simply ...
by jackmacokc
Tue Jun 17, 2008 8:42 pm
Forum: Command Line and Scripting Interface
Topic: C# iMacros coders
Replies: 0
Views: 1772

C# iMacros coders

Are there any other developers using C#/VS2005 and iMacros out there? Thought it might be good to share tips and tricks or any otherwise useful information with each other.
by jackmacokc
Tue Jun 17, 2008 8:38 pm
Forum: General Support & Discussions
Topic: Specifying browser
Replies: 3
Views: 2519

Re: Specifying browser

I do it in C# like this: Status status = imApp.iimInit("-ie", false, "", "", "", 5); if (status != Status.sOk) throw new Exception("Initialization Failure"); You could also assign it to a variable, which is what I actually do.
by jackmacokc
Tue Jun 17, 2008 8:35 pm
Forum: General Support & Discussions
Topic: Automation stopping on URL
Replies: 2
Views: 2710

Re: Automation stopping on URL

you might try moving the URL= portion of code to the top of your code.
by jackmacokc
Tue Jun 17, 2008 8:33 pm
Forum: General Support & Discussions
Topic: Logical test
Replies: 4
Views: 3007

Re: Logical test

Generally if you add a

Code: Select all

ONWEBPAGEDIALOG={CLOSE}


it will work whether is has a popup or not. In order to add logic you'll need to use a script.
by jackmacokc
Tue Jun 17, 2008 8:32 pm
Forum: General Support & Discussions
Topic: Web scraping for contact info, especially email addresses
Replies: 1
Views: 1781

Re: Web scraping for contact info, especially email addresses

I'm considering buying your software. Before I do, I need to see a demo of how web scraping occurs for collecting email addresses. I need to collect emails from all over the world that relate to specific and demonstrated affinity groups. Do you have this demo? I am not a techie and wonder if your s...
by jackmacokc
Tue Jun 17, 2008 8:30 pm
Forum: General Support & Discussions
Topic: I need to error trap if form isnt avail?
Replies: 5
Views: 3341

Re: I need to error trap if form isnt avail?

ok i wrote a simple script looks like this VERSION BUILD=6050529 RECORDER=FX TAB T=1 TAB CLOSEALLOTHERS URL GOTO=website TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:action ATTR=VALUE:value REFRESH Ok this just submits a form. Well sometimes when you log into this site. Sometimes there's a form availabl...