Search found 53 matches

by cboshdave
Fri Aug 30, 2013 4:55 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Oracle Forms...
Replies: 0
Views: 1594

Oracle Forms...

I am trying to work with a website that I realized is based on Oracle forms. So, I select the link and then have to load the java component. Then it jumps me to another window that iMacros does not seem to follow. Can iMacros interact with a web based Oracle forms window?

Thanks,
Dave
by cboshdave
Fri Dec 23, 2011 5:41 pm
Forum: iMacros Consultants
Topic: Looking for an imacro consultant
Replies: 1
Views: 4116

Re: Looking for an imacro consultant

My email is cboshdave@gmail.com. I could take a look and see if this is doable. Please contact me via email.
by cboshdave
Mon Jan 31, 2011 3:48 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Trying to select the first email in gmail window...
Replies: 7
Views: 3967

Re: Trying to select the first email in gmail window...

Thank you very much. I knew there had to be a way. I had not used or even read about that strategy yet!

I appreciate it again. Thanks!
by cboshdave
Fri Jan 28, 2011 11:32 pm
Forum: Data Extraction and Web Screen Scraping
Topic: How To Start Recording From Existing Script.
Replies: 1
Views: 1564

Re: How To Start Recording From Existing Script.

The easiest way to do that is to "Play" the existing script in the iMacros window. Then, hit record and continue. Next you can edit the #current script and copy and paste the lines and add them to your existing script. You don't want to copy and paste all. Usually, start at Line 4. The fir...
by cboshdave
Fri Jan 28, 2011 12:34 am
Forum: Data Extraction and Web Screen Scraping
Topic: Can't OPEN a gmail email...
Replies: 1
Views: 1593

Can't OPEN a gmail email...

I can do about everything else on the Gmail window, but I cannot OPEN a gmail email. FRAME F=4 TAG POS=2 TYPE=DIV ATTR=TXT:Archive<SP>Report* There is a dynamic frame name and I have modified the Frame command to using Frame F=4 and I can select about everything else, but I still cannot open the ema...
by cboshdave
Thu Jan 27, 2011 7:58 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Trying to select the first email in gmail window...
Replies: 7
Views: 3967

Re: Trying to select the first email in gmail window...

I tried this and noted that the check box is indeed getting populated. I need to open the emails though. Even when I modify my code to be similar, it runs to completion, but no email is opened. Any more thoughts on this? I really need this to work.
by cboshdave
Thu Jan 27, 2011 6:42 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Trying to select the first email in gmail window...
Replies: 7
Views: 3967

Re: Trying to select the first email in gmail window...

I did try that this morning. Is that intended to be a relative reference? Since I don't know what Frame it is i tried F=0 and incremented it up thru 5 and got no results.
by cboshdave
Thu Jan 27, 2011 3:58 am
Forum: Data Extraction and Web Screen Scraping
Topic: how to get data from 2 or more linked pages
Replies: 1
Views: 1599

Re: how to get data from 2 or more linked pages

I have just discovered imacros and I am excited about what "knows" I have read through helps and tutorials and I am getting into the ideea. But I have switched to more complicated things ... I am not able to get information from the table(and also data from the subsequent linked page <Sele...
by cboshdave
Thu Jan 27, 2011 3:53 am
Forum: Data Extraction and Web Screen Scraping
Topic: Additional Tag Column to the Saveas-csv-File
Replies: 4
Views: 2707

Re: Additional Tag Column to the Saveas-csv-File

Couldn't you just do a search and replace in a more aggressive text editor at this point? Try Notepad ++ or something like that. Then you can search for \n and replace it with "something"\n.

Just a thought. If that is not what you were looking for, maybe I need more information?

Dave
by cboshdave
Thu Jan 27, 2011 3:48 am
Forum: Data Extraction and Web Screen Scraping
Topic: Copy and paste something from one place to another place
Replies: 2
Views: 2011

Re: Copy and paste something from one place to another place

You say you want the first article. Which article? The first one listed in the window on the right under Tips VG?

Dave
by cboshdave
Thu Jan 27, 2011 3:44 am
Forum: Data Extraction and Web Screen Scraping
Topic: Trying to select the first email in gmail window...
Replies: 7
Views: 3967

Trying to select the first email in gmail window...

One more small problem. I am trying to select the first email in a gmail window. The recorder assumes the following code. Problem is that the FRAME NAME changes each time. So I can't get a fix on the position. Position 2 should get it every time but only in relation to the frame. Thoughts? FRAME NAM...
by cboshdave
Thu Jan 27, 2011 3:40 am
Forum: Data Extraction and Web Screen Scraping
Topic: Extract data from gmail email?
Replies: 2
Views: 3177

Re: Extract data from gmail email?

Okay... whatever. Apparently I just had to walk away from it for a bit. The following code selected my text. Just had to find the right position value.

Code: Select all

TAG POS=12 TYPE=FONT ATTR=TXT:* EXTRACT=TXT
Thanks,
Dave
by cboshdave
Thu Jan 27, 2011 1:09 am
Forum: Data Extraction and Web Screen Scraping
Topic: Extract data from gmail email?
Replies: 2
Views: 3177

Extract data from gmail email?

I have a specific email that I am trying to EXTRACT information from. Seems like it should be pretty straightforward. But, when I try to grab data with the Extraction Wizard, it continually returns me #EANF#. Even with the most simple of extractions. TAG POS=1 TYPE=FONT ATTR=TXT:$* EXTRACT=TXT This ...
by cboshdave
Wed Jan 19, 2011 10:00 pm
Forum: Data Extraction and Web Screen Scraping
Topic: initialization macro to prepare web page for looping macro?
Replies: 1
Views: 1601

Re: initialization macro to prepare web page for looping mac

Yeah... you can just keep stepping up a counter (or POS value) that will search for values. When the extract on that POS = #EANF# then you know you have hit the end of your table. I think this is what you are asking.

Good Luck,
cboshdave
by cboshdave
Wed Jan 19, 2011 9:57 pm
Forum: Data Extraction and Web Screen Scraping
Topic: Subsstring form EXTRACT
Replies: 3
Views: 2392

Re: Subsstring form EXTRACT

In the scripting language, you don't have that much flexibility. You will have to do that in another language and pass it into your iMacro. So, basically, you create a program that runs an iMacro and pulls the first extraction. Do you substr on the Extraction1 and then pass it back in again and run ...