Not able to recognize the tabs in a window
Moderators: JRL, Dorian (MJT support)
Not able to recognize the tabs in a window
hello,
Following the steps mentioned below:
· Right click on “Local Area Connectionâ€
Following the steps mentioned below:
· Right click on “Local Area Connectionâ€
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Which OS are we talking about here?
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
With CTRL+TAB, I can navigate from one tab to another.
The tabs available in the "Properties" window are "General" and "Advanced"
If I include the line "CTRL+TAB" in the script.
If the properities window opens with "General" tab initially, my script will point to "Advanced" tab. If the properties window opens with "Advanced" tab, then my script will point to "General" tab.
Is there any way, where I can point to "advanced" tab, irrespective of whether the window opens with "general" or "advanced" tabs.
--jiby
The tabs available in the "Properties" window are "General" and "Advanced"
If I include the line "CTRL+TAB" in the script.
If the properities window opens with "General" tab initially, my script will point to "Advanced" tab. If the properties window opens with "Advanced" tab, then my script will point to "General" tab.
Is there any way, where I can point to "advanced" tab, irrespective of whether the window opens with "general" or "advanced" tabs.
--jiby
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Well one way ... if this allows you to determine which tab is selected and you want to select the 2nd tab surely a simple calculation will tell you how many times you need to CTRL-TAB or CTRL-SHIFT-TAB to get to the second tab ?
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
Try Shift+Tab then CTRL+Home
Code: Select all
//Open Display Properties window on 3rd tab
Let>Rp_Wait=0
Run>control.exe desk.cpl,,3
//Wait for viewability
Wait>2
//press shift+tab to reverse tab once
Press shift
Press tab
Release shift
//Wait for viewability
Wait>2
//Press ctrl+home to go to the first tab
Press ctrl
Press home
release ctrl