Flash How to?
Flash How to?
Out of context: Reply #3
- Started
- Last post
- 5 Responses
- Bickers0
Play around with the following code:
onClipEvent (load) {
endXscale = 51;
endYscale = 51;}
onClipEvent (enterFrame) {
zoomX = (endXscale-this._xscale)/8;
this._xscale += zoomX;
zoomY = (endYscale-this._yscale)/8;
this._yscale += zoomY;}
Your find lots of tutorials at places like actionscript.org if you have any questions email me.
good luck
J