Script dialog's focused control?

As the title says: How do I find a script dialog's currently focused control?

It's obviously possible to query each individual control for their focused state but that seems rather cumbersome. Is there any other way, something like dlg.GetFocusControl() or a dlg.Controls Vector to enumerate?

Thanks a lot!

Currently no, there's no way to do this other than keeping track of the focus yourself in the message loop. But we'll add a Dialog.GetFocus() method for this in the next update.

4 Likes

Much appreciated, thank you!

Works perfectly in 13.13.8 beta - thank you!