ancora non funziona, ti posto il codice
sul frame1 del movie principale ho:
-------------------------------------------------
function carica(nome, lev) {
_root.attachMovie("keep", nome, lev);
_root[nome].loadMovie("swf/"+nome+".swf");
}
-------------------------------------------------
che viene chiamata da 4 clip sempre sul movie principale (l'1 nella chimata della funz. carica diventa 2,3,4 a senonda del clpi che chiama la funz.:
-------------------------------------------------
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
_root.carica("profilo", 1);
}
}
-------------------------------------------------
sui SWF da caricare c'è il clip cui è associato quello che mi hai mandato:
-----------------------------------
onClipEvent (mouseMove) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
sopra = true;
} else {
sopra = false;
}
}
onClipEvent (mouseDown) {
if (sopra) {
this.swapDepths(1000);
}
}
------------------------------------
che ne dici?

Rispondi quotando