I am trying to use the combobox component for the first time and having a bit of trouble. All I want to do is have two choices in the drop menu. user picks one of the two choices, clicks next (component button) and goes to scene “xyz” based on the selection.
example would be… input text field and button with script like…
on (release) {
set(processname, “XSTS01”);
if (processname == “XSTS01”) {
gotoAndPlay(“Scene 2”, 1);
}
}
any help appreciated…