Search found 7 matches

by jmwhite411
Thu Dec 18, 2008 11:37 pm
Forum: General Support & Discussions
Topic: Simple non-code loop, Possible?
Replies: 7
Views: 4401

Re: Simple non-code loop, Possible?

To finish this post I wanted to show the Macro.VBS file I ended up with, which is working perfectly... maybe it could have some better error trapping, but its kind of a throw-away. Option Explicit Dim iim1, iret set iim1 = CreateObject ("imacros") iret = iim1.iimInit() ' Start first macro ...
by jmwhite411
Wed Dec 17, 2008 9:54 pm
Forum: General Support & Discussions
Topic: Simple non-code loop, Possible?
Replies: 7
Views: 4401

Re: Simple non-code loop, Possible?

The missing link was how to use VBS scripts in windows. I never realized that if any of the code segments are pasted into a TXT file with an extension .VBS they will just play by double click in Windows.
by jmwhite411
Fri Dec 05, 2008 3:33 pm
Forum: General Support & Discussions
Topic: Simple non-code loop, Possible?
Replies: 7
Views: 4401

Re: Simple non-code loop, Possible?

I hate to be such a pain, but the =ALL only took the last one in the list. The problem with this combobox is that you can only take one item at a time and move it. There is no Select All or other option to choose everything for the combobox. It needs to be a repetitive looping process of : Click CON...
by jmwhite411
Thu Dec 04, 2008 9:37 pm
Forum: General Support & Discussions
Topic: Making the loop stop if page changes?
Replies: 1
Views: 1840

Re: Making the loop stop if page changes?

Just my idiot idea, but I have a macro like the one you mention... that I need to stop when something happens which changes the expected outcome. In my macro I use the ImageSearch with 100 confidence to check for something on the expected page. In the even the expected page does not appear then the ...
by jmwhite411
Thu Dec 04, 2008 8:59 pm
Forum: General Support & Discussions
Topic: Simple non-code loop, Possible?
Replies: 7
Views: 4401

Re: Simple non-code loop, Possible?

Just to give the full picture, this is the whole macro which is set to run using the Play[Loop] button: TAB CLOSEALLOTHERS SET !TIMEOUT 30 SET !ENCRYPTION NO SET !ERRORIGNORE YES SET !DATASOURCE list.csv SET !DATASOURCE_COLUMNS 1 SET !DATASOURCE_LINE {{!LOOP}} SET !EXTRACT_TEST_POPUP NO 'Login to We...
by jmwhite411
Thu Dec 04, 2008 3:42 am
Forum: General Support & Discussions
Topic: Simple non-code loop, Possible?
Replies: 7
Views: 4401

Re: Simple non-code loop, Possible?

I use this feature frequently and in fact already with this macro. My question was more to the idea of a loop within a macro. The Macro itself uses the Play Loop about 1000 times. I need to know how to create a loop inside a macro(without using some code language but right in the iim file)... not lo...
by jmwhite411
Wed Dec 03, 2008 4:41 pm
Forum: General Support & Discussions
Topic: Simple non-code loop, Possible?
Replies: 7
Views: 4401

Simple non-code loop, Possible?

I have read all(most) the Forum and FAQ on the topic of looping, but since I do not know any code language or how to write in it I am at a loss. I would like to be able to create a simple loop, within the Imacro iim file, that will click a value from a combobox and then move it using an arrow key. I...