Auto-focus on text input

Hi, I’m looking for a way to automatically focus on a text input.
I need to skip the need of clicking it to type in it / bring up the virtual keyboard.
I can’t find a way to do it, is it possible?

1 Like

With the javascript
document.getElementsByTagName("INPUT")[0].focus();

But it would be good if we got an official option.

4 Likes

Thanks!
What’s the list, part of the roadmap, feature requests, …?

These are my feature requests :slight_smile:
https://jackii.itch.io/gdevelop-feature-requests-bug-reports

https://github.com/4ian/GDevelop/issues/3726

Thanks Jack,
Now I did get the Text input focused. Next step will be to get the entered value out of the Text Input, but I guess that shouldn’t be to challenging? :wink:

//Farid