Re: [F-Script-talk] embedded question
Brought to you by:
pmougin
From: Felix F. <fe...@gm...> - 2005-05-02 08:47:09
|
> > On May 1, 2005, at 7:09 PM, ackerman wrote: > > i am using the fscript palette to put a fscript view on my apps main > > window. > > when i do a 'sys browse' in it, in the left column i see 'sys = <an > > instance of System>'. > > Where are the objects of my program? shouldn't i see them there? > > i forgot to mention that i can use 'select view' to click on an object > in my gui and see its attributes. > but what i was interested in is a list of all the objects in my program > -- not just gui objects that i can see in the interface. You can create an FSInterpreter-object and set objects via the setObject:forIdentifier: method. Something like: interpreter = [[FSInterpreter alloc] init] [interpreter setObject: myImportantObject forIdentifier: @"obj1"]; ... [interpreter browse]; now you should see "obj1" in the left column. HTH, felix -- . +++ GMX - die erste Adresse für Mail, Message, More +++ 10 GB Mailbox, 100 FreeSMS http://www.gmx.net/de/go/topmail |