Search found 96 matches

by Hello 71
Tue May 12, 2009 7:59 pm
Forum: iMacros for Firefox
Topic: random number help
Replies: 5
Views: 4747

Re: random number help

josephconlin, do you code ECMAscript? Sounds like you don't. Anyways, ECMAscript (what JavaScript was called before M$ called it JScript and Netscape called it Javascript) is weakly typed, i.e. there are no strictly declared types for variables, so there is no need for a "tostring" function.
by Hello 71
Tue May 12, 2009 7:55 pm
Forum: iMacros for Firefox
Topic: document.cookie is undefined
Replies: 4
Views: 5111

Re: document.cookie is undefined

I know that "document" in iMacros doesn't refer to the page, but I get your point and I'm going to restate the statement. When trying to use "document.cookie" in iMacros you receive a "document.cookie is undefined" error.
by Hello 71
Fri Apr 03, 2009 1:41 am
Forum: iMacros for Firefox
Topic: document.cookie is undefined
Replies: 4
Views: 5111

Re: document.cookie is undefined

Bump.
by Hello 71
Mon Mar 30, 2009 8:19 pm
Forum: iMacros for Firefox
Topic: How to make Imacros hit the "Enter" key
Replies: 8
Views: 9586

Re: How to make Imacros hit the "Enter" key

Actually, I think it just refers to Button1, Button2, and Button3. So, "Yes" = "OK", "No" = "Cancel", etc. BUTTON=OK does not look like proper syntax.
by Hello 71
Sun Mar 29, 2009 9:55 pm
Forum: iMacros for Firefox
Topic: document.cookie is undefined
Replies: 4
Views: 5111

document.cookie is undefined

"iMacros supports all of the features of JavaScript," yadda yadda yadda. NOT. A macro using document.cookie to store variables fails.
by Hello 71
Sat Mar 28, 2009 11:04 pm
Forum: iMacros for Firefox
Topic: Can the Imacro be Detected.
Replies: 4
Views: 4998

Re: Can the Imacro be Detected.

Insert WAIT commands into your macro, like this (although if you shouldn't be using a macro, you shouldn't):
macro.iim:

Code: Select all

COMMAND
WAIT SECONDS=[INSERT SECONDS]
[e.g.]WAIT SECONDS=5
NEXT COMMAND
by Hello 71
Sun Mar 22, 2009 9:49 pm
Forum: iMacros for Firefox
Topic: SyntaxError: wrong format of VERSION command at line 1
Replies: 1
Views: 3338

Re: SyntaxError: wrong format of VERSION command at line 1

iMacros (or any other programming language) does not allow for multiple space-delimited commands to be squished together into one line. Your script is a 2,506 character long mess-up. It reports a VERSION command error because you are overloading the VERSION command with arguments. iMacros then figur...
by Hello 71
Sun Jan 18, 2009 9:30 pm
Forum: iMacros for Firefox
Topic: Random Bot Checker
Replies: 2
Views: 2514

Re: Random Bot Checker

#1: You can do this, but check the rules of the site you are using.
#2: What page are you trying to automate?
by Hello 71
Sun Jan 18, 2009 1:07 am
Forum: General Support & Discussions
Topic: iimSet.. new to this.. but learning.
Replies: 2
Views: 2373

Re: iimSet.. new to this.. but learning.

iimWrite.iim:

Code: Select all

DOSTUFFWITH {{inputvariable}}
jsWrite.js:

Code: Select all

iimSet("-inputvariable", "value")
iimPlay("iimWrite.iim")
Assuming they are both in the same folder, and you replace "inputvariable", and "value" with the correct names.
by Hello 71
Wed Jan 14, 2009 11:53 pm
Forum: iMacros for Firefox
Topic: iMacros on New Tabs
Replies: 39
Views: 57647

Re: iMacros on New Tabs

I think it is because you are using the wrong number. TAB T=2 (as far as I know) means the second tab from the first iMacros tab, not the first tab.
by Hello 71
Wed Jan 14, 2009 11:50 pm
Forum: iMacros for Firefox
Topic: How to set permanant variable?
Replies: 5
Views: 3653

Re: How to set permanant variable?

Bump
by Hello 71
Tue Jan 13, 2009 12:07 am
Forum: iMacros for Firefox
Topic: How to set permanant variable?
Replies: 5
Views: 3653

Re: How to set permanent variable?

Why I ask is because a site only allows me to enter data three times a day. Since I can't keep the script running all day(I am one of the people who shuts their computer down at night), I want to set a permanent variable to keep track of which item from the !DATASOURCE to enter. Also, if anyone has ...
by Hello 71
Sat Jan 10, 2009 3:23 pm
Forum: iMacros for Firefox
Topic: How to set permanant variable?
Replies: 5
Views: 3653

Re: How to set permanant variable?

I meant stopping the script, then restarting it.
by Hello 71
Fri Jan 09, 2009 10:01 pm
Forum: iMacros for Firefox
Topic: Some one is using macro on me in mafia war game!!!
Replies: 1
Views: 2436

Re: Some one is using macro on me in mafia war game!!!

Please do not report this to iOpus, the best thing for you to do is contact either the author of that game or Facebook.
by Hello 71
Fri Jan 09, 2009 9:52 pm
Forum: iMacros for Firefox
Topic: How to set permanant variable?
Replies: 5
Views: 3653

How to set permanant variable?

I want to make a script that gets the value of a cell at a place in a CSV file, then submits it to a page. The problem for me now is that it will get the exact same one every time. I want it to, say if this is the first time the script is run, then get value at cell (0,0) (0-based index). The second...