Hi there
I have iMacros Scripting Edition. I checked the settings and I am only allowed to set the browsers as IE. Is there a way I can use the iMacros Scripting Edition with Firefox? I know there is a plugin for FF but i want to use the program with FF instead due to certain reasons.
Specifying browser
Forum rules
Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
- Tech Support
- Posts: 4947
- Joined: Tue Sep 20, 2005 7:25 pm
- Contact:
Re: Specifying browser
You can remote control Firefox via the Scripting Interface with iimInit ("-fx").
Does this answer your question?
Does this answer your question?
Re: Specifying browser
It does. But I don't know how to use it.. I've looked at the wiki and tried the provided code but it just doesn't work. Can you provide an example or two of its implementation so that I know whats involved and how I can manipulate the variables? I have imacros for FF installed btw.
Thanks
Thanks
-
- Posts: 9
- Joined: Tue Jun 17, 2008 7:07 pm
Re: Specifying browser
I do it in C# like this:
You could also assign it to a variable, which is what I actually do.
Code: Select all
Status status = imApp.iimInit("-ie", false, "", "", "", 5);
if (status != Status.sOk) throw new Exception("Initialization Failure");