home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
404 Jogos
/
CLJG.iso
/
Puzzle
/
filler.swf
/
scripts
/
filler_kongSplash.as
< prev
next >
Wrap
Text File
|
2008-09-02
|
708b
|
32 lines
package
{
import flash.utils.ByteArray;
import mx.core.MovieClipLoaderAsset;
public class filler_kongSplash extends MovieClipLoaderAsset
{
private static var bytes:ByteArray = null;
public var dataClass:Class;
public function filler_kongSplash()
{
dataClass = filler_kongSplash_dataClass;
super();
initialWidth = 6262 / 20;
initialHeight = 4528 / 20;
}
override public function get movieClipData() : ByteArray
{
if(bytes == null)
{
bytes = ByteArray(new dataClass());
}
return bytes;
}
}
}