Search found 239 matches

by iimfun
Wed Dec 13, 2017 7:30 am
Forum: iMacros Consultants
Topic: Extracting Yardi Voyager® tenant information into Excel
Replies: 2
Views: 22433

Re: Extracting Yardi Voyager® tenant information into Excel

Hey Jim,

Sounds reasonable. But how can the advanced users contact you?
by iimfun
Thu Nov 16, 2017 7:47 am
Forum: General Support & Discussions
Topic: Activate imacros tag command when not on loaded webpage?
Replies: 2
Views: 3545

Re: Activate imacros tag command when not on loaded webpage?

lodlum wrote:Is there a way to have a imacros wait for a tag even without a web page loaded?
I think the answer for Chrome is rather 'No'.

Maybe you can find some possible solution by switching to Firefox browser.
by iimfun
Thu Nov 16, 2017 7:33 am
Forum: iMacros for Firefox
Topic: Loop several times, Prompt only once
Replies: 11
Views: 11525

Re: Loop several times, Prompt only once

Okay, know one "royal" way... But this time I'm ready to help only privately. If this is agreed, leave your email and I'll contact you soon.
by iimfun
Mon Nov 13, 2017 8:23 am
Forum: General Support & Discussions
Topic: PROMPT Messagebox - Yes - No - Cancel (end)
Replies: 21
Views: 37977

Re: PROMPT Messagebox - Yes - No - Cancel (end)

But if you guys are looking for something special, here is it.
by iimfun
Mon Nov 13, 2017 8:12 am
Forum: iMacros for Chrome
Topic: Active script on specific URL?
Replies: 2
Views: 12559

Re: Active script on specific URL?

Let's assume that your specific website has a specific element on the page. For instance the title named "Some specific title". In this case you can make the macro wait until it appears and then continue with other commands. SET !TIMEOUT_STEP 999999999 TAG POS=1 TYPE=TITLE ATTR=TXT:"S...
by iimfun
Mon Nov 13, 2017 8:00 am
Forum: General Support & Discussions
Topic: What is "<svg xmlns" ? I can't click it
Replies: 1
Views: 2995

Re: What is "<svg xmlns" ? I can't click it

I guess you didn't click it with 'EVENT' mode. Just like this

Code: Select all

EVENT TYPE=CLICK SELECTOR="#content>DIV>DIV>DIV>DIV:nth-of-type(3)>DIV:nth-of-type(2)>DIV:nth-of-type(2)>DIV>DIV:nth-of-type(3)>DIV:nth-of-type(1)>DIV>DIV>SPAN>svg" BUTTON=0
by iimfun
Thu Nov 09, 2017 8:27 am
Forum: iMacros for Chrome
Topic: Imacros Chrome to Select all text from gmail messages
Replies: 1
Views: 11299

Re: Imacros Chrome to Select all text from gmail messages

Hi,

An interesting problem... Try to give more detailed specification of the steps.
Yet I'm unsure that you can get such a macro just as kindhearted help.
by iimfun
Thu Nov 09, 2017 8:18 am
Forum: Data Extraction and Web Screen Scraping
Topic: save extract error
Replies: 4
Views: 15851

Re: save extract error

imacrosid wrote:

Code: Select all

RuntimeError: Column number 2 greater than total number of columns 1, line: 19
Doesn't this error speak for itself?
by iimfun
Thu Nov 09, 2017 8:05 am
Forum: General Support & Discussions
Topic: Creating an automation
Replies: 1
Views: 3183

Re: Creating an automation

Hey,

My answers to your questions are more probably 'Yes'. It would be better if you moved this post to the iMacros Consultants section (or created a new post) and left the contact info and approximate budget estimate. Maybe someone will be interested to write this macro for you.
by iimfun
Mon Nov 06, 2017 8:09 am
Forum: iMacros for Firefox
Topic: Loading jquery + jquery-ui
Replies: 9
Views: 8921

Re: Loading jquery + jquery-ui

i waited for people more familiar with it It still seems that my approach is more promising and jQuery version independent. There should be some mechanism or task specific workarounds to access window context of the page itself. Sometimes I work with my own old tricks regarding that and at the mome...
by iimfun
Wed Nov 01, 2017 7:47 am
Forum: iMacros for Firefox
Topic: Loading jquery + jquery-ui
Replies: 9
Views: 8921

Re: Loading jquery + jquery-ui

As to this particular problem I would load the jquery-ui script directly to the page. iimPlayCode('URL GOTO=javascript:document.body.appendChild(document.createElement("script")).src="file:///path/jquery-3.1.0.min.js";void(0);' + '\n' + 'WAIT SECONDS=1' + '\n' + 'URL GOTO=javascr...
by iimfun
Wed Nov 01, 2017 7:38 am
Forum: iMacros for Firefox
Topic: Loop several times, Prompt only once
Replies: 11
Views: 11525

Re: Loop several times, Prompt only once

Bumped just to remind to add the "Direct Link".
by iimfun
Wed Nov 01, 2017 7:29 am
Forum: Command Line and Scripting Interface
Topic: Error Script
Replies: 8
Views: 19927

Re: Error Script

Maybe the line with your EVENT command should be written like macro3 = macro3 & "EVENT TYPE=CLICK SELECTOR=\"noIes\" BUTTON=0" & vbNewLine or macro3 = macro3 & 'EVENT TYPE=CLICK SELECTOR="noIes" BUTTON=0' & vbNewLine So you have to care about escaping do...
by iimfun
Wed Oct 25, 2017 6:35 am
Forum: iMacros for Firefox
Topic: Loop several times, Prompt only once
Replies: 11
Views: 11525

Re: Loop several times, Prompt only once

And now the very conditional PROMPT.

Code: Select all

' 0 - No   1 - Yes
SET needPrompt 1
SET d EVAL("{{needPrompt}} ? '' : 'u';")
SET !ERRORIGNORE YES
PROMPT "Really need to enter a value?" promptVar EVAL({{d}})
SET !ERRORIGNORE NO
For those who still believe in miracles...
by iimfun
Tue Oct 17, 2017 6:52 am
Forum: iMacros for Chrome
Topic: Following JS based links
Replies: 1
Views: 9131

Re: Following JS based links

Yes. This way may help

Code: Select all

SET !EXTRACT_TEST_POPUP NO
TAG POS=1 TYPE=A ATTR=TXT:"(stuff)" EXTRACT=HTM
SET onClick EVAL("'{{!EXTRACT}}'.match(/onclick="(.+?)"/)[1];")
URL GOTO=javascript:{{onClick}}
or even this one

Code: Select all

TAG POS=1 TYPE=A ATTR=TXT:"(stuff)"