Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

buttons in flash

Community Beginner ,
Jun 18, 2013 Jun 18, 2013

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.

TOPICS
ActionScript
442
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jun 18, 2013 Jun 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();

Translate
Community Expert ,
Jun 18, 2013 Jun 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();

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jun 18, 2013 Jun 18, 2013

Where do I put that actioscript?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 18, 2013 Jun 18, 2013
LATEST

again, on the timeline that contains mc.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines