Does anyone have a screen for b9? Also, b6 is easy. Don't use full power, bounce off the wood, hit two torches, bounce off the wall to hit the last and then bounce of the wood off the edge, hit the circle and then get lucky...
Hey, remember that some people are on macs or linux, and since macs and linux have Spaces, using Ctrl or Alt in conjunction with Arrow keys can be a pain in the ass.
How does this look?
import flash.events.ProgressEvent;
import flash.events.Event;
stop();
loaderInfo.addEventListener(ProgressEvent.PROGRESS,updateLoader);
loaderInfo.addEventListener(Event.COMPLETE,finishLoader);
function updateLoader(e:ProgressEvent):void{
{
var perc:Number = e.bytesLoaded / e.bytesTotal;
var s:String = Math.ceil(perc*100).toString()+"%";
percent.text = s
}
}
function finishLoader(e:Event):void{
gotoAndPlay(3);
}
Also, I moved the mp3 to an external file, which seems to have the effect of not being included in the loading. So if someone has a slow connection, it might not be loaded fully (its basically streaming). Any ideas? Maybe i should internalize the mp3 so it's preloaded as well?
Thanks for the wonderful comments! I'm working on a title screen, preloader, and stuff like that right now. Having a bit of trouble with the stupid Error #1010 and my Start button.
I really appreciate the positive comments :). I just started Actionscript today also.