Search found 14 matches
- Fri Oct 19, 2007 10:53 pm
- Forum: Beginners
- Topic: find position for active tab?
- Replies: 6
- Views: 7446
- Fri Oct 19, 2007 12:06 pm
- Forum: Beginners
- Topic: find position for active tab?
- Replies: 6
- Views: 7446
- Thu Oct 18, 2007 9:51 pm
- Forum: Beginners
- Topic: find position for active tab?
- Replies: 6
- Views: 7446
- Thu Oct 18, 2007 5:56 am
- Forum: Beginners
- Topic: find position for active tab?
- Replies: 6
- Views: 7446
find position for active tab?
When I press the tab few times, it goes to a certain button. How can I find the location for that button? thank you!
- Wed Jul 11, 2007 4:11 pm
- Forum: Beginners
- Topic: how to open url in new tab for ie 7?
- Replies: 0
- Views: 3257
how to open url in new tab for ie 7?
run program>iexplorer.exe myurl
only open a new windows for myurl, how can I open myurl in a new tab in my active ie windows. Thank you !
only open a new windows for myurl, how can I open myurl in a new tab in my active ie windows. Thank you !
- Thu Apr 26, 2007 8:55 pm
- Forum: Technical / Scripting
- Topic: page loaded , click a buttom,wait until the result sent back
- Replies: 1
- Views: 3501
page loaded , click a buttom,wait until the result sent back
How can I set the wait until the result is sent back when I click a button on the already completely loaded page. thank you! I know this below will wait for the wait page to load completely, but how can I modify this to what I want VBStart Sub OpenPage(URL,Wait) Dim IE Set IE = CreateObject("Interne...
- Fri Apr 20, 2007 2:23 pm
- Forum: Technical / Scripting
- Topic: MidStr equivalent
- Replies: 10
- Views: 9339
Re: MidStr equivalent
In the original it states the extention is consistent, if html file then change 4 to 5tleary wrote:but the file name is not consistent and the extention is
- Fri Apr 20, 2007 4:52 am
- Forum: Technical / Scripting
- Topic: MidStr equivalent
- Replies: 10
- Views: 9339
- Wed Apr 18, 2007 10:33 pm
- Forum: Technical / Scripting
- Topic: input variable only once into the compiled macro?
- Replies: 6
- Views: 7114
- Wed Apr 18, 2007 3:49 pm
- Forum: Technical / Scripting
- Topic: input variable only once into the compiled macro?
- Replies: 6
- Views: 7114
- Wed Apr 18, 2007 6:38 am
- Forum: Technical / Scripting
- Topic: input variable only once into the compiled macro?
- Replies: 6
- Views: 7114
input variable only once into the compiled macro?
I created a script to auto log in the program. At the first few steps, I use input command to get variables of the username and password, etc. and then rest of the script will go to a loop. How to only ask the user input the username and password only once, and it will "hard-coded" the info into the...
- Thu Apr 05, 2007 11:21 pm
- Forum: Beginners
- Topic: help on FindWindowWithText>
- Replies: 1
- Views: 3506
help on FindWindowWithText>
hello:
I use GetActiveWindow>window_title,X,Y to get window_title, and use
FindWindowWithText> to find phrase in the window_title, if phrase is found, how to let it go to label>back
thank you!
label>back
FindWindowWithText>sometext,1,window_title,0
if>???? found,back
I use GetActiveWindow>window_title,X,Y to get window_title, and use
FindWindowWithText> to find phrase in the window_title, if phrase is found, how to let it go to label>back
thank you!
label>back
FindWindowWithText>sometext,1,window_title,0
if>???? found,back
- Thu Apr 05, 2007 6:17 pm
- Forum: Technical / Scripting
- Topic: how to generate a looping number?
- Replies: 2
- Views: 3746
- Thu Apr 05, 2007 5:59 am
- Forum: Technical / Scripting
- Topic: how to generate a looping number?
- Replies: 2
- Views: 3746
how to generate a looping number?
I want to generate a number in the middle of my script, let say let>this=5, and when after run throught that point one time, the number go down by 1, until this=1 and then go back to 5 again. thank you for any help! label>firstline ..... ..... let>this=5 ????? ?????? if>this=5,page5 if>this=4,page4 ...