Return to Snippet

Revision: 15672
at July 13, 2009 09:58 by imperez


Updated Code
var bitmap:Bitmap;
for (var i:int = 0; i < this.numChildren; i++)
{
	bitmap = this.getChildAt(i) as Bitmap;
	if (bitmap) break;
}

Revision: 15671
at July 13, 2009 09:57 by imperez


Initial Code
var bitmap:Bitmap;
for (var i:int = 0; i < this.numChildren; i++)
{
	bitmap = this.getChildAt(i) as Bitmap;
	if (bitmap) break;
}

Initial URL


Initial Description


Initial Title
Search Displaylist for Bitmap (or any type of DisplayObject)

Initial Tags
textmate, actionscript, flash, 3

Initial Language
ActionScript 3