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!
new smoke tutorial in as3
hy
i don't have an answer to your question but i've been lookin for some smoke myself and didnt find one in as3 until......
http://laclic.net/tutorial/flash/152...realistic.html
:)
p.s.: first piece of code goes into a class file. second piece in main timeline. third piece if yu want to randomly change the smoke's color. worked for me...