1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| stop();
accueil.addEventListener(MouseEvent.CLICK, showimage1);
function showimage1(event :MouseEvent):void {
gotoAndStop("Accueil");
}
cd.addEventListener(MouseEvent.CLICK, showimage2);
function showimage2(event :MouseEvent):void {
gotoAndStop("CDA");
}
/*cdb.addEventListener(MouseEvent.CLICK, showimage22);
function showimage22(event :MouseEvent):void {
gotoAndStop("CDB");
}
cdc.addEventListener(MouseEvent.CLICK, showimage23);
function showimage23(event :MouseEvent):void {
gotoAndStop("CDC");
}*/
vinyls.addEventListener(MouseEvent.CLICK, showimage3);
function showimage3(event :MouseEvent):void {
gotoAndStop("Vinyls");
}
dvd.addEventListener(MouseEvent.CLICK, showimage4);
function showimage4(event :MouseEvent):void {
gotoAndStop("Dvd-Blueray");
}
usbkey.addEventListener(MouseEvent.CLICK, showimage5);
function showimage5(event :MouseEvent):void {
gotoAndStop("UsbKey");
}
gabarits.addEventListener(MouseEvent.CLICK, showimage6);
function showimage6(event :MouseEvent):void {
gotoAndStop("Gabarits");
}
contact.addEventListener(MouseEvent.CLICK, showimage7);
function showimage7(event :MouseEvent):void {
gotoAndStop("Contact");
} |