iMacros Loading and Running iim script from URL

traylerc

Newbie
Joined
Apr 29, 2013
Messages
28
Reaction score
10
Hi, I'm not sure if this is possible but what I want to happen is this:


Lets say I have Javascript file in my Macros folder and it's called "PlayScript.js"


I also have a .iim file, it's located on my website, lets say it's called "onlinescript.iim"


Now what I want is when I run the "PlayScript.JS" file from iMacros it's code is to locate the "onlinescript.iim" from the website and load it up and Run/Play it like it was a normal "iimPlay ()" command.


Is this possible to do inside of iMacros?


The reason I want this is so that I only need to update the website file and any computer around the world I work from can play the same "onlinescript.iim" file and will run.




Any help would be grateful thanks!
 
No one have any idea at all? ... anyone?
 
Not sure if it is possible to do it within iMacros.

You could however use a scripting language to run a remote .iim file.

PHP example:
Code:
<?php
system("firefox http://yourwebsite.com/Launch-iMacro.html?m=onlinescript.iim");
?>
 
Back
Top