home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Neil's C++ Stuff
/
2016-02-neilstuff-weebly.iso
/
apps
/
audioPlayer2.swf
/
scripts
/
__Packages
/
Loading.as
< prev
next >
Wrap
Text File
|
2016-02-05
|
404b
|
19 lines
class Loading extends MovieClip
{
function Loading()
{
super();
this.bar_mc._width = 0;
}
function update(loaded)
{
this.bar_mc._width = Math.round(loaded * this.track_mc._width);
}
function resize(newWidth)
{
var _loc2_ = newWidth / this.track_mc._width;
this.track_mc._width = newWidth;
this.bar_mc._width *= _loc2_;
}
}