Storing arrays in a custom property
Jim Ault
JimAultWins at yahoo.com
Sun Feb 18 19:02:19 EST 2007
Look closely at the syntax, since properties must be 'set' thus
put "5555" into tKey
set the uSolutionList[tKey] of this stack to "Alice in Wonderland"
set the uSolutionList["6666"] of this stack to "6+6+6+6,!"
put "6666" into tKey
put tKey &";"& cr & (the uSolutionList[tKey] of this stack) into msg
----
You don't have to set the custompropertyset of this stack to
"uSolutionList", but if you do you can use the shorter syntax
put "8888" into tKey
set the tKey of this stack to "8+8+8+8"
get the tKey of this stack --since the active set is the default
put tKey &";"& cr & (the tKey of this stack) into msg
Jim Ault
Las Vegas
On 2/18/07 3:32 PM, "Ian McKnight" <iangmcknight at googlemail.com> wrote:
> Hi Mark & Dave
>
> Thank you both for your advice. I did as you suggested and the data is
> now stored but I still can't get to it.
>
> Here is the code snippet that I an using in a mouseup handler for testing:
>
>
> --
> set the custompropertyset of this stack to "uSolutionList"
> put "6666" into tkey -- should have 6+6+6+6,! associated with it
> get the uSolutionList[tKey] of this stack
> put it into tAns
> put tKey&";"&& tAns -- should output 6666; 6+6+6+6,! to msg
> --
>
> I only get 6666 no matter what I try.
>
> BTW the property inspector shows uSolutionList as having the correct
> keys, each key displays the correct contents. and I'm using Rev Studio
> 2.7.4.
>
> Thanks
> _______________________________________________
> use-revolution mailing list
> use-revolution at lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution
More information about the use-livecode
mailing list