Get default value of combo box without change
Hi, Is there a way to get a default value without any click?I want to save the default value in a variable which in this case should be "one". Any Suggestion? Here is what I triedNames Default To Here( 1 );
New Window( "Example",
cb = Combo Box(
{"One", "Two", "Three"},
<<set function(function({self},
cb << set(1, runscript(1));
selection = cb << GetSelected();
Print( "Selected: " || se
...