|
-
Please help turn AS2 Smoke into AS3 smoke??
hi,
I found a great smoke tutorial here: www.pixelhivedesign.com
I have been trying to turn this actionscript 2 into actionscript 3... is that possible?
// ------------------------------------------------
// Realistic Smoke Effect - www.pixelhivedesign.com
// ------------------------------------------------
fadeSpeed = 1; // Smoke fade speed.
floatUpSpeed = 2; // Smoke float up speed.
// Every frame attach a puff of smoke.
this.onEnterFrame = function(){
// Get next available depth.
d = this.getNextHighestDepth();
// Attach a puff of smoke.
aPuff = attachMovie('aPuff','aPuff'+d,d);
// Set initial scale to 10%.
aPuff._xscale = aPuff._yscale = 10;
// Put puff where the mouse is. (add small random)
aPuff._x = Math.random() * 5;
// Randomizes the starting animation for realism.
aPuff.gotoAndPlay(Math.round(Math.random()*20));
// Smoke will animate each frame.
aPuff.onEnterFrame = function(){
// Scale smoke up.
this._xscale = this._yscale += fadeSpeed;
// Fade smoke.
this._alpha -= fadeSpeed;
// Smoke floating up.
this._y -= floatUpSpeed;
// When smoke is 100% scale, remove it.
if(this._xscale >= 100){
this.removeMovieClip();
}
}
}
Can anybody help me? at the moment im getting lots of access of undefined movie problems and it also doesnt like Attachmovie...
Any help would be brilliant, Thanks very much!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|