Ho scoperto che la funzione per bloccare timeline e mc:
on (release) {
stop();
_root.video7.stop();
}
è incompatibile con la funzione per bloccare la mc per un certo tempo messa sulla stessa timeline principale:
onClipEvent (load) {
_root.movie7.stop();
pausa = 2000;
ok = getTimer();
}
onClipEvent (enterFrame) {
if (getTimer()-ok>=pausa) {
_root.movie7.play();
}
}
come posso fare ???![]()
![]()
![]()
Ho provato a mettere nella timeline del mc la pausa scrivendo:
onClipEvent (load) {
_this.stop();
pausa = 2000;
ok = getTimer();
}
onClipEvent (enterFrame) {
if (getTimer()-ok>=pausa) {
_this.play();
}
}
ma non so se è giusto (ma credo di no perchè non si ferma![]()
Mi aiutate pleeaseee è urgente![]()
colors

Rispondi quotando