Search found 627 matches

by MattBell7
Fri Nov 11, 2011 4:35 pm
Forum: Command Line and Scripting Interface
Topic: Login Scripts Script
Replies: 8
Views: 11406

Re: Login Scripts Script

so you want to read the user names and password out from a text file?

did you actually read the link i posted? thats has exactly what you need to do. you need to look at uploading from a csv.
by MattBell7
Tue Nov 08, 2011 12:40 pm
Forum: General Support & Discussions
Topic: How do I make a script that clicks buttons..[read full post]
Replies: 4
Views: 3941

Re: How do I make a script that clicks buttons..[read full p

ok, so you have a page, with a list of buttons, and you want to click num 1, then back, then num 2, then back, then num 3??
by MattBell7
Mon Nov 07, 2011 1:07 pm
Forum: General Support & Discussions
Topic: How do I click either of two links the SAME row of a table
Replies: 2
Views: 2246

Re: How do I click either of two links the SAME row of a tab

change TXT:Grade to TXT:* but please note, this will click the next link, regardless of what it says, so not just update/grade
by MattBell7
Mon Nov 07, 2011 1:04 pm
Forum: iMacros for Firefox
Topic: Passing arguments to sub-scripts?
Replies: 7
Views: 26973

Re: Passing arguments to sub-scripts?

iimGetExtract is for v7.40 of the iMacros scripting interface onwards.

I don't know if they've changed it for the Javascript scripting interface in iMacros for FX.

check your version if you're using the full version though
by MattBell7
Mon Nov 07, 2011 1:01 pm
Forum: Command Line and Scripting Interface
Topic: Login Scripts Script
Replies: 8
Views: 11406

Re: Login Scripts Script

you need to put more detail about what you're trying to do, how are you logging in, what are you logging in to, how many users are you doing it with, do you want to do anything using iMacros after you've logged in etc.
by MattBell7
Mon Nov 07, 2011 12:58 pm
Forum: General Support & Discussions
Topic: Problem 1 of many
Replies: 1
Views: 2403

Re: Problem 1 of many

based on the screenshot, i would say that the specified folder doesn't exist, or iMacros doesn't have access to it. Try going into the Options pages, and change the paths in there to point to another folder, and see if that resolves the issue
by MattBell7
Mon Nov 07, 2011 12:54 pm
Forum: iMacros for Firefox
Topic: Can some one help me fix this script
Replies: 2
Views: 2102

Re: Can some one help me fix this script

it'd help if you told us what the problem with it is...
by MattBell7
Thu Nov 03, 2011 8:42 am
Forum: General Support & Discussions
Topic: Need help with task
Replies: 4
Views: 3151

Re: Need help with task

i doubt there'll be anything that specific, if you post more detail about the steps you want, we can point you in the right direction
by MattBell7
Wed Nov 02, 2011 4:22 pm
Forum: General Support & Discussions
Topic: Loop command until text appears
Replies: 3
Views: 3221

Re: Loop command until text appears

its sounding like a job for the scripting interface. have a continuous loop clicking the first link, then extracting the text if the text is 100% then stop the loop and click something else. i can't see how you can do it with a single macro i'm afraid. a URL would make it easier to help you out thou...
by MattBell7
Wed Nov 02, 2011 10:53 am
Forum: General Support & Discussions
Topic: Pausing Script for User Input
Replies: 7
Views: 4657

Re: Pausing Script for User Input

try a non-DS command before the PAUSE?
by MattBell7
Tue Nov 01, 2011 9:34 am
Forum: General Support & Discussions
Topic: Need help with task
Replies: 4
Views: 3151

Re: Need help with task

would this by any chance be for Pokemon Vortex? search the forums, theres loads of stuff already up about how to do exactly what you've just asked.
by MattBell7
Mon Oct 31, 2011 1:25 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Identify question, respond, then extract data
Replies: 2
Views: 2537

Re: Identify question, respond, then extract data

if there is a finite list of questions, and you know the answers, then yes.

easiest way would be to extract the question, and the use the scripting interface to say

if question=x then answer=a
else if question=y then answer=b
else if question=z then answer=c

etc
by MattBell7
Mon Oct 31, 2011 9:03 am
Forum: Command Line and Scripting Interface
Topic: Q: clicking the correct link in table - 1 row per student
Replies: 1
Views: 2049

Re: Q: clicking the correct link in table - 1 row per studen

you'd used Relative Positioning.

you select the correct username, then select the next grade link.

eg:
TAG POS=1 TYPE=TXT ATTR=TXT:demouser003
TAG POS=R1 TYPE=A ATTR=TXT:Grade

The important bit is the R1, this means the next one, from the current position.