
21.11.2001, 18:11
|
|
Регистрация: Feb 2000
Адрес: +
Сообщений: 1,933
|
onClipEvent(load){
start=gettimer()
period=10000 //10 seconds *1000=10000ms
}
onClipEvent(enterFrame){
if(gettimer()-start>period){
_parent.action() //for example "play()"
removeMovieclip(this) \\sure you must attach this clip first...
}
}
__________________
***
|