PDA

View Full Version : A Global Listbox?


spacesurfer
06-24-2007, 09:55 AM
Is there a way to create a global listbox as opposed to a local listbox?

I want to create a listbox that is accessible on all pages of my project.

For example, for my game Jeopardy, I choose 5 categories on the Intro page from a 10 categories.

I need to store these categories in a list. When 5 are chosen, then the Play button is revealed. Clicking on that goes to the Question Board page.

Here, the page has to obtain the categories from the listbox and display them on the top.

The problem is that the listbox is not global, only local; so I can't use this method.

RizlaUK
06-24-2007, 10:22 AM
you can make your page inherit the objects from another page, but it will inherit ALL the objects

however, worm posted a function set to take the contents from a listbox on one page and insert in to a listbox on another page, but i cant find the post, so i will see if i have the functions saved somewhere.

EDIT:

Here it is:
http://www.indigorose.com/forums/showpost.php?p=95345&postcount=3

spacesurfer
06-24-2007, 08:33 PM
Thank you very much!