07-10-2005, 14:13
|
|
מנהל פורום פלאש
|
|
חבר מתאריך: 04.03.05
הודעות: 5,834
|
|
במקרה של הקוד שלי זה על מוביקליפ, אז שים את הקוד הזה על המוביקליפ:
קוד:
onClipEvent (load) { num = 10 fps = 12
militimer = num*fps
}
onClipEvent (enterFrame) {
if (!_root.timer == 0) {
militimer--
}
else {
_root.nextScene()
}
_root.timer = Math.round(militimer/fps)
}
זה עם קוד למעבר לסצנה הבאה, או שאם זה לא עובד אז הנה קוד שילך ויינגן את הפריים האחרון באותה סצנה ואז זה יעבור אוטומטית לסצנה הבאה:
קוד:
onClipEvent (load) { num = 10 fps = 12
militimer = num*fps
}
onClipEvent (enterFrame) {
if (!_root.timer == 0) {
militimer--
}
else {
_root.gotoAndPlay(_root._totalframes)
}
_root.timer = Math.round(militimer/fps)
}
|