хм, ну типа в первом кадре
Код:
stop()
var total = this.getBytesTotal()
this.onEnterFrame = function(){
var loaded = this.getBytesLoaded()
var howManyLoadedYet = Math.round((loaded / total)*100)
howManyLoadedYet > 99 ? reaction() : null
}
function reaction(){
delete _root.onEnterFrame
trace("Here we go!")
}