ragazzi io mi sto esaurendo è da 4 ore che non riesco a risolvere un problema con la navigazione...
metto direttamente l'actionscript cosi ci capiamo meglio:
on (release) {
gotoAndStop("products");
}
on (release) {
tellTarget ("subproducts") {
if (_currentframe==1) {
gotoAndPlay(2);
} else if (_currentframe==29) {
stop();
}
}
}
on (release) {
tellTarget ("menu") {
if (_currentframe==1) {
gotoAndPlay(2);
} else if (_currentframe==23) {
stop();
}
}
}
on (release) {
tellTarget ("subsections") {
if (_currentframe==1) {
stop();
} else if (_currentframe==29) {
gotoAndStop(1);
tellTarget ("subproducts") {
gotoAndPlay(24);
}
}
}
}
questo pulsante funziona...
il problema è che quando RIAPPLICO lo stesso AS su un altro bottone, cambiano i vari parametri (per la serie tutti i vari products diventano aboutus) il pulsante non funziona o meglio mi lascia quello che è caricato dentro SUBPRODUCTS (nel mio caso SUBABOUTUS)...
Premetto che tutti i vari PRODUCTS e SUBPRODUCTS sono stati cambiati in ABOUTUS e SUBABOUTUS...
quello è il pulsante che NON FUNZIONA e che lascia (una sorta di sottomenu IDENTICO a movieclip di SUBPRODUCTS) sul movie quello che carica in subaboutus
on (release) {
gotoAndStop("about us");
}
on (release) {
tellTarget ("subaboutus") {
if (_currentframe==1) {
gotoAndPlay(2);
} else if (_currentframe==29) {
stop();
}
}
}
on (release) {
tellTarget ("menu") {
if (_currentframe==1) {
gotoAndPlay(2);
} else if (_currentframe==23) {
stop();
}
}
}
on (release) {
tellTarget ("subsections") {
if (_currentframe==1) {
stop();
} else if (_currentframe==29) {
gotoAndStop(1);
tellTarget ("subproducts") {
gotoAndPlay(24);
}
}
}
}
SCUSATEMI PER IL POST KILOMETRICO, ma non riesco a trovare una soluzione... ho il cervello fuso...

Rispondi quotando