07-23-2008, 10:07 PM
[/code]i am using TI Flash Studio to create TI 89 Titanium app.
i have a dialog with a popup connected to it. When i select the popup and press enter, i want to recieve what that selected item is.
ex:
i have a dialog with a popup connected to it. When i select the popup and press enter, i want to recieve what that selected item is.
ex:
Code:
DIALOG tDialog, 140, 70, NoCallBack {
POPUP, {DF_TAB_ELLIPSES, 12, 34}, "FIRST POPUP", Popup1, 0
HEADER, {0, 0, 0}, "DIALOG HEADER", PDB_OK, PDB_CANCEL
}
POPUP Popup1, RC_NO_IDS, 0 {
"One", 1
"Two", 2
}
I want to store either 1 or 2 of selected popup1 into a variable.
How can i do this?