Godot ItemList - preselected Item

for Godot 4.3 - GDscript

is it possible that an item list already has a selected item when the program starts. I couldn’t find a method to do this.

you can call the select-method in the _ready-method of the itemlist

1 Like

Ok, ok, I got it working.
Unfortunately, this method does not trigger the item selection signal.

But I called the signal manually in the _ready-method via code.
Not elegant, but works…

thx M

1 Like