I am working on a solution to create a mulitple selection within a GPDL?
For example:

-------------------------------------------------------
-------------------------------------------------------
property plSomeList

-------------------------------------------------------
on getPropertyDescriptionList
    propertyList = [:]
    c = "Select the items for the list "
    f = #string
    d = ""
    r = ["red", "yellow", "blue", "orange", "green", "purple"]
    propertyList.addProp (#plSomeList, [#comment: c, #format: f, #default:
d, #range: r])
    return propertyList
end getPropertyDescriptionList

-------------------------------------------------------
on beginSprite me
    plSomeList = value(plsSomeList)
end beginSprite

-------------------------------------------------------
-------------------------------------------------------

What I like for plSomeList to equal something like ["red", "yellow"] or
["blue", "orange", "purple"] or whatever combination the user chooses.

I realize the above code does not exactly work.  Also, the colors list in
the above is only an example.  The actually list might actually have 50 or
more items to choose from.

Any thoughts?

Anthony
www.lifelinestudios.com


[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
lingo-l@penworks.com  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to