Search found 223 matches

by ABooth
Thu Jan 20, 2011 3:37 pm
Forum: Command Line and Scripting Interface
Topic: Repeat Function
Replies: 5
Views: 4841

Re: Repeat Function

You can launch a macro from JavaScript (in certain versions). In JavaScript you can create a loop to run the macro as many times as you like

Example.js

Code: Select all

for (i=0; i < 20; i++)
{
    iimPlay("macroName");
}
by ABooth
Wed Oct 20, 2010 12:52 pm
Forum: Data Extraction and Web Screen Scraping
Topic: SEARCH command on page in a frame
Replies: 4
Views: 3986

Re: SEARCH command on page in a frame

Hello ABooth, The SEARCH command is designed to only work with the current HTML page source. As a workaround, if you know the address of the frame page, you could try loading it into a new tab with URL GOTO and then doing the SEARCH on that tab. Thanks, but the page I want to scrape, is actually an...
by ABooth
Tue Oct 19, 2010 7:58 pm
Forum: Data Extraction and Web Screen Scraping
Topic: SEARCH command on page in a frame
Replies: 4
Views: 3986

SEARCH command on page in a frame

If I try to run the SEARCH command on a sub page using the FRAME F= n or FRAME Name= name The expression is only ever run on the top page that contains the Frameset. How do I get it to act on the frame contents instead? Example: - Frameset <html> <head></head> <FRAMESET framespacing="0" ro...
by ABooth
Thu Feb 18, 2010 1:03 am
Forum: iMacros for Firefox
Topic: LOOP in JavaScript
Replies: 9
Views: 8233

Re: LOOP in JavaScript

thanks for helping me now i have a nother little JS problem with this script: const iterations = 100; for( var i=1; i<=iterations; i++) { iimSet("iteration", i); iimPlay("macro1", 60); } iimPlay("macro2", 60); iimPlay("macro3", 60); i want to go up not in 1-2...
by ABooth
Fri Jan 22, 2010 3:02 pm
Forum: iMacros for Firefox
Topic: Is there a way to email the results using IMACROS
Replies: 2
Views: 2296

Re: Is there a way to email the results using IMACROS

Paste your results in to a web page you've written and make that page do whatever you like.
by ABooth
Wed Jan 20, 2010 2:57 am
Forum: iMacros for Firefox
Topic: Feature Requests & Bug Fix Requests. ADD YOURS!
Replies: 363
Views: 4529087

Re: Feature Requests & Bug Fix Requests. ADD YOURS!

Upon first installing iMacros on Firefox (FF 3.5, if it matters), I found it annoying that iMacros seized the first 4 inches or so of the browser window for its input controls. So I hit the [X] at the right of that pane to make those controls go away. Now there is no way to get them back, ever. iMa...
by ABooth
Tue Jan 19, 2010 4:05 pm
Forum: iMacros for Firefox
Topic: Need Help To Save Varibale To .Ini File
Replies: 5
Views: 4050

Re: Need Help To Save Varibale To .Ini File

C:\Windows\Loop.ini [CurrentLoop] Loop1= Loop2= Loop3= const Key = "Loop1="; // Change this for each macro. const iniFile = 'C:\\Windows\\Loop.ini'; // Insert functions needed below //replace below with the actual function function loadFile(...) { ... } //replace below with the actual func...
by ABooth
Tue Jan 19, 2010 7:57 am
Forum: iMacros for Firefox
Topic: Need Help To Save Varibale To .Ini File
Replies: 5
Views: 4050

Re: Need Help To Save Varibale To .Ini File

Client side file loading and saving: Click here. Note: This requires JAVA. This includes tips on how to load and save files, so you could load an existing .ini file, or a template with tags, then insert your data and save. Example: - C:\templates\myApp.ini.template username=[user] password=[pass] ur...
by ABooth
Tue Jan 19, 2010 7:17 am
Forum: How-To's and Examples for Firefox / JavaScript Scripting
Topic: Using (Sun) Java in iMacros for Firefox
Replies: 3
Views: 76775

Re: Using (Sun) Java in iMacros for Firefox

I just thought I'd add another useful function here, as many people want to know how to write to a file without using the iMacro command SAVEAS // Write text to a file. function writeFile(fileName, data) { netscape.security.PrivilegeManager.enablePrivilege("UniversalPropertyRead"); var use...
by ABooth
Mon Jan 18, 2010 2:51 am
Forum: iMacros for Firefox
Topic: How to use ADD
Replies: 1
Views: 1796

Re: How to use ADD

By clicking here. You might also consider !LOOP
by ABooth
Mon Jan 18, 2010 2:48 am
Forum: iMacros for Firefox
Topic: Auto register at forums
Replies: 5
Views: 6230

Re: Auto register at forums

You would probably need a scripting edition, or perhaps use Java Liveconnect to utilize the decaptcher.com api.
by ABooth
Mon Jan 18, 2010 2:44 am
Forum: iMacros for Firefox
Topic: need help, break the looping
Replies: 1
Views: 1802

Re: need help, break the looping

Not only can you not break the loop, your loop will use up stack space, 'til it gets a stack overflow, because no call to a method will ever complete. If all your functions are doing is executing macro 'a' then 'b', why not do something like this: - const iterations = 10; // Only run them 10 times f...
by ABooth
Mon Jan 18, 2010 2:39 am
Forum: iMacros for Firefox
Topic: Extract Data in CSV COL
Replies: 3
Views: 3597

Re: Extract Data in CSV COL

That's what it will do, if you have them all in !EXTRACT
by ABooth
Fri Jan 15, 2010 8:37 pm
Forum: iMacros for Firefox
Topic: Auto register at forums
Replies: 5
Views: 6230

Re: Auto register at forums

If they don't use Captcha or other anti-automation tools, yes.
by ABooth
Fri Jan 15, 2010 2:47 pm
Forum: iMacros for Firefox
Topic: Problem
Replies: 15
Views: 8932

Re: Problem

Here are my test results: - My iMacro (#Current) VERSION BUILD=6311226 RECORDER=FX URL GOTO=http://www.google.com No text change // Pašto kodas iret = iimPlay("#Current") // Pašto kodas alert ("Done.") Click Play: No response Remove character from line 1 // Pato kodas iret = iimP...