Hi,
as explained on the title,
i’ve put simple preloader on frame 1.
since then i get an 1009 error message.
I debugged the file and it seems like it is referring to ‘franklin_button’
but this is the button on the stage.
i’ve checked the instance name thousand times and it is correct name.
yet without the preloader, the whole thing works find without a problem.
I do not see where it should have gone wrong. Please help!
frame 1(preloader script)
stop();
this.loaderInfo.addEventListener(ProgressEvent.PROGRESS,checkLoadProgress);
function checkLoadProgress(event:ProgressEvent):void {
var progressPercentComplete:Number=(event.bytesLoaded / event.bytesTotal)*100;
loaded_txt.text=String(Math.floor(progressPercentComplete))+" %";
if (progressPercentComplete==100) {
this.loaderInfo.removeEventListener(ProgressEvent.PROGRESS,checkLoadProgress);
play();
}
}
frame 2(main script)
stop();
var franklin:franklin_descprtion = new franklin_descprtion();
var tour:tour_d = new tour_d();
var clock:clock_d = new clock_d();
var identity:identity_d = new identity_d();
var buio:buio_d = new buio_d();
this.franklin_button.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler);
function mouseOverHandler(event:MouseEvent):void {
this.franklin.x=264.6;
this.franklin.y=36.6;
addChild(franklin);
}
this.franklin_button.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler);
function mouseOutHandler(event:MouseEvent):void {
this.removeChild(franklin);
}
this.franklin_button.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
var jscommand1:String=“window.open(‘http://www.0303pm.net/motion/frank.mov’,‘win’,'height=350,width=300,toolbar=no,scrollbars=yes’);”;
var url1:URLRequest=new URLRequest(“javascript:”+jscommand1+" void(0);");
navigateToURL(url1, “_blank”);
}
this.identity_button.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler_1);
function mouseOverHandler_1(event:MouseEvent):void {
this.identity.x=196.9;
this.identity.y=91.6;
this.addChild(this.identity);
}
this.identity_button.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler_1);
function mouseOutHandler_1(event:MouseEvent):void {
this.removeChild(this.identity);
}
this.identity_button.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler_1);
function mouseDownHandler_1(event:MouseEvent):void {
var jscommand1:String=“window.open(‘http://www.0303pm.net/motion/identity.mov’,‘win’,'height=350,width=300,toolbar=no,scrollbars=yes’);”;
var url1:URLRequest=new URLRequest(“javascript:”+jscommand1+" void(0);");
navigateToURL(url1, “_blank”);
}
this.buio_button.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler_2);
function mouseOverHandler_2(event:MouseEvent):void {
this.buio.x=558.5;
this.buio.y=314.6;
this.addChild(this.buio);
}
this.buio_button.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler_2);
function mouseOutHandler_2(event:MouseEvent):void {
this.removeChild(this.buio);
}
this.buio_button.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler_2);
function mouseDownHandler_2(event:MouseEvent):void {
var jscommand1:String=“window.open(‘http://www.0303pm.net/motion/buio.avi’,‘win’,'height=350,width=300,toolbar=no,scrollbars=yes’);”;
var url1:URLRequest=new URLRequest(“javascript:”+jscommand1+" void(0);");
navigateToURL(url1, “_blank”);
}
this.tour_button.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler_3);
function mouseOverHandler_3(event:MouseEvent):void {
this.tour.x=212.5;
this.tour.y=359;
this.addChild(this.tour);
}
this.tour_button.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler_3);
function mouseOutHandler_3(event:MouseEvent):void {
this.removeChild(this.tour);
}
this.tour_button.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler_3);
function mouseDownHandler_3(event:MouseEvent):void {
var jscommand:String=“window.open(‘http://www.0303pm.net/motion/tour.avi’,‘win’,'height=350,width=300,toolbar=no,scrollbars=yes’);”;
var url:URLRequest=new URLRequest(“javascript:”+jscommand+" void(0);");
navigateToURL(url, “_blank”);
}
this.clock_button.addEventListener(MouseEvent.MOUSE_OVER, mouseOverHandler_4);
function mouseOverHandler_4(event:MouseEvent):void {
this.clock.x=985.8;
this.clock.y=270.5;
addChild(this.clock);
}
this.clock_button.addEventListener(MouseEvent.MOUSE_OUT, mouseOutHandler_4);
function mouseOutHandler_4(event:MouseEvent):void {
this.removeChild(this.clock);
}
this.clock_button.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler_4);
function mouseDownHandler_4(event:MouseEvent):void {
var jscommand1:String="window.open('http://www.0303pm.net/motion/clock.mov','win','height=350,width=300,toolbar=no,scrollbars=yes');";
var url1:URLRequest=new URLRequest("javascript:"+jscommand1+" void(0);");
navigateToURL(url1, "_blank");
}
p.s. i also tried to seperate them on different scenes but this doesn’t work either.