How to make the FLV video file screen a button "play"?

HI -.

I have a FLV in a FLA (AS2) in the usual way (/ import/import of video files).

The imported video and plays well with the supplied skins.  However, I want to display online video with the same control to play as many YouTube videos - a play button in the center of the area of the video screen.  Right now I have control of the video player that I chose when importing, and they're down.  These SKIN control work, but I want to let the user click on the screen to start playback.

How this is done?

Thank you.

JL

create a 'play' button and place it on your flvplayback component and assign an instance name, for example bigPlay_btn.  You can then use:

{bigPlay_btn.onRelease = function ()}

This ._visible = false;

yourflvplaybackcomponent. Play();  Use the instance name of your component.

}

You'll probably also want to use the headphones for video, play/stop, so you can control the bigPlay_btn _visible property.

Tags: Adobe Animate

Similar Questions

  • How to make the smaller PDF files

    How to make smaller files

    You can do with Acrobat, but how much depends on the content of the PDF.

  • Pre-sales question: how to rotate the old video files

    Hello, I can't find my answer via google.

    I would like to run some very old phone videos taken vertically, but horizontally play.  There are still more some video files vertical I want to compress to a more manageable size.  I have an older version of the compressor that does not work with Yosemite.  The new version will manage the videos for me?

    Thank you.

    N °

    I would use a NLE like final cut PRO, QUickTime Player, or MPEG Streamclip to rotate the clips.

    Good luck.

    Russ

  • HOW TO MAKE THE LETTERS ON MY SCREEN POLICY MORE BIG - TRYING TO READ THE SCREEN BELOW IT BLUE LETTERS ARE TOO LIGHT AND TOO SMALL

    HOW CAN I MAKE THESE LETTERS MORE GRAND AS WELL ON MY DESKTOP SCREEN - THE LETTERS ON THIS BODY ARE TOO SMALL AND THE LIGHT BLUE IS DIFFICULT TO READ

    Hello

    If you are using Internet Explorer, press the Alt key to display the menu bar , and then select View/Text Size. Select a size that's comfortable for you.

    For the Office, you will need to change the ppp settings.

    Click on desktop and select Screen Resolution.

    In the next window, select Make text and other more or less important.

    In the next window, the Select one of the sizes in option or set a custom size to your needs.

    I hope this helps.

    Thank you for using Windows 7

    Ronnie Vernon MVP
  • How to make the folder of files of virtual folders structure

    LV 2013 sp1

    This is the presentation of a sample project, (please don't mind the horrible name)

    When I create a source distribution... no matter what I try settings, the preview is always like this:

    But I want that the folder structure of the building to become like the virtual folder structure. is it possible to do without moving them by hand in the tab file Explorer?

    When you go to Destination, you can see "+" and the symbol "-" at the bottom of the list box, you can use it to add folders. Then go to the Soource file and make parameter settings of the addition.

  • How to make the site fit any screen size?

    Hi all!

    I'm doing my site Web fits any size of screen (desktop, tablet, mobile)

    In Dreamweaver cs6, I go in file - multivision overview - media queries - a CSS file (on the scale of the site) and click on the settings by default and then find my CSS files for phone, Tablet and desktop. But it does not work for my site, my site does not meet the size of the desktop, tablet or mobile. Can someone please? Thank you.

    The main rule for a delicate design, but be flexible.

    This means no rigid dimensions, no absolute positioning and images that meet the width of their containers.

    What follows in general violates the rule of flexibility

    {#apDiv35}

    position: absolute;

    Width: 200px;

    height: 115px;

    z-index: 1;

    }

    This is just one example of your document on more than 40.

    If you want a leg upward about delicate design, take a look at http://www.dmxzone.com/go/21759/dmxzone-bootstrap/

  • How to make a smaller video file with movie maker live

    I have a file of 25 MB and need to reduce in size. I found a lot of help on line using old MM but not live MM.

    Hello

    The question you have posted is related to Windows live and will be well suited in the Windows live forum. Click on the link below.

    Windows Live Solution Center

    http://www.windowslivehelp.com/product.aspx?ProductID=5

  • How to make the 'visible' video clips (as in Adobe first CS 6) in the chronology of the AP 7 CC?

    Video clips appear as the solid colors in the timeline of the AP 7 dnuee, while AP CS6, you could actually see the clip as a 'photo' or a photo. Actually 'see' the clip in the timeline panel

    is very useful when editing.  Has that changed or did I miss something?  Help and thanks flavamarv

    Are your minimized tracks - that is to say at their minimum height by default? If Yes, then you need to increase the height of the track that pictures are not displayed on the small tracks.

    There are several ways to adjust the height of the track: a double-click, mouse wheel, click-and - drag the upper part of a video track or down audio track. You perform all these actions in the track "headers" to the left of the editing area. Learn more here on this page for help. Search for "the track display.

  • How to make the default "All Files" value in the "" Save as "box?"

    SaveAs.jpg

    Under Windows, the combination of keys short to save all = Ctrl + Shift + A

    Is that what you mean?

    Nancy O.

  • How to make the clip video symbols communicated once I drag and drop them in place

    Hello all and kglad, I have a problem with the actionscript code that was given to me which works very well but the only problem is that once I drag and drop the movie clip symbol it will not release the symbol in the case of sum I send you the code and someone please help this project is hot on my plate.

    See code below:

    f (subject2);

    function f(mc:MovieClip):Void {}
    mc.onPress = function() {}
    {if(!this.index)}
    This.index = 1;
    } else {}
    This.index ++;
    }
    var d: Number = this._parent.getNextHighestDepth ();
    this.swapDepths(d+1);
    var mcDup:MovieClip = this.duplicateMovieClip (this._name + this.index, d);
    this.startDrag ();
    f (mcDup);
    }
    mc.onRelease = function() {}
    this.stopDrag ();
    }
    }

    Seal55

    You must add:

    mc.onRelease = mc.onReleaseOutside = function() {}
    this.stopDrag ();
    }

    However, I find it odd that you set the anonymous functions inside another function that is a very bad strategy.

    Something more like this would be better, I think:

    function f(mc:MovieClip):Void {}
    mc.onPress = handlePress;
    mc.onRelease = handleRelease;

    mc.onReleaseOutside = handleRelease;
    }

    function handlePress() {}

    {if(!this.index)}
    This.index = 1;
    } else {}
    This.index ++;
    }
    var d: Number = this._parent.getNextHighestDepth ();
    this.swapDepths(d+1);
    var mcDup:MovieClip = this.duplicateMovieClip (this._name + this.index, d);
    this.startDrag ();
    f (mcDup);
    }

    }

    function handleRelease() {}

    this.stopDrag ();

    }

  • How to make the common control for all pages button in TABCONTROL?

    Hi all

    I use a TABCONTROL to my application. I'm going to STOP and REGISTER the control. I have to show this key to all pages in a TABCONTROL. How can I do?

    Kindly help me?...

    Hi srinivasan,.

    If you want to keep 'Save' and 'Stop' common, why would you keep the tab control? Your tab control takes all the space on the front panel? If so, you can have SAVE and STOP on other vi, and you can call this (MODAL) vi.

  • How to make the engine shut down on FSX before playing?

    Hello

    In flight simulator x, I would get the engine power off before playing the game. Whenever I start a new free flight, the engines are always lit. I have turned off. Please tell me how. My flight ends also in the middle of the flight and then a window appears and says, "this is a problem in FSX. Please understand that I have to do. Thank you.
    -Maryse

    Hello

    I suggest you to see link below and check if it helps.

    http://support.Microsoft.com/kb/179122

  • Captivate 7: how to make the fit-to-screen output

    Hello world

    During the long period, I was looking to make the published SWF file be able to display the project as it fits the screen. I was previously using Captivate 5.5. But now I use 7 Captivate. Anyone know how to do the same thing happen to the SWF file? I already had to make a change in the HTML script. That the same line of script does not exist in the published HTML file from Captivate 7.

    Please be aware that I don't know much about HTML scripts. So please be explicit with your help.

    Thanks in advance for any help you can provide.

    Hello

    In Captivate 7, when publishing to SWF format, choose the option titled "scalable HTML content.

    See you soon... Rick

  • How to make the icons of programs appears on the screen of windows 8

    Hi Thunderlight, you helped me with my last request and thank you again now I have another question that you might be able to help me with.  How to make the icons of programs appears on my screen of windows 8?  I had to download the debut8 when I had windows 8 so I would have the appearance of windows 7 until I have to use Windows 8.  And some of my icons of windows 7 on my windows 8, but not all.  How to go on my windows screen 8 tiles?   I now get more usage of windows 8 and use it more now so would like all my original programs that I had with windows 7 on my windows 8 as it is now tile.  I thank you and hope you can help.

    Hi Laura,

    In theory, when you switch from an earlier version of Windows to Windows 8 - as your installed applications are kept by the upgrade process, except those who are not compatible - you should find all your apps in Windows 8.

    If they all do not appear on your start screen follow these steps to pin them there:

    • [Win] + C
    • Search
    • Click anywhere in the top middle of the screen to hide the charm bar

    All installed applications are displayed. They do not necessarily correspond on a single screen to use the horizontal "lift" to bottom of the screen to move to the right / left

    • Right-click on an application, you want to pin to the start screen
    • Click on Pin to Start at the bottom left of the screen

    You are finished. A mosaic of this application is available on the start screen.

    If there is an application, you are sure is installed on your PC and you don't think through the steps made me know - there will be more complex...

    If you install a new application under Windows 8 the corresponding tile is automatically added to your start screen.

    Hope this helps

    See you soon

    LZ.

  • How can I make the smaller pdf file size?

    How can I make the smaller pdf file size?

    Hi vickyb,.

    Reducing the size of PDF file requires Acrobat (one way is by choosing File > save as > PDF of reduced size). If you do not have Acrobat, you can try it free for 30 days. See www.adobe.com/products/acrobat.html for more information.

    Best,

    Sara

Maybe you are looking for