It sounds like the first issue is to figure out how to get a handle on the 
DENG movieclip object. 

What happens when you debug.inspect the MCRef of the deng_view?
>       <method name="loadDoc" args="uri" >
>       <![CDATA[
           var mc =  deng_view.getMCRef();
           Debug.inspect( "deng_view movieclip", mc );

Another thing that can bite you here is to make sure that the view has
loaded the DENG movieclip before you try to talk to it.

One final issue you may want to consider: using the _lockroot movieclip
property may help DENG run better if it expects to be _root.

        var mc = this.getMCRef();
        //not sure if both are necessary here
        mc._lockroot = true;
        mc.onClipEvent = function(load) { this._lockroot = true };

I don't know too much about _lockroot but it may be better to avoid it if
possible. DENG integration will be nicer if it can talk directly to the
Laszlo runtime.

A
_______________________________________________
Laszlo-user mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-user

Reply via email to