Flash site not working fully in chrome and safari

Hi There,

I produced a website a year ago now, and up until now it has been working fine. My client brought to my attention today that there are suddenly problems when viewing the site in chrome, IE and safari. You cannot get past the landing page as the ‘enter’ button is not there despit the graphics being in the right place.

I have updated to flash player 10.1, and opened, published and uploaded the flash file in a newer version of flash to see whether that helped, but no go.

The website works fine in firefox though which is strange

link to website

AS3 on 1st frame:

stop();

addEventListener(Event.ENTER_FRAME, loaderFF);

function loaderFF(e:Event):void{
    var toLoad:Number = loaderInfo.bytesTotal;
    var loaded:Number = loaderInfo.bytesLoaded;
    var total:Number = loaded/toLoad;
    if(loaded == toLoad){
       removeEventListener(Event.ENTER_FRAME, loaderFF);
       gotoAndStop(2);
       } else {
           preloader_mc.preLoaderFill_mc.scaleX = total;
           preloader_mc.percent_txt.text = Math.floor(total*100) + "%";
           //preloader_mc.ofBytes_txt.text = loaded + "bytes";
           preloader_mc.totalBytes_txt.text = toLoad + "bytes";
           }
}

   

AS3 on 2nd frame:

enter_btn.addEventListener(MouseEvent.CLICK, enterPage);

function enterPage(event:MouseEvent):void{
    gotoAndStop(3);
}

If anyone can offer any advice, I would be so grateful!

Best,