Re: [F-Script-talk] Working out where FSInterpreter is
Brought to you by:
pmougin
From: Philippe M. <pm...@ac...> - 2006-09-01 22:19:52
|
Le 1 sept. 06 =E0 19:11, Tim McDonald a =E9crit : > Hi > > I'm playing around with f-script and it look super useful but I've > run into a problem. > > I've inserted a nice flashy FSInterpreterView into my app using the > IB paIette. However, i'd like to send some commands to the > FSInterpreter associated with this view from my objective-c code > (such as loading in certain objects). I know how to write the > commands but I can't seem to work out how to find the FSInterpreter > object I should send them to. Hi, You can get the interpreter associated with an interpreter view by =20 sending it the "interpreter" message. Example: FSInterpreter *myInterpreter =3D [myInterpreterView interpreter]; Philippe |