Search found 60 matches

by PsychedeliX
Sun Jun 12, 2011 6:37 pm
Forum: iMacros for Firefox
Topic: Javascript problem with cookie
Replies: 2
Views: 2508

Re: Javascript problem with cookie

Since this is for local use only, why u want to save something in a cookie? why not simply save to file?
by PsychedeliX
Sun Jun 12, 2011 6:32 pm
Forum: iMacros for Firefox
Topic: Starting a Firefox-Bookmark from Command-Line
Replies: 8
Views: 7273

Re: Starting a Firefox-Bookmark from Command-Line

franc wrote:
PsychedeliX wrote:add
toggleSidebar();
at the and of ur js to close the sidebar
Where can I put it? Not in the iMacros script, I guess, because then I get in iMacros:
SyntaxError: can not parse macro line: toggleSidebar(); (Error code: -910)
you have to use this inside a javascript
by PsychedeliX
Sun Jun 12, 2011 6:29 pm
Forum: iMacros for Firefox
Topic: Looping stuck
Replies: 10
Views: 8217

Re: Looping stuck

have u tryed to set "wait seconds=1" to avoid the stuck?
by PsychedeliX
Sun Jun 12, 2011 6:21 pm
Forum: iMacros for Firefox
Topic: iMacro Shortcuts
Replies: 2
Views: 2369

Re: iMacro Shortcuts

imacros.exe can't exists within the firefox addon, i think your searching for this http://iopus.com/download/imacros/
by PsychedeliX
Sun Jun 12, 2011 6:19 pm
Forum: iMacros for Firefox
Topic: How do I do ctrl + tab?
Replies: 3
Views: 2191

Re: How do I do ctrl + tab?

What is the Programk ur speaking from?
by PsychedeliX
Sun Jun 12, 2011 6:15 pm
Forum: iMacros for Firefox
Topic: How do I save something in a line of a csv file?
Replies: 10
Views: 5069

Re: How do I save something in a line of a csv file?

Using Javascript you can write to a local file using the Mozilla XPCOM Object -> https://developer.mozilla.org/en/xpcom, easiest way to do this is to google for a Script that fit your needs and copy/paste, there are many ready Functions u can use.
by PsychedeliX
Sun Jun 12, 2011 6:03 pm
Forum: iMacros for Firefox
Topic: Relative extraction of anchor link
Replies: 29
Views: 14144

Re: Relative extraction of anchor link

Swarpra wrote:

Code: Select all

if (extracted == "#EANF#")
         {
         break;
         }

Code: Select all

if (extracted == "#EANF#")
         {
         var refresh = "CODE:";
	 refresh +=  "REFRESH" + "\n";
	 iimPlay(refresh)
         }
http://wiki.imacros.net/REFRESH
by PsychedeliX
Sat Jun 11, 2011 12:59 am
Forum: iMacros for Firefox
Topic: Looping stuck
Replies: 10
Views: 8217

Re: Looping stuck

i've had this error a few times - workaround could be:

set firefox to noncheck in ur antivirus software - PLEASE DO NOT WITH YOUR MAIN FIREFOX INSTALLATION
use an extra installation/portable firefox with imacros to do this!

it seems this is a timing problem while reading/saving from/to local files
by PsychedeliX
Sat Jun 11, 2011 12:38 am
Forum: iMacros for Firefox
Topic: Starting a Firefox-Bookmark from Command-Line
Replies: 8
Views: 7273

Re: Starting a Firefox-Bookmark from Command-Line

add
toggleSidebar();
at the and of ur js to close the sidebar
by PsychedeliX
Sat Jun 04, 2011 7:29 pm
Forum: iMacros for Firefox
Topic: How to prevent a 404 error from crashing an imacro
Replies: 6
Views: 6492

Re: How to prevent a 404 error from crashing an imacro

add a FAT wiki link @ the top of the forum to prevent questions like this
by PsychedeliX
Sat Jun 04, 2011 7:21 pm
Forum: iMacros for Firefox
Topic: Help to click on this TAG
Replies: 6
Views: 3464

Re: Help to click on this TAG

I have problem to Autoclick on this tag Here is the code <a onclick="document.getElementById('frm4645235464').submit();" href="javascript:void(0)"> <img width="468" border="0" src="http://www.domain.org.fds4543543543rur0rq0e5948509483509.gif"> </a> ...
by PsychedeliX
Fri Jun 03, 2011 10:21 am
Forum: iMacros for Firefox
Topic: Relative extraction of anchor link
Replies: 29
Views: 14144

Re: Relative extraction of anchor link

To open EVERY link in a new Tab you can do the following:

Goto URL

Code: Select all

about:config
Search for

Code: Select all

browser.tabs.loadInBackground
and

Code: Select all

browser.tabs.loadDivertedInBackground
eventually also for

Code: Select all

browser.tabs.loadBookmarksInBackground
Set the first two, or maybe all to

Code: Select all

true
by PsychedeliX
Wed Jun 01, 2011 1:46 pm
Forum: iMacros for Firefox
Topic: Skipping TAG s
Replies: 7
Views: 3371

Re: Skipping TAG s

TAG POS=1 <- First Tag
TAG POS=2 <- Second Tag

and so on ...
by PsychedeliX
Wed Jun 01, 2011 1:40 pm
Forum: iMacros for Firefox
Topic: Help Keep getting (Error code: -921)
Replies: 5
Views: 3402

Re: Help Keep getting (Error code: -921)

for the url in your post, you could use

Code: Select all

TAG POS=1 TYPE=input:text ATTR=name:YMP0 CONTENT=TEST
look at the source, there you find

Code: Select all

<input type="text" size="20" name="YMP0">
by PsychedeliX
Fri Feb 25, 2011 12:49 pm
Forum: iMacros for Firefox
Topic: using proxy list or plugin on firefox?
Replies: 27
Views: 746002

Re: using proxy list or plugin on firefox?

create a .csv file with your targeturl and a proxy like this: TargetURL,Proxy,Port www.google.de,123.123.123.123,10080 Let's name it proxy.csv for now Than create your macrocode like this: SET !DATASOURCE proxy.csv SET !DATASOURCE_COLUMNS 3 SET !DATASOURCE_LINE 1 URL GOTO=about:config URL GOTO=javas...