cmcginnis
05-17-2004, 03:27 PM
I'm currently upgrading my LPS 1.0 application to LPS 2.1.2 and havent found anything in the release notes about how you handle the movieClipRef property that used to be available for views.
This is what I currently have:
<view name="some_color" resource="colorbox.swf">
<method name="applyColor" args="someRGB">
var thisClass = this.parent;
this.colorControl=new Color(this.movieClipRef);
this.colorControl.setRGB(someRGB);
</method>
</view>
I am currently getting the following error in the debug window:
reference to undefined property 'movieClipRef'
Am I doind this correctly or is there a better way to do this?
Thanks
This is what I currently have:
<view name="some_color" resource="colorbox.swf">
<method name="applyColor" args="someRGB">
var thisClass = this.parent;
this.colorControl=new Color(this.movieClipRef);
this.colorControl.setRGB(someRGB);
</method>
</view>
I am currently getting the following error in the debug window:
reference to undefined property 'movieClipRef'
Am I doind this correctly or is there a better way to do this?
Thanks