Search found 19 matches

by Puss
Mon Jun 08, 2009 5:45 pm
Forum: iMacros for Firefox
Topic: run.imacros.net/?m=blah.iim errors Exception unknown
Replies: 7
Views: 6539

Re: run.imacros.net/?m=blah.iim errors Exception unknown

Is this fixed in Beta 6.2.3.x released today?
by Puss
Thu May 28, 2009 12:27 pm
Forum: iMacros for Firefox
Topic: Accessing page javascript variables directly
Replies: 2
Views: 1999

Re: Accessing page javascript variables directly

Thanks for the suggestion. That's the only way I have found to make it work, but it's a bit clunky. I thought I had sussed it when trying cookies, but that didn't work. Use case: Basically data extraction / synchronisation, but I wanted to avoid altering the DOM of the page, so direct access to the ...
by Puss
Mon May 18, 2009 7:58 pm
Forum: iMacros for Firefox
Topic: run.imacros.net/?m=blah.iim errors Exception unknown
Replies: 7
Views: 6539

Re: run.imacros.net/?m=blah.iim errors Exception unknown

Hi iOpus,

Is there a timescale for a release including this fix yet?

Can this fix be included in the latest beta version? (I'm using the new !CLIPBOARD functionality too.)

As I said, I'm happy to use a beta version whenever that's available.

Thanks.
by Puss
Thu May 14, 2009 11:23 pm
Forum: iMacros for Firefox
Topic: Should running multiple iMacros in parallel work?
Replies: 2
Views: 5004

Re: Should running multiple iMacros in parallel work?

The above is working in my test framework using: URL GOTO=javascript:isiMacrosRunning('No') as the last line of each macro. The point to note is that a javascript function is used to set/unset/check a page variable. (The iMacros URL command might not work using just a variable as described above.) T...
by Puss
Thu May 14, 2009 6:00 pm
Forum: iMacros for Firefox
Topic: Should running multiple iMacros in parallel work?
Replies: 2
Views: 5004

Re: Should running multiple iMacros in parallel work?

From experimentation, the answer seems to be 'no running iMacros in parallel in a single FF browser window will not work'. It looked like the most recent macro to be requested runs by cancelling any previous running macro. Alternatives are, open another FF window for each additional macro or create ...
by Puss
Thu May 14, 2009 4:54 pm
Forum: iMacros for Firefox
Topic: Extracting and parsing URL
Replies: 4
Views: 6252

Re: Extracting and parsing URL

How about ... Use a javascript iMacro that runs some of the iimPlay(), iimSet() etc functions. See: http://wiki.imacros.net/Command_Reference This js iMacro: - uses iimPlay() to run a normal iMacro that saves the !CURRENTURL into !EXTRACT - gets the URL into js using iimGetLastExtract ( http://wiki....
by Puss
Mon May 11, 2009 4:57 pm
Forum: iMacros for Firefox
Topic: Accessing page javascript variables directly
Replies: 2
Views: 1999

Accessing page javascript variables directly

Is there a way of accessing webpage javascript *variables* (not page elements or the contents of text boxes etc) directly from a .js iMacro ? How can these 'in page js' values be extracted without creating new elements in the page to 'expose' them to iMacros? Anyone got any ideas? I tried cookies, h...
by Puss
Mon May 11, 2009 4:38 pm
Forum: iMacros for Firefox
Topic: document.cookie is undefined
Replies: 4
Views: 5122

Re: document.cookie is undefined

In case it helps anyone ... If you try to use document.cookie = ... to set a cookie on the webpage in your browser window from within a .js iMacro, this does *not* work as you might hope. The 'document' object when you are in the iMacro, is an XUL object *not* the HTML document in the browser window...
by Puss
Mon May 11, 2009 3:10 pm
Forum: iMacros for Firefox
Topic: run.imacros.net/?m=blah.iim errors Exception unknown
Replies: 7
Views: 6539

Re: run.imacros.net/?m=blah.iim errors Exception unknown

Until this is fixed, could you suggest the best earlier version to use which has this working please?
by Puss
Mon May 11, 2009 3:08 pm
Forum: iMacros for Firefox
Topic: Should running multiple iMacros in parallel work?
Replies: 2
Views: 5004

Should running multiple iMacros in parallel work?

Hi, Questions: Can multiple iMacros (js or Code) run in parallel in the same FF browser window or do *I* need to manage a queue for them? If I have to queue them, how would I detect that a macro has finished running so I can start the next one in the queue? (from js in the web page) Two cases: 1) Di...
by Puss
Mon May 11, 2009 2:16 pm
Forum: iMacros for Firefox
Topic: Unavailable in Firefox: TAGX(undefined), DS, IRP, SIZE
Replies: 5
Views: 4920

Re: Unavailable in Firefox: TAGX(undefined), DS, IRP, SIZE

Hi Thanks for you answer, but IE is not an option for me. As I said initially, I can only be running one browser and other functional requirements mean it has to be FF. As an alternative (which might be helpful to others), I'm attempting to use this http://www.quirksmode.org/js/findpos.html javascri...
by Puss
Sat May 09, 2009 9:24 pm
Forum: iMacros for Firefox
Topic: Unavailable in Firefox: TAGX(undefined), DS, IRP, SIZE
Replies: 5
Views: 4920

Re: Unavailable in Firefox: TAGX(undefined), DS, IRP, SIZE

Hi Tech Support. Yes, I do have a use for !TAGX/Y without DS. I'm using iMacros to pass web page information out to a Windows level (rather than browser level) automation tool. This effectively does CLICK/DS type actions on multiple windows, so I'd like to see the 'easy to add' bit done earlier rath...
by Puss
Sat May 09, 2009 9:10 pm
Forum: iMacros for Firefox
Topic: run.imacros.net/?m=blah.iim errors Exception unknown
Replies: 7
Views: 6539

Re: run.imacros.net/?m=blah.iim errors Exception unknown

Happy to beta test any fixes you have.

Thanks for swift reply.

Another time I'll report earlier and do *less* debugging!
by Puss
Sat May 09, 2009 5:00 pm
Forum: iMacros for Firefox
Topic: run.imacros.net/?m=blah.iim errors Exception unknown
Replies: 7
Views: 6539

run.imacros.net/?m=blah.iim errors Exception unknown

I'm getting errors when trying to launch local iMacros from javascript with iMacros for Firefox version: 6.2.1.5 I have found similar errors here in the forum, but no fixes or troubleshooting hints. This code: <button onclick="window.location.href='http://run.imacros.net/?m=runfromjs.iim';"...