So, I figured the movie clip scaling out. Obviously the new method to use is this.getDisplayObject(). What threw me off was that the variable is named differently now and the value u assign must also be different. So, if you want to be able to scale a movie clip, do the following.

var av=this.getDisplayObject();
av.scaleX=1.0;// or .5 or 1.5 or anywhere in between
av.scaleY=1.0;

Reply via email to