Search found 26 matches

by tunaSalad
Wed Nov 25, 2009 7:13 pm
Forum: General Support & Discussions
Topic: Errors with Firefox
Replies: 2
Views: 2476

Re: Errors with Firefox

Thanks Marcia!

Let us know what FF build fixes these two issues.

Regards,
tunasalad
by tunaSalad
Tue Nov 17, 2009 1:47 pm
Forum: General Support & Discussions
Topic: Feature request
Replies: 4
Views: 2674

Re: Feature request

Great, thanks!
by tunaSalad
Tue Nov 17, 2009 1:43 pm
Forum: General Support & Discussions
Topic: Using variables
Replies: 3
Views: 2880

Re: Using variables

How can I tell Opus to search the link that begins with http://****************/t/db/13654/ and click on it, no matter what comes after the last "/" ?
Use the wildcard character '*'

Code: Select all

TAG POS=1 TYPE=A ATTR=HREF:http://yourdomain/t/db/13654/*
by tunaSalad
Tue Nov 17, 2009 1:39 pm
Forum: General Support & Discussions
Topic: Using variables
Replies: 3
Views: 2880

Re: Using variables

AFAIK you can only use variables using the scripting interface. There are many examples in the wiki and in the forum. The macro will look something like VERSION BUILD=6300218 TAB T=1 TAB CLOSEALLOTHERS URL GOTO=http://www.google.com/webhp?q={{query}} where {{query}} is a variable. The {{ }} are requ...
by tunaSalad
Tue Nov 17, 2009 1:27 pm
Forum: General Support & Discussions
Topic: Errors with Firefox
Replies: 2
Views: 2476

Errors with Firefox

Hi all, I have the following VBScript to test my macros: testParam1="HelloWorld" testName = "MacroTest" sshotFolder = "*" sshotType = "PNG" Set imacros = CreateObject("imacros") iret = imacros.iimInit("-fx") iret = imacros.iimSet("-var...
by tunaSalad
Mon Nov 16, 2009 6:16 pm
Forum: General Support & Discussions
Topic: Feature request
Replies: 4
Views: 2674

Re: Feature request

Cool! Was not aware that FF can now take full page screenshots. Could you please update/reword the section regarding screenshots in http://wiki.imacros.net/SAVEAS? If used in the iMacros Browser the complete web page (including the invisible part below the fold) is saved. If used inside Internet Exp...
by tunaSalad
Fri Nov 13, 2009 4:01 pm
Forum: General Support & Discussions
Topic: Redirection... How to follow it?
Replies: 5
Views: 3511

Re: Redirection... How to follow it?

According to http://wiki.imacros.net/Error_and_Return_Codes that error does not exist :?:

What version of iMacros are you using, FF plugin? IE? or iMacros Browser. I'd suggest trying on different browser and see how iMacros reacts on it.
by tunaSalad
Fri Nov 13, 2009 3:50 pm
Forum: General Support & Discussions
Topic: Saving arbitrary bitmap region
Replies: 2
Views: 2383

Re: Saving arbitrary bitmap region

I'd like to see something like that as well. Regarding the capture size, yes BMPs are large files. There should be left to the user which one to use: SAVEAS TYPE=JPG or SAVEAS TYPE=PNG, regardless of the browser being used (FF -> PNG only, Full page, IE -> BMP, not full page, iMacros -> BMP only, fu...
by tunaSalad
Thu Nov 12, 2009 8:49 pm
Forum: General Support & Discussions
Topic: Feature request
Replies: 4
Views: 2674

Feature request

Hi all, I'm a user of iMacros for a few years already -scripting edition- and I find the tool very powerful and easy to use. I've build up a web interface to iMacros using ASP.NET and C# where the users can login and select several settings such as the browser to run the macro on (IE, FF, or iMacros...
by tunaSalad
Tue Apr 28, 2009 11:49 am
Forum: General Support & Discussions
Topic: HELP ME LOGOUT FACEBOOK
Replies: 5
Views: 5077

Re: HELP ME LOGOUT FACEBOOK

Have you tried this?

TAG POS=1 TYPE=A ATTR=HREF:*logout.php*

8)
by tunaSalad
Tue Apr 28, 2009 11:22 am
Forum: General Support & Discussions
Topic: !URLCURRENT bug
Replies: 0
Views: 1628

!URLCURRENT bug

Hi iMacros team, I'm using the contents of !URLCURRENT as part of the filename for my screenshots. For instance: URL GOTO=http://foo.bar.com SAVEAS TYPE=PNG FOLDER=* FILE=Screenshot_{{!URLCURRENT}} This worked fine with the Firefox add-on and the saved file has a name like: Screenshot_http_foo.bar.c...
by tunaSalad
Thu Mar 26, 2009 12:52 pm
Forum: General Support & Discussions
Topic: help please!
Replies: 2
Views: 2047

Re: help please!

edit the macro code and insert the BACK command whenever you want to go back

http://wiki.imacros.net/BACK

Example:

URL GOTO=http://wiki.imacros.net/Main_Page
TAG POS=1 TYPE=A ATTR=TXT:Command<SP>Reference
BACK
by tunaSalad
Thu Mar 26, 2009 12:42 pm
Forum: General Support & Discussions
Topic: timed login question
Replies: 3
Views: 2957

Re: timed login question

Once you have your macro code sorted, read here on how to schedule tasks:

http://www.iopus.com/guides/winscheduler.htm
http://wiki.imacros.net/Automation#Schedule_Tasks

Regards