|
|
 |
RE: FN-FORUM pause a flash movie
date posted 12th January 2002 16:51
just stick this on a movieclip, change the fps or pause_for variables to
your movie.
onClipEvent (load) {
_root.stop();
var count = 0;
var fps = 12;
var pause_for = 30;
var time = pause_for*fps;
}
onClipEvent (enterFrame) {
count++;
if (count>=time) {
_root.play();
}
}
hth
nick
http://www.ibme.co.uk (freelance site)
http://www.neofx.co.uk (company site)
-----Original Message-----
From: [EMAIL REMOVED]
[EMAIL REMOVED] Behalf Of technoir
Sent: 12 January 2002 14:50
To: [EMAIL REMOVED]
Subject: FN-FORUM pause a flash movie
does anyone know how to pause a flash movie inside the timeline for say 30
seconds then continue playing the remaining frames ?
============================================================
* Free listing for freelancers
* Free to advertise jobs
* Free jobs distribution service
* Free database of 5000 freelancers
Freelancers and Freelance Jobs:
http://www.freelancers.net
Forum FAQs:
http://freelancers.netrickery.com
To unsubscribe please email:
[EMAIL REMOVED]
If you have difficulties unsubscribing please email:
[EMAIL REMOVED]
|
 |
|