flash masking yscale
flash masking yscale
Out of context: Reply #1
- Started
- Last post
- 8 Responses
- unfittoprint0
u could use the following function to stretch the square:
//AS inside your square movie
MC.changeHeight = function(targetH){
this.movieH=this._height
this.movieH+= (targetH-this.movieH)/4;
this._height = this.movieH;
}MC.scale = function(targetH){
clearInterval(this.heightLoop);
this.heightLoop= setInterval(this, "changeHeight", 30, targetH)
}//initial scale
MC._height=0//call method outside movie
MC.scale(200);