ok the setup what my combbox1 looks like in the settings tab
Item Text Item Data
1 A Nightmare on Elm Street
2 Adventure Island
3 Adventure Island II
and so on there 50 name in my list
what I have in Script tab under the on select tab
if e_Selection== 1 then
-- Changes to page 1
Page.Jump("Page1");
end
if e_Selection== 2 then
-- Changes to page 2
Page.Jump("Page2");
end
if e_Selection== 3 then
-- Changes to page 3
Page.Jump("Page3");
end
and so on there 50 pages to represent each game
it works with some problems can you help
Problem 1
when I select a name (item) on the combobox1 it will jump to the proper page under the name how ever the names move and then its not what I selected it jumps around as you pick a name?
Example
I pick this Adventure Island II in the combobox1
I get the page
then Ill pick A Nightmare on Elm Street in the combobox1
it will show page but the name in the box will be Adventure Island II
Problem 2
I would like to know if I selected a name (item)
lets say Adventure Island II which is page3 in my Project
how can I make it stay selected in the combobox1 on page3
Example
I load my project up A Nightmare on Elm Street is the first thing you see
I select from the combobox1 Adventure Island II it goes to the proper page
but in the box it says A Nightmare on Elm Street I need it to say Adventure Island II
I'm a green new be at this so please try to keep it simple for me
I hope that what I gave you all is enough to understand my situation
thanks for any help
Item Text Item Data
1 A Nightmare on Elm Street
2 Adventure Island
3 Adventure Island II
and so on there 50 name in my list
what I have in Script tab under the on select tab
if e_Selection== 1 then
-- Changes to page 1
Page.Jump("Page1");
end
if e_Selection== 2 then
-- Changes to page 2
Page.Jump("Page2");
end
if e_Selection== 3 then
-- Changes to page 3
Page.Jump("Page3");
end
and so on there 50 pages to represent each game
it works with some problems can you help
Problem 1
when I select a name (item) on the combobox1 it will jump to the proper page under the name how ever the names move and then its not what I selected it jumps around as you pick a name?
Example
I pick this Adventure Island II in the combobox1
I get the page
then Ill pick A Nightmare on Elm Street in the combobox1
it will show page but the name in the box will be Adventure Island II
Problem 2
I would like to know if I selected a name (item)
lets say Adventure Island II which is page3 in my Project
how can I make it stay selected in the combobox1 on page3
Example
I load my project up A Nightmare on Elm Street is the first thing you see
I select from the combobox1 Adventure Island II it goes to the proper page
but in the box it says A Nightmare on Elm Street I need it to say Adventure Island II
I'm a green new be at this so please try to keep it simple for me
I hope that what I gave you all is enough to understand my situation
thanks for any help
Comment