Return to Snippet

Revision: 5110
at February 12, 2008 08:38 by Wiederkehr


Updated Code
public function hideElement():Void{
	ZigoEngine.doTween( this, '_alpha', [ 0 ], 1, "easeOutExpo", 0, {scope:this, func:'removeElement'});
} // END hideElement()
public function removeElement():Void{
	this.removeMovieClip();
} // END removeElement()

Revision: 5109
at February 12, 2008 08:38 by Wiederkehr


Updated Code
public function hideElement():Void{
	ZigoEngine.doTween( this, '_alpha', [ 0 ], 1, "easeOutExpo", pIndex*0.1, {scope:this, func:'removeElement'});
} // END hideElement()
public function removeElement():Void{
	this.removeMovieClip();
} // END removeElement()

Revision: 5108
at February 12, 2008 08:38 by Wiederkehr


Updated Code
public function hideElement():Void{
	ZigoEngine.doTween( containerBox, '_alpha', [ 0 ], 1, "easeOutExpo", pIndex*0.1, {scope:this, func:'removeElement'});
} // END hideElement()
public function removeElement():Void{
	this.removeMovieClip();
} // END removeElement()

Revision: 5107
at February 12, 2008 08:35 by Wiederkehr


Initial Code
public function hideElement():Void{
		ZigoEngine.doTween( containerBox, '_alpha', [ 0 ], 1, "easeOutExpo", pIndex*0.1, {scope:this, func:'removeElement'});
	} // END hideElement()
	public function removeElement():Void{
		this.removeMovieClip();
	} // END removeElement()

Initial URL


Initial Description


Initial Title
AS2: Fade and Remove a target MC with Fuse

Initial Tags
flash

Initial Language
ActionScript