> > Director's value() function is tripped up by
> > certain list content and may not be able to rebuild a list saved as a
> > string.
>
> Have you got an example of such content? It would be nice to be aware of.
-- Welcome to Director --
tList = [#name: VOID,#age: VOID]
put tList
-- [#name: <Void>, #age: <Void>]
tString = string( tList )
put tString
-- "[#name: <Void>, #age: <Void>]"
fList = value( tString )
put fList
-- <Void>
The docs for vList at updatestage describe the conditions where value()
fails. Also, value() can be slow on a large list/string - if speed is an
issue.
HTH,
-Sean.
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list,
email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo. Thanks!]