you can do it with DS
DS CMD=KEY X=0 Y=0 CONTENT={ENTER}
Search found 627 matches
- Wed Aug 17, 2011 6:58 am
- Forum: General Support & Discussions
- Topic: How do you make imacros press "Enter"?
- Replies: 12
- Views: 43027
- Wed Aug 17, 2011 6:57 am
- Forum: iMacros for Firefox
- Topic: Loop script until...
- Replies: 22
- Views: 10634
Re: Loop script until...
your regex is wrong [4-9]{2} will match 44-49, 54-59, ..94-99
you need ([5-9][0-9]) which will match 50-99
you need ([5-9][0-9]) which will match 50-99
- Tue Aug 16, 2011 10:37 am
- Forum: iMacros for Firefox
- Topic: Variable Item Link
- Replies: 3
- Views: 1358
Re: Variable Item Link
i don't write a lot of JS, but it would be something like: extracted = null var count=1 while (extracted >=1<=100) { iimPlay("CODE: TAG POS=1 TYPE=A ATTR=HREF:/map.php?map=" + count) iimPlay("CODE: TAG POS=1 TYPE=P ATTR=TXT:Number<SP>of<SP>Spaces:<SP>* EXTRACT") extracted = iimGetLastExtract (extrac...
- Tue Aug 16, 2011 10:33 am
- Forum: iMacros for Firefox
- Topic: Need help with youtube upload
- Replies: 9
- Views: 3238
Re: Need help with youtube upload
so have you tried recording the steps? what happens when you re-run it.
all you've done is say 'i have a problem doing this' but havent said what goes wrong, how you're trying to do it.
no info, means no help.
all you've done is say 'i have a problem doing this' but havent said what goes wrong, how you're trying to do it.
no info, means no help.
- Mon Aug 15, 2011 10:53 am
- Forum: iMacros for Firefox
- Topic: Variable Item Link
- Replies: 3
- Views: 1358
Re: Variable Item Link
have a variable, start it at 1, then just add 1 to it each time you go round the loop
- Mon Aug 15, 2011 10:52 am
- Forum: iMacros for Firefox
- Topic: Need help with youtube upload
- Replies: 9
- Views: 3238
Re: Need help with youtube upload
it can be done, in fact i've done it before, but i was paid to do it, so can't post the code i'm afraid.
try recording your macro steps, then look at the scripting interface pages on the wiki and it'll tell you everything you need to know.
try recording your macro steps, then look at the scripting interface pages on the wiki and it'll tell you everything you need to know.
- Sat Aug 13, 2011 1:21 pm
- Forum: Data Extraction and Web Screen Scraping
- Topic: Very Simple Data Scrape Issue
- Replies: 7
- Views: 2233
Re: Very Simple Data Scrape Issue
right, i understand you now. In short, it should be...
SAVEAS TYPE=EXTRACT should always append to a new line. If it isn't, then it could be a bug in the latest iMacros build... try rolling back to v 7.36 and see if that resolves it. If it does, raise a ticket with the support team to get it fixed
SAVEAS TYPE=EXTRACT should always append to a new line. If it isn't, then it could be a bug in the latest iMacros build... try rolling back to v 7.36 and see if that resolves it. If it does, raise a ticket with the support team to get it fixed
- Sat Aug 13, 2011 1:20 pm
- Forum: General Support & Discussions
- Topic: Any way to use directscreen without being logged in?
- Replies: 4
- Views: 1162
Re: Any way to use directscreen without being logged in?
could it possibly be related to the section here under 'Keep the Windows desktop active'
http://wiki.imacros.net/How_to_avoid_black_screenshots
http://wiki.imacros.net/How_to_avoid_black_screenshots
- Fri Aug 12, 2011 3:07 pm
- Forum: iMacros for Firefox
- Topic: Can imacros open and edit html files?
- Replies: 1
- Views: 1163
Re: Can imacros open and edit html files?
no, iMacros cannot open a file in Notepad, it controls your browser, not your computer. if you want to get even close to that, you'll need to use the scripting interface to open your file in notepad and add the text.
- Fri Aug 12, 2011 1:27 pm
- Forum: Data Extraction and Web Screen Scraping
- Topic: Very Simple Data Scrape Issue
- Replies: 7
- Views: 2233
Re: Very Simple Data Scrape Issue
so you want each individual field on its own line? or each loop on its own line?
- Fri Aug 12, 2011 9:11 am
- Forum: Data Extraction and Web Screen Scraping
- Topic: Very Simple Data Scrape Issue
- Replies: 7
- Views: 2233
Re: Very Simple Data Scrape Issue
its doing because each time you run it this value changes:
Extract_{{!NOW:ddmmyy_hhnnss}}
either user just Extract.csv, or even Extract_{{!NOW:ddmmyy}}.csv so you get the date, but this second one will do a new file each day.
Extract_{{!NOW:ddmmyy_hhnnss}}
either user just Extract.csv, or even Extract_{{!NOW:ddmmyy}}.csv so you get the date, but this second one will do a new file each day.
- Fri Aug 12, 2011 9:09 am
- Forum: General Support & Discussions
- Topic: List number's 0 through 9?
- Replies: 1
- Views: 676
Re: List number's 0 through 9?
i'm not gonna help someone try to crack a password, which it looks like you're trying to do...
- Thu Aug 11, 2011 4:22 pm
- Forum: iMacros for Firefox
- Topic: Question About SEARCH command
- Replies: 6
- Views: 1546
Re: Question About SEARCH command
they can't add type to it, it just doesn't make sense for how regex works, but POS does (i.e. find the 5th matching occurence of this regex). using type is like saying search for this text pattern, but only match it to a specific html element. SEARCH is a page source based command, it has nothing to...
- Thu Aug 11, 2011 9:45 am
- Forum: iMacros for Firefox
- Topic: Question About SEARCH command
- Replies: 6
- Views: 1546
Re: Question About SEARCH command
I have raised with iOpus to have the POS command added to SEARCH, as you currently can't do it.
The only other option would be to do something like this:
([0-9]{1,2}).*([0-9]{1,2}) EXTRACT=$2
this would match to the second group, instead of the first
The only other option would be to do something like this:
([0-9]{1,2}).*([0-9]{1,2}) EXTRACT=$2
this would match to the second group, instead of the first
- Wed Aug 10, 2011 8:04 am
- Forum: iMacros for Firefox
- Topic: Question About SEARCH command
- Replies: 6
- Views: 1546
Re: Question About SEARCH command
yeh, you just need to your regex correct 1-8 doesn't mean a number in the range 1-8 it means a character in the range, so 1-80 just means 1-8 or a 0 what you need is probably ([0-9]{1,2}) This will match anything between 00 and 99. Regex is a complex beast, but once you know what you're doing its re...