Re: [Flashcoders] Problem with LocalConnection?

2006-02-24 Thread Dave Mennenoh
Thanks Johannes. Any thoughts on how 'dynamic' could've been removed from the class file? My client isn't someone who would've done that on their own. I wonder - is there a 3rd party LC object that he maybe downloaded? I just don't see how this could happen otherwise. Dave -

[Flashcoders] Problem with LocalConnection?

2006-02-23 Thread Dave Mennenoh
I posted this question in macromedia.flash.actionscript but haven't gotten a response... I figure it most be something simple - I just don't know what it is... I am using a LocalConnection object to communicate between two swf's on the same page. Works great. Sent .fla to client - he made a

Re: [Flashcoders] Problem with LocalConnection?

2006-02-23 Thread Johannes Nel
i would imagine that the lc class would be declared dynamic, but maybe it ain't on his machine. anyway check if this solves your problem var receiving_lc:LocalConnection = new LocalConnection(); receiving_lc[showpic] = function (goWhere:String) { gotoAndPlay(goWhere); }; On 2/23/06, Dave