Search found 3713 matches

by Tom, Tech Support
Thu Jul 15, 2010 2:19 pm
Forum: iMacros for Firefox
Topic: sheduled task wont work
Replies: 4
Views: 2744

Re: sheduled task wont work

Hi Daz,

I just stumbled upon these older posts that cover this same topic:

http://forum.imacros.net/viewtopic.php?f=11&t=9559

http://forum.imacros.net/viewtopic.php?f=11&t=2978
by Tom, Tech Support
Thu Jul 15, 2010 12:25 pm
Forum: iMacros for Firefox
Topic: Check the URL of a image
Replies: 5
Views: 3781

Re: Check the URL of a image

You would use a TAG command with the EXTRACT=HREF parameter to extract the URL, then call iimGetLastExtract() to retrieve the extracted values in your script and compare the values. For more information: http://wiki.imacros.net/TAG#The_EXTRACT_Parameter http://wiki.imacros.net/Data_Extraction#Extrac...
by Tom, Tech Support
Thu Jul 15, 2010 12:17 pm
Forum: General Support & Discussions
Topic: Imacro Scripts for DNN Controls
Replies: 3
Views: 2285

Re: Imacro Scripts for DNN Controls

In general, you can use wildcards for IDs of controls that change dynamically. I.e. if the id can be anything like txtbox123123132 and the digits are different each time, then you can use txtbox* in your TAG command:

http://wiki.imacros.net/Form_Filling#Fi ... G_Commands
by Tom, Tech Support
Thu Jul 15, 2010 12:13 pm
Forum: General Support & Discussions
Topic: Error accessing java webpage: java.lang.class NotFoundExcept
Replies: 5
Views: 3694

Re: Error accessing java webpage: java.lang.class NotFoundEx

I seem to recall another user having a similar issue and once they upgraded their Java the problem went away. I really can't offer much more help without being able to reproduce the issue myself.
by Tom, Tech Support
Thu Jul 15, 2010 12:02 pm
Forum: General Support & Discussions
Topic: Running iMacros "Browser"
Replies: 5
Views: 3088

Re: Running iMacros "Browser"

Search your Windows Start menu items for a program called iMacros Browser, or look for a program group called iMacros somewhere in your Start menu. If you don't find it there, look for C:\Program Files\iMacros\iMacros.exe on your hard drive.
by Tom, Tech Support
Thu Jul 15, 2010 11:50 am
Forum: iMacros for Firefox
Topic: Archiving?
Replies: 3
Views: 2469

Re: Archiving?

Yes, that method will save everything on the web page just as if you had you used your browser's "Save Webpage, complete" functionality.
by Tom, Tech Support
Thu Jul 15, 2010 11:41 am
Forum: Data Extraction and Web Screen Scraping
Topic: Yellow Pages macro Difficulty
Replies: 36
Views: 55503

Re: Yellow Pages macro Difficulty

Maxdoldan, Sorry I didn't post QryYP.iim, it's just a one-line URL GOTO command that navigates to the desired search page: QryYP.iim: URL GOTO=http://www.yellowpages.com/miami-fl/web-hosting?g=Miami%2C+FL&page=1&q=web+hosting !TIMEOUT_TAG is valid only in version 6.80 and later. So you are r...
by Tom, Tech Support
Thu Jul 15, 2010 11:34 am
Forum: iMacros for Firefox
Topic: Cannot have more than one Javascript based macro per browser
Replies: 3
Views: 3414

Re: Cannot have more than one Javascript based macro per bro

OK, thanks for the clarification. Running the same macro (.iim file) in multiple instances works fine, but running the same .js as you described definitely causes one of them to stop executing. I believe because of the way Firefox is implemented, our recommendation is to use separate instances (sepa...
by Tom, Tech Support
Thu Jul 15, 2010 11:00 am
Forum: iMacros for Firefox
Topic: javascript function
Replies: 7
Views: 5913

Re: javascript function

Hi Mike, Sorry for the misunderstanding. I looked into this particular example you posted: var userEnvironment = Components.classes["@mozilla.org/process/environment;1"].getService(Components.interfaces.nsIEnvironment); var userName = userEnvironment.get("USER"); alert(USER) Firs...
by Tom, Tech Support
Thu Jul 15, 2010 10:25 am
Forum: iMacros for Firefox
Topic: Javascript iMacros Script Absolutley Will Not Stop
Replies: 9
Views: 8774

Re: Javascript iMacros Script Absolutley Will Not Stop

Hmmm... I did run the little test macro you last posted and I was able to stop its execution by pressing the Stop button with no problem each time. I am also runnning Firefox 3.6.6 with iMacros 6.7.0.1. Have you considered explicitly checking the return value of iimPlay for -102 (User pressed Stop b...
by Tom, Tech Support
Thu Jul 15, 2010 10:05 am
Forum: Data Extraction and Web Screen Scraping
Topic: how to locate hidden tag without change its value
Replies: 7
Views: 3867

Re: how to locate hidden tag without change its value

Well I'm still a little bit confused. Without actually being able to see the page, it's hard to get an idea of what's going on. Can you provide me with a URL? Have you considered using a different anchor to perform your relative positioning? Perhaps try tagging an element after the element you are l...
by Tom, Tech Support
Thu Jul 15, 2010 9:59 am
Forum: General Support & Discussions
Topic: Imacros browser is being shut down
Replies: 5
Views: 3579

Re: Imacros browser is being shut down

Did you see in that post where one person found that the problem was related to having FILTER TYPE=IMAGES STATUS=OFF in the macro? That might not be what is causing your problem, but is it possible for you to look at the macro to see if this exists? I wasn't sure what you meant when you said "I...
by Tom, Tech Support
Thu Jul 15, 2010 9:47 am
Forum: Command Line and Scripting Interface
Topic: Please Help - how do I handle redirects?
Replies: 8
Views: 6815

Re: Please Help - how do I handle redirects?

I see, sorry for the misunderstanding. How about adding a TAG command for an element on the redirected page so that iMacros waits for this element first before the TAG command to extract the HTML? Something like this: ... TAG POS=1 TYPE=INPUT:SUBMIT FORM=NAME:LOGIN ATTR=NAME:submit TAG POS=1 TYPE=ST...
by Tom, Tech Support
Thu Jul 15, 2010 9:19 am
Forum: iMacros for Firefox
Topic: How to click a dialog before the page finished.
Replies: 13
Views: 11293

Re: How to click a dialog before the page finished.

Hi bmx,

Try putting the ONDIALOG command before the TAG command that initiates the pop-up.
by Tom, Tech Support
Thu Jul 15, 2010 9:03 am
Forum: General Support & Discussions
Topic: Find link and click next link
Replies: 1
Views: 3446

Re: Find link and click next link

Hi henkee, First, set your Click Mode option in iMacros to "Use complete HTML tag" and then record a click on the link. Take a look at the resultant TAG command and then fine tune it using wildcards for the random/changing attributes. http://wiki.imacros.net/Form_Filling#Fine_Tune_TAG_Comm...