quick flash help
- Started
- Last post
- 11 Responses
- sharkey
I have a flash file that's a banner
and I need it to play only three times.
I am to flusterd to think right now
any help would be great
need to send it to the client soonthanks
- subfactor0
if its in a movieclip, you could just put the clip down three times and the stop on the last one..
just make sure the lenght of the clip is the same on the timeline where you are repeating it three times or it wont work properly..
im sure there is some actionscript way to do this though
- unfittoprint0
if (count==3){
this.stop();
} else {
++count
}
- sharkey0
I put that on the last frame or first
- unfittoprint0
#1
- sharkey0
gracias mi amigo
works like a charm
- paulrand0
unfit knows everything
- unfittoprint0
and you have some very nice work
- sharkey0
thanks
- sharkey0
the movie stopos on the first fame is there a way to make it stop on the last frame?
- unfittoprint0
put on the last frame...
if (count==2){
this.stop();
} else {
++count
}
- sharkey0
sorry bro I just got it
thanks for all your help