Search found 77 matches
- Mon Feb 10, 2014 2:35 pm
- Forum: Command Line and Scripting Interface
- Topic: Browser already open
- Replies: 4
- Views: 3052
Re: Browser already open
Thanks...........but we don't use firefox. We use the iMacros browser.....
- Fri Feb 07, 2014 10:11 pm
- Forum: Command Line and Scripting Interface
- Topic: Browser already open
- Replies: 4
- Views: 3052
Browser already open
I use iMacros with a homegrown Web application. The user pushes a button in Excel to open a browser and start moving between pages and extracting data from this application. The browser is opened with the following commands: Set iim1 = CreateObject("iMacros") iret = iim1.iimInit(, False) Sometimes t...
- Fri Sep 06, 2013 8:05 pm
- Forum: Data Extraction and Web Screen Scraping
- Topic: Frame Name on Pop-Ups
- Replies: 0
- Views: 1111
Frame Name on Pop-Ups
I have a macro that creates customers in PeopleSoft Financials 9.1. The macro enters data in certain fields and when I move to the next field, the application throws a pop-up. I think these fields are validating the information that the macro enters. I have tried to capture these Pop-Ups, so I can h...
- Mon Aug 19, 2013 6:49 pm
- Forum: Command Line and Scripting Interface
- Topic: Check if imacro is running
- Replies: 1
- Views: 1460
Check if imacro is running
I have an Excel macro with several buttons. The first button opens the iMacros browser and logs on to a PeopleSoft application. The next button does a number of things. I would like to add an edit to check if the iMacros browser is open (meaning the user has already logged into PeopleSoft). How can ...
- Mon Aug 19, 2013 4:45 pm
- Forum: Command Line and Scripting Interface
- Topic: Need to record pressing the "enter" key or "ok" button
- Replies: 3
- Views: 3152
Re: Need to record pressing the "enter" key or "ok" button
Thanks for the reply. I'm not using CHROME or FireFox. Ive tried the ONDIALOG code and that did not work for me either.
- Mon Aug 19, 2013 4:05 pm
- Forum: Command Line and Scripting Interface
- Topic: Need to record pressing the "enter" key or "ok" button
- Replies: 3
- Views: 3152
Need to record pressing the "enter" key or "ok" button
I'm developing a macro. I get to a certain part and I press the "save" button on the application. I have automated the steps to this point and it runs well. When you press the "save" button, a number of pop-up messages can be displayed. All of them have an "OK" button that needs to be pressed. I hav...
- Wed Nov 21, 2012 9:22 pm
- Forum: Command Line and Scripting Interface
- Topic: Control Screen Size
- Replies: 0
- Views: 1135
Control Screen Size
I have used the following code in one of our iMacros successfully : TAB T=1 TAB CLOSEALLOTHERS SIZE X=1132 Y=883 FRAME F=1 SET !SINGLESTEP YES DS CMD=CLICK X=146 Y=276 CONTENT= DS CMD=CLICK X=394 Y=340 CONTENT= DS CMD=CLICK X=395 Y=353 CONTENT= DS CMD=CLICK X=504 Y=334 CONTENT= DS CMD=CLICK X=504 Y=...
- Fri Nov 02, 2012 4:02 pm
- Forum: Command Line and Scripting Interface
- Topic: Default date keeps returning
- Replies: 0
- Views: 924
Default date keeps returning
When a certain page opens, the "Accounting Date" field is pre-populated with the current date. In my macro, I need to change this date. I am able to fill the "Accounting Date" field with the appropriate date. So far so good. The problem I have is when my iMacro macro pushes the "Save" button, the cu...
- Thu Oct 18, 2012 6:32 pm
- Forum: Command Line and Scripting Interface
- Topic: New window instead of a tab
- Replies: 0
- Views: 919
New window instead of a tab
I have a macro that works in version 6.90 without any issues. The machines with v6.90 usually have Windows XP. I'm trying to update it for version 8.00.1865 and am struggling with 1 button. Some of these machines have Windows XP and some will have Windows 7. In version 6.90, when I click on the "GO"...
- Tue Oct 11, 2011 4:24 pm
- Forum: Data Extraction and Web Screen Scraping
- Topic: extract webdialog popup
- Replies: 1
- Views: 944
extract webdialog popup
For certain situations in my macro, I will get a webdialog pop up. I would like to extract the contents of the webdialog pop up and take some action based on the contents. Is it possible to to extract the contents of an html webdialog pop up? I have looked around but haven't found an answer to this ...
- Wed Nov 12, 2008 11:03 pm
- Forum: Data Extraction and Web Screen Scraping
- Topic: Splitting an extraction
- Replies: 4
- Views: 2201
Splitting an extraction
I have extracted the contents of a table; which is a tree. The tree consists of cost centers, areas, cities, and locations. When this tree is extracted, it is one long string. The separator appears to be a small square. Normally, I split data on either "#NEXT#" or "#NEWLINE#". I tried to split this ...
- Tue Nov 11, 2008 3:47 pm
- Forum: General Support & Discussions
- Topic: Security Alert
- Replies: 1
- Views: 974
Security Alert
All of a sudden, when I logon to a specific website, I get a Security Dialog box after I enter the user ID and password and click the logon on button. The Security Alert is as follows: "You are about to leave a secure Internet connection. It will be possible for others to view information you send. ...
- Wed Oct 08, 2008 6:57 pm
- Forum: Data Extraction and Web Screen Scraping
- Topic: checkbox value
- Replies: 2
- Views: 2604
checkbox value
I would like to retrieve the value from a checkbox (to determine whether or not it has been checked. I am using the code below and it returns "null" for both checkboxes even though one is checked and the other isn't. MyMacroCode = "CODE:" MyMacroCode = MyMacroCode + "VERSION BUILD=6140505" + vbNewLi...
- Sun Oct 05, 2008 2:52 pm
- Forum: General Support & Discussions
- Topic: Code waiting 60 seconds
- Replies: 1
- Views: 950
Code waiting 60 seconds
I'm using the following code to select an item from a drop down. The drop down looks like a grid but only the first column has data. I have captured the selection and have it stored in an array (DR(6,rt)). This is working but the problem is that it waits 60 seconds before moving on to the next line ...
- Wed Sep 17, 2008 8:38 pm
- Forum: General Support & Discussions
- Topic: Checkboxes
- Replies: 2
- Views: 1204
Re: Checkboxes (resolved)
Thanks.....for the help....I removed "&&Value" and it works like I want it to....