Search found 6 matches

by davygrvy
Sat Dec 12, 2009 12:22 am
Forum: iMacros for Chrome
Topic: not fully working on linux with chrome 4.0.249.30
Replies: 2
Views: 27666

not fully working on linux with chrome 4.0.249.30

The extension installs just fine, but looks as though Chrome for Linux doesn't have the extension stuff fully done. Upon first opening the panel, my script directory is empty and doesn't appear to represent a file-level directory like with the FireFox extension. How do I move my firefox iMacro scrip...
by davygrvy
Wed Sep 16, 2009 2:19 am
Forum: iMacros for Firefox
Topic: x-platform issue with file directories
Replies: 3
Views: 2204

Re: x-platform issue with file directories

Yes, I need to save it to the datasource's directory as it is a csv file I'll use for other scripts. Also, my writeFile() is wholly outside your API. I need to process the strings rather deeply in javascript, I guess I could push data back to the iMacro interpreter with iimSet().
by davygrvy
Mon Sep 14, 2009 10:27 pm
Forum: iMacros for Firefox
Topic: x-platform issue with file directories
Replies: 3
Views: 2204

x-platform issue with file directories

I have a script that writes a CSV file to the datasources directory. The problem is, I don't know the native name for it and have to ask users of the script to edit it which at times is taxing on the newbs. Would it be possible to have the directories stored in options as read-only built-in variable...
by davygrvy
Mon Sep 14, 2009 10:08 pm
Forum: iMacros for Firefox
Topic: is it possible to Ignore or Handle RunTimeError ?
Replies: 3
Views: 3036

Re: is it possible to Ignore or Handle RunTimeError ?

The only downside when using the script interface for iimPlay() is that even handled errors are still displayed in dialogs. Example: retcode = iimPlay(macro); if (retcode < 0) { if (retcode == -921) { // past last member of this page so break from inner loop. // We can't seem to stop iMacros from di...
by davygrvy
Thu Sep 10, 2009 4:53 pm
Forum: How-To's and useful iMacros: All other topics
Topic: Unattended printing to PDF file
Replies: 6
Views: 98141

Re: Unattended printing to PDF file

Ghostscript with RedMon can do it too, I think. But like all things Ghostscript, much "hacking" is required for the uninitiated.

http://pages.cs.wisc.edu/~ghost/redmon/index.htm
by davygrvy
Thu Sep 10, 2009 4:11 pm
Forum: iMacros for Firefox
Topic: output data
Replies: 15
Views: 31193

Re: output data

This is something that worked for me (under firefox) and uses the encoding translator to output a file in utf-8 for full unicode support. function writeToFile(filename, data) { try { netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect"); } catch (e) { alert("Permiss...