Skip to main content
K.Daube
Community Expert
Community Expert
October 24, 2022
Answered

ScriptUI - how to go to the first control from anywhere on the panel

  • October 24, 2022
  • 2 replies
  • 272 views

Dear UI gurus, in particular Peter @Kahrel,

In an UI a TAB order exists - by default the order of creation of controls. I run into some questions here:

  • I do not find a property to explicitly define the tab order. → How to?
  • When amidst an assembly of controls and i want to go to the first one (tab index = 0), it seems that I only have the option to back-TAB as often as nescessary - this requires viual cheks.
  • HOME does not work at all. → Any other ideas?

Thank You for any insight.

This topic is closed to new replies. Start a new post to keep the conversation going.
Correct answer Peter Kahrel

> I do not find a property to explicitly define the tab order. → How to?

You can't change the tab order.

>  i want to go to the first one 

Most controls have the property .active. You can use that as the window's entry point, so to speak.

> HOME does not work at all.

The tab key is the only one available to navigate a window.

 

P.

(PS: typing @ in front of a name doesn't create a tag: you need to type @ then select a name or moniker from the drop-down.)

2 replies

Peter Kahrel
Community Expert
Peter KahrelCommunity ExpertCorrect answer
Community Expert
October 25, 2022

> I do not find a property to explicitly define the tab order. → How to?

You can't change the tab order.

>  i want to go to the first one 

Most controls have the property .active. You can use that as the window's entry point, so to speak.

> HOME does not work at all.

The tab key is the only one available to navigate a window.

 

P.

(PS: typing @ in front of a name doesn't create a tag: you need to type @ then select a name or moniker from the drop-down.)

K.Daube
Community Expert
K.DaubeCommunity ExpertAuthor
Community Expert
October 25, 2022

Thank you Peter - I already assumed that i must live with these conditions.