Search found 627 matches
- Wed Dec 23, 2009 3:20 pm
- Forum: iMacros for Firefox
- Topic: How do I write a macro for if logged in?
- Replies: 8
- Views: 3625
Re: How do I write a macro for if logged in?
depends on which plugin your using, i believe in iMacros Browser you can override the setting with SET !TIMEOUT_TAG 5 failing that the tag timout is 1/10th of the main timeout, so just drop your maintime out really low, do the tag command, then set your timeout high again e.g. SET !ERRORIGNORE YES S...
- Mon Dec 21, 2009 9:36 am
- Forum: Data Extraction and Web Screen Scraping
- Topic: Extract Data From A Specific Row/Column In Table
- Replies: 2
- Views: 1688
Re: Extract Data From A Specific Row/Column In Table
User relative tags, rather than absolute. select the first table cell, using something like TAG POS=1 TYPE=TD ATTR=TXT:* then select the cells you want relative to this cell. You do this by using R1 instead of just 1 in the POS tag. So TAG POS=R17 TYPE=B ATTR=TXT:* EXTRACT=TXT will select the 17th p...
- Mon Dec 21, 2009 9:30 am
- Forum: General Support & Discussions
- Topic: Checking random checkboxes
- Replies: 2
- Views: 1194
Re: Checking random checkboxes
try TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:post_form ATTR=ID:box2014* CONTENT=YES TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:post_form ATTR=ID:box5000* CONTENT=YES TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:post_form ATTR=ID:box1255* CONTENT=YES TAG POS=1 TYPE=INPUT:CHECKBOX FORM=NAME:post_form ATTR=ID:b...
- Fri Dec 18, 2009 3:23 pm
- Forum: General Support & Discussions
- Topic: Select value in drop down list
- Replies: 1
- Views: 2504
Re: Select value in drop down list
nevermind, finally found the answer on the wiki
To select an entry by its name add a $ before the name so that the command looks like
Code: Select all
TAG POS=1 TYPE=SELECT FORM=NAME:form1 ATTR=NAME:select1 CONTENT=$Apple
- Fri Dec 18, 2009 2:43 pm
- Forum: General Support & Discussions
- Topic: Select value in drop down list
- Replies: 1
- Views: 2504
Select value in drop down list
Im trying to code a macro part of which is selecting a value from a dropdown list, the HTML for the DD list is as follows: <select id="role" name="roleList"> <option selected="selected" value="-1">Select role</option> <option value="0">Role 1</option> <option value="1">Role 2</option> <option value=...
- Fri Dec 18, 2009 9:59 am
- Forum: Command Line and Scripting Interface
- Topic: Selecting Random Post
- Replies: 1
- Views: 898
Re: Selecting Random Post
If you want a truly random post, you'll need to write a proper script, however you can try something like this TAG POS=1 TYPE=TH ATTR=TXT:Thread TAG POS=R6 TYPE=A ATTR=CLASS:cCatTopic&&HREF:http://www.tomshardware.co.uk/forum/* This will select the 6th topic on the page (this isnt the case, topics w...
- Fri Dec 18, 2009 9:45 am
- Forum: General Support & Discussions
- Topic: iMacro script syntax highlighting in Notepad++ editor
- Replies: 52
- Views: 306474
Re: iMacro script syntax highlighting in Notepad++ editor
Thats the iMacros for Firefox plugin. It has a built in macro editor which performs the syntax colorising, without needing any other applications. To create an xml file, create a new text document, and rename it to match the required file name (e.g. 'New Text Document.txt' to 'userDefineLang.xml') A...
- Thu Dec 17, 2009 12:42 pm
- Forum: Command Line and Scripting Interface
- Topic: IE8 vs iMacros Browser
- Replies: 2
- Views: 1056
Re: IE8 vs iMacros Browser
unfortunately its an internal application on our network, which you cant access externally, i'll see if i can find an external equivelant. If it makes a difference its a SAGE CRM system, and i can probably provide the HTML from the screens if it will help.
- Wed Dec 16, 2009 2:33 pm
- Forum: General Support & Discussions
- Topic: Change color of Tag Highlight
- Replies: 1
- Views: 700
Change color of Tag Highlight
probably a stupid question, but is it possible to change the color that iMacros uses when selecting elements on the screen. The blue is uses is remarkably similar to the blue in our theme, and can make it quite hard to see in certain instances. I doubt it is possible, but if it can be done in the IE...
- Tue Dec 15, 2009 5:10 pm
- Forum: Command Line and Scripting Interface
- Topic: IE8 vs iMacros Browser
- Replies: 2
- Views: 1056
IE8 vs iMacros Browser
I'm having some issues with compatability between the iMacros browser and IE8. In one of our web applications, i want to select the cell containing 'Address' In IE8 the following command works TAG POS=1 TYPE=TD ATTR=TXT:Address but in iMacros browser i have to have TAG POS=1 TYPE=TD ATTR=TXT:Address...
- Mon Nov 30, 2009 11:38 am
- Forum: General Support & Discussions
- Topic: Problems using the Eclipse Plugin
- Replies: 3
- Views: 1019
Re: Problems using the Eclipse Plugin
The error is thrown initialising app. Ole32.CoInitialize(); DispatchPtr app = new DispatchPtr("imacros"); I currently have the Firefox plugin installed, but not the scripting version, now you mention it, it does seem sensible that this wont work without it installed. If possible can you confirm this...
- Thu Nov 26, 2009 11:14 am
- Forum: General Support & Discussions
- Topic: Problems using the Eclipse Plugin
- Replies: 3
- Views: 1019
Problems using the Eclipse Plugin
Tried to post this on the thread for the Eclipse plugin, but it wouldnt let me. http://forum.imacros.net/viewtopic.php?f=6&t=2703 I've followed the instructions within the thread, but i get the following error when i try to execute the code. org.jawin.COMException: 800401f3: Invalid class string at ...