Skip to main content
Participating Frequently
June 18, 2013
Answered

buttons in flash

  • June 18, 2013
  • 1 reply
  • 478 views

I am making a website in flash that has videos in it. Is there action script that can make a video inside a movie clip symbol pause? If I can do that I will not need so many frames.

This topic has been closed for replies.
Correct answer kglad

yes. how you do that depends on how you're handling the video and where your code is located. 

if you're doing that correctly you have an flvplayback component player your videos and your code is on the main timeline with that movieclip.  if the movieclip has instance name mc and the flvplayback's instance name is flv_pb, use:

mc.flv_pb.stop();

1 reply

kglad
Community Expert
kgladCommunity ExpertCorrect answer
Community Expert
June 18, 2013

yes. how you do that depends on how you're handling the video and where your code is located. 

if you're doing that correctly you have an flvplayback component player your videos and your code is on the main timeline with that movieclip.  if the movieclip has instance name mc and the flvplayback's instance name is flv_pb, use:

mc.flv_pb.stop();

Participating Frequently
June 18, 2013

Where do I put that actioscript?

kglad
Community Expert
Community Expert
June 18, 2013

again, on the timeline that contains mc.