Search found 60 matches

by PsychedeliX
Sat Mar 20, 2010 9:42 pm
Forum: iMacros for Firefox
Topic: Windows links to activate imacros
Replies: 36
Views: 17746

Re: Windows links to activate imacros

u could make a new entry in the about:config ok, i've checked this now by myself open about:config search for browser.link.open_external - when this isn't found just right klick and make a new entry New - Integer - browser.link.open_external - set this to 1= all links from any external program opens...
by PsychedeliX
Sat Mar 20, 2010 9:38 pm
Forum: iMacros for Firefox
Topic: need help here! Please!
Replies: 12
Views: 5503

Re: need help here! Please!

PsychedeliX wrote:I've found a better way, but you have to change some code in the sourcecode. I don't know if i may post this here
With my method theres no waittime ... such a millisecond

Daniel, give me the ok and i post what i've changed - or i upload my modified imacros
by PsychedeliX
Fri Mar 19, 2010 11:55 am
Forum: iMacros for Firefox
Topic: ignore the error and keep runing code
Replies: 7
Views: 35613

Re: ignore the error and keep runing code

I am new to this and think this is what I need to do to get through some of the errors popping on my forms as well, but where do you go to set it to "ignore the error"? Can't quite seem to navigate anywhere to find this out. You can set this where you want, e.g. SET !ERRORIGNORE YES '... ...
by PsychedeliX
Fri Mar 19, 2010 11:52 am
Forum: iMacros for Firefox
Topic: ignore the error and keep runing code
Replies: 7
Views: 35613

Re: ignore the error and keep runing code

trinitrotoluen wrote:Can you also ignore the page loading and keep running code ?
I'm having trouble with it :|
SET !Timeout 10
so your macro waits 10 Seconds before it execute the next line
by PsychedeliX
Fri Mar 19, 2010 11:48 am
Forum: iMacros for Firefox
Topic: Windows links to activate imacros
Replies: 36
Views: 17746

Re: Windows links to activate imacros

You have to edit the Firefox config to solve this

Open Firefox Config by typing

Code: Select all

about:config
Search for

Code: Select all

browser.link.open_newwindow
and set this to 1
Restart Firefox and test.

If this doen't help open the Firefox config again and search for

Code: Select all

browser.link.open_external
and set this to 1
by PsychedeliX
Fri Mar 19, 2010 11:35 am
Forum: iMacros for Firefox
Topic: open new link in new tab by click mode , is it possible ?
Replies: 15
Views: 8495

Re: open new link in new tab by click mode , is it possible ?

When there are fixed names after opened the new tab you can use:

Code: Select all

TAG POS=1 TYPE=A ATTR=HREF:TargetURL*
TAG POS=2 TYPE=A ATTR=HREF:TargetURL*
...
TAG POS=10 TYPE=A ATTR=HREF:TargetURL*
Look at the Sourcecode for the TargetURL's

The trick here is the use of "POS=" hope you understand.
by PsychedeliX
Fri Mar 19, 2010 11:27 am
Forum: iMacros for Firefox
Topic: need help here! Please!
Replies: 12
Views: 5503

Re: need help here! Please!

You can use
SET !TIMEOUT_TAG 1
Then you have to wait "only" one second after each tag.

I've found a better way, but you have to change some code in the sourcecode. I don't know if i may post this here
by PsychedeliX
Mon Dec 07, 2009 10:24 pm
Forum: iMacros for Firefox
Topic: 6.2.5.0 Changes
Replies: 3
Views: 1955

Re: 6.2.5.0 Changes

by PsychedeliX
Sat Dec 05, 2009 10:25 pm
Forum: iMacros for Firefox
Topic: 6.2.5.0 without Tag waiting
Replies: 1
Views: 1525

6.2.5.0 without Tag waiting

I've disabled the 2 Seconds waiting for next TAG in the imaros.jar by myself

I'm allowed to do this?
and if, can I upload the modified imacros.jar for interested people?
by PsychedeliX
Sat Dec 05, 2009 10:21 pm
Forum: iMacros for Firefox
Topic: 6.2.5.0 Changes
Replies: 3
Views: 1955

6.2.5.0 Changes

I've updated to the new Version 6250 but can't find the changes, please post in here
by PsychedeliX
Sat Dec 05, 2009 10:19 pm
Forum: iMacros for Firefox
Topic: Macro for Menu Choices
Replies: 1
Views: 1388

Re: Macro for Menu Choices

Your Menu with Submenus must be Flash/Java or something like that similar - unfortunately, this isn't working with the firefox addon
by PsychedeliX
Thu Dec 03, 2009 6:02 pm
Forum: iMacros for Firefox
Topic: It it Possible to Record a Modal Dialog?
Replies: 1
Views: 1414

Re: It it Possible to Record a Modal Dialog?

Just record it, it works GOTO=http://www.stumbleupon.com/ TAG POS=1 TYPE=A ATTR=TXT:Login TAG POS=1 TYPE=INPUT:TEXT FORM=NAME:formLogin ATTR=ID:username CONTENT=USERNAME TAG POS=1 TYPE=INPUT:PASSWORD FORM=NAME:formLogin ATTR=ID:passwordHeader CONTENT=PASSWORD TAG POS=1 TYPE=INPUT:SUBMIT FORM=ID:form...
by PsychedeliX
Wed Dec 02, 2009 5:13 pm
Forum: iMacros for Firefox
Topic: Problems on a netbook
Replies: 2
Views: 1587

Re: Problems on a netbook

It looks like your Windows or Firefox Theme is the Problem, try with the standard Theme
by PsychedeliX
Tue Nov 24, 2009 8:43 pm
Forum: iMacros for Firefox
Topic: A way of removing the loading part?
Replies: 4
Views: 2675

Re: A way of removing the loading part?

Code: Select all

SET !TIMEOUT 1
by PsychedeliX
Tue Nov 24, 2009 7:06 pm
Forum: iMacros for Firefox
Topic: Click on every links except if they are in a 'black' list
Replies: 5
Views: 3454

Re: Click on every links except if they are in a 'black' list

You will need to use the JavaScript Scripting Interface to "control" your macros: 1) Macro: Extract the selected link 2) Script: Get link via iimGetLastExtract() 3) Script: Compare link against blacklist 4) Script: if not in blacklist call macro command that 5) Macro: clicks link Can you ...