probabilmente e' un problema di percorsi ma![]()
![]()
sullo stage ho:
mc "menu" che contiene mc "fumetti" che al suo interno contiene 2 mc:
mc "fumetti2" (la scritta fumetti)
mc "interno"
all'interno del mc fumetti c'e' l'mc "interno" a cui associo:
onClipEvent (mouseMove) {
if (!premuto) {
if (this.hitTest(_root._xmouse, _root._ymouse, true) && !aperto) {
if (_currentframe>(_totalframes/2)) {
gotoAndPlay (_totalframes-_currentframe);
} else {
qui prendo il nome del mc fumetti e dell'mc fumetti2 che e'la scritta FUmetti del menu
image = ""+ _parent._name + "2";
image1 = ""+ _parent._name + "";
dovrei dirgli di far partire l'mc fumetti 2 che contiene la scritta del menu
_root.menu.image1.image.play();
percorso dovrebbe risultare _root.menu.fumetti.fumetti2.play() MA NON PARTE!!! trace(image1)
trace(image);
play ();
}
aperto = true;
} else if (!this.hitTest(_root._xmouse, _root._ymouse, true) && aperto) {
if (_currentframe<(_totalframes/2)) {
gotoAndPlay (_totalframes-_currentframe);
} else {
play ();
}
aperto = false;
}
}
}
onClipEvent (mouseDown) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
gotoAndStop (11);
_root.comandi(_parent._name);
premuto = true;
}
}
per avere le idde piu' chiare --> qui
grazie a tutti...![]()

Rispondi quotando