How to make a Poster Frame in a Flash 8 Video player

Hi to all,
I want to make a poster frame (a simple jpg)
to display before the FLV video plays.
So first the user to click the play button or on this poster frame.
The code below does exactly what I need, but it is in Flash CS4.
How could I do the same with Flash 8 Pro (ActionScript 2.0)?
Any help?
import fl.video.VideoEvent;
function showPosterFrame(event:Event):void {
    myPoster.visible = true;
function hidePosterFrame(event:Event):void {
    myPoster.visible = false;
function playMovie(event:MouseEvent):void {
    myVideo.play();
myPoster.addEventListener(MouseEvent.CLICK, playMovie);
myVideo.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, hidePosterFrame);
myVideo.addEventListener(VideoEvent.COMPLETE, showPosterFrame);
Iason_K

are you using an flvplayback component?

Similar Messages

  • How to make a Poster Frame to Flash 8 Video

    Hi to all,
    I want to make a poster frame (a simple jpg)
    to display before the FLV video plays.
    So first the user to click the play button or on this poster frame.
    The code below does exactly what I need, but it is in Flash CS4.
    How could I do the same with Flash 8 Pro (ActionScript 2.0)?
    Any help?
    import fl.video.VideoEvent;
    function showPosterFrame(event:Event):void {
        myPoster.visible = true;
    function hidePosterFrame(event:Event):void {
        myPoster.visible = false;
    function playMovie(event:MouseEvent):void {
        myVideo.play();
    myPoster.addEventListener(MouseEvent.CLICK, playMovie);
    myVideo.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, hidePosterFrame);
    myVideo.addEventListener(VideoEvent.COMPLETE, showPosterFrame);
    Iason_K

    are you using an flvplayback component?

  • How do I select the Poster Frame when exporting to video?

    PP CS6
    I cannot find how to select the frame that I want to appear as the Poster Frame in the exported video.
    I can select it I can change one by right clicking an imported video OK but not the sequence!
    I've been through every menu I can find & even Lynda.com training!
    I'm sure that there must be a way but I'm blowed if I can find it!!

    There are two common meanings for the phrase "poster frame":
    A standalone image on disk (JPG etc) which is displayed by a player before the video is loaded - commonly used by video player apps on websites (YouTube etc), InDesign and PDF files, etc. so the video asset doesn't have to be opened in order for the viewer to see what they're about to watch - although the image is normally captured from the video it doesn't have to be.
    An image resource embedded into the XMP/ID3 data of a video or audio file which can sometimes be shown in the player, but is normally set because it  appears as the thumbnail image when viewing the files in Finder or Windows Explorer. It's not part of the content stream, it's in the file header. In MP3 files it's used to store album artwork.
    You can create standalone JPEG images from PP using the camera icon below the monitor and can semi-automate the export of a still image alongside your video using presets in Adobe Media Encoder, but there's no option in PP (or via Adobe Media Encoder) to specify the embedded poster image in a rendered media file. Several third-party apps can do it, either during render (Compressor / Squeeze) or after the fact (Quicktime Pro), but support for these embedded resources depends on the wrapper for the video file.
    The ability to set a 'poster frame' in the clip bins in PP is solely there to help you organize your project assets visually - for example if the imported footage starts from black, or if you want to choose a frame where the slate is visible - but your choice has no effect on the sequences at export and isn't written back into the original footage.

  • How to make a transparent Frame

    How to make a transparent Frame , just like the .NET Frame ??

    Maybe searching the forum using the keywords "+transparent +frame" or "+transparent +jframe" would be a good place to start.

  • How to make a modal frame?

    Hello!
    My problem is quite simple, but I don't know how to make some MODAL frames (JFrame I mean). In my application, the user can open a same frame even if this frame is already opened and that's not really good.
    So, I want the user to close the frame before opening another one.
    Can anyone explain me how to do that?

    Generally your actionListener will be an internal class of your main frame class. Usually an anonymous internal class. That means it can act on variables in the frame (which is the sensible place to keep the flags).
    Something like:
    class Class1 extends JDesktop {
    boolean itsOpen = false;
    openAction.setActionListener(new ActionListener(){
      public void actionPerformed(ActionEvent e) {
        if(!itsOpen) {
           itsOpen = true;
           openAction.setEnabled(false);
           MyInternalFrame newFrame = new MyInternalFrame(Class1.this, ....);
           add(newFrame);
       });You do need some way for the internal frame to act on the variables in the main frame. There are various ways of achieving this.
    If we're dealing with a genuine InternalFrame there's a special InternalFrameListener (?) which allows your main frame to listen for the window closing. You can use this instead of hacking the dispose method.
    If you're main frame is a JDeskTop then you can use getDesktop() in your internal frame to access it, then cast the result to the real class of your desktop.
    Our you can simply add a pointer to your class1 to the contructor of your internal frame class.
    You could even get clever and create your own listener system.

  • How to make an internal frame a modal frame?

    aoa Friends i am trying to make a application using jframe with jdesktoppane and jinternal frame.is there any body who can guide me through that :
    how to make a jinternal frame a modal frame so that if a new jinternalform is opened than the previous one could not be accessed and if new one is closed then we can use that form.

    http://developer.java.sun.com/developer/JDCTechTips/2001/tt1220.html
    This is the example I used approach 2 to simulate a model frame.
    rykk

  • How to Make a Multi-Level Game in Flash 5

    I'm wanting to know, "How to Make a Multi-Level game with
    Flash 5"? EX: If I were to make a space game, where after reaching
    a score of 2000 points, the game pauses and displays the text
    "Stage 2", then continues or provides a button to make the game
    continue starting on stage 2. Any help with this question is
    grately appreciated.
    coolburn

    coolburn wrote:
    > I'm wanting to know, "How to Make a Multi-Level game
    with Flash 5"? EX: If I
    > were to make a space game, where after reaching a score
    of 2000 points, the
    > game pauses and displays the text "Stage 2", then
    continues or provides a
    > button to make the game continue starting on stage 2.
    Any help with this
    > question is grately appreciated.
    >
    > coolburn
    First off.. Flash 5 is like.. Ancient. Dude. Seriously, thats
    more than
    3 versions ago, and there have been major major changes
    since.
    However, I'll give it a try..
    First off, there has to be some kind of an event that kicks
    it off. I
    would build something into the score system that would
    trigger this.
    For example.
    function updateScore():Void {
    _root.stage.scoreboard.text = myNewScore;
    if (myNewScore > 2000) {
    jumpToNextLevel();
    So, somewhere in your game a variable keeps the score.. if
    your game
    runs the updateScore function once in a while, if it hits
    more than
    2000, it triggers a new function called jumpToNextLevel.
    In the jumpToNextLevel, you would have to do more functions
    like
    pauseTheGame(), and such..
    In general.. break it down to small pieces of what you want
    to do. Each
    function would do a series of things.. Then when your going
    though your
    game, you call each function as needed.
    Hope this helps
    -Bill

  • How to make the audio track independent from the video track?

    Can someone remind me how to make the audio track independent from the video track? My memory just went blank. Must be the age.
    Thanks

    Hi -
    Select the clip in the timeline.
    Type Command + L or go to the menu Modify > Link to toggle it off.
    MtD

  • How to connect flash video player(like youtube)  to live streaming video the programm like                             

    How to connect flash video player(like youtube) to live
    streaming video the programm like webcamXP?
    Or through a browser to look in a videoplayer video from
    other usual personal computer with the program for a video
    broadcasting from the web chamber.

    you can use google to search for tutorials on skinning the component.

  • How to set movie poster frame in final cut pro x

    Need some help on the following.
    Objective-using QT 7 or later, Current Compressor, FCP X or any other video editing tool, export a mp4 movie that displays a "poster frame" when the movie is inserted into iBook Author. When started by the user, the movie would begin to play from the first frame of the movie (not the poster frame).
    thx ra

    This sounds like a question for the iBooks Author forum. I think you set the poster frame in that application. How you make the video behave in the iBook is controlled in that application not in the editing application.

  • How do I set poster frame in Premiere Pro?

    Does anyone know how to set poster frame in Premiere Pro? Wasted hours trying to figure this out and reading all forum threads and sadly still to no avail. Any help much appreciated.

    thanks at JSS1138 for this and that appears to enable me to select 'set poster frame' (albeit it not on static images). However, when I export the video the (supposedly now) set poster frame still does not appear as the preview image. Any ideas on this?

  • How to make a still frame of iDVD menu?

    I want to make a DVD label and cover that copy the title menu page. How do I make a still frame that I could manipulate in iPhoto or Photoshop?
    Thanks
    Ashley

    I do this all the time. Turn off motion at a point you like.
    Go into the Applications folder. Find the Utilities folder. Open it. Find Grab. Double-click on it. Go into the Menu, click on Capture and select Selection. Now, drag your cursor across the menu and release. Name and save the image (to your desktop?).
    Open in Photoshop (or Elements). Crop to 4.75 x 4.75 inches for Apple's CD case. Crop to 5.125 x 7.25 inches for DVD case. Print and insert.
    Not exactly "easy," but it works for me.

  • How to make picture inside frame leaving bits of the picture out?

    Hey
    Sorry for the cryptical topic name. What i would like to do is use a frame with a picture so that the part of the picture that is inside the frame is visible and the part that is out of frame is not visible... Can somebody please assist me in accomplishing this? i have the frame and the picture...
    Best regards
    Jesper Pedersen

    Thank you very much, that helped a lot! One last thing... Now that I have made this frame with picture, how do I import it into an .indd document? I have tried making a new photoshop document with transparency and dimensions that fit the image, but how do I copy the frame+picture into the new document? I am having trouble selecting both the frame and the picture...

  • Can Anyone give me a step by step on how to create a poster frame?

    I am trying to create a poster frame for a video I edited with Final Cut Express HD. I have read all kinds of topics but they seem complicated. Does anyone know a simple way of creating a poster frame ?
    Thanks!

    QDigital wrote:
    I am trying to create a poster frame for a video I edited with Final Cut Express HD. I have read all kinds of topics but they seem complicated. Does anyone know a simple way of creating a poster frame ?
    Thanks!
    Poster frame can mean a few things.
    More info please on what exactly you mean.
    Al

  • How to Make iPhone Ringtone From DVD Music/Music/Video?

    People want to show their individuality anytime and anywhere with their inimitable hairstyle, clothing, and other things. Your phone's ringtone is also really important to show your difference from others. So how to make your own unique ringtone for your incoming calls, clock alarms, clock timer becomes a really important thing.
    Today I will show you how to make your own iPhone ringtones from your DVD/video/music. Someone will say that you can buy them on itunes. Yes, everybody can buy it. It is not unique and special. Let's make our own iPhone ringtone together.
    Things you need:
    1. DVD/video/audio files that contains the music you want
    2.http://www.aiseesoft.com/iphone-ringtone-maker.htmliPhone Ringtone Maker
    3. Computer(Windows/Mac)
    http://farm3.static.flickr.com/2786/4153313698_c1e11d1941.jpg
    Step 1: Load File/DVD
    Load your video/audio files or DVD to this iPhone Ringtone Maker
    Step 2: Choose music
    You need to choose which part you want to convert as your iPhone ringtone or you want to make the whole files as your iPhone ringtone. Just drag the bar to set the begin point and end point
    Step 3: Pre-listening
    You can pre-listening the ringtone, if you do not like it you can adjust the length of your ringtone.
    Step 4: Make Ringtone
    After you have done all the tings above, you can click “Generate” button to start the conversion.
    Soon you will get your own ringtone.
    Tips:
    1. if you want to put your ringtone directly to your iPhone, please check the box before “import to iPhone”.
    2. if you want to manage your ringtone, you can click “manage ringtone” button to do it easily.
    For Mac users, you can use
    http://www.aiseesoft.com/iphone-ringtone-maker-for-mac.htmliPhone Ringtone Maker for Mac to do this easily with the same operation as windows one.
    http://farm3.static.flickr.com/2531/4153313838_7da8c360f3.jpg
    To help you to make your iPhone and iPod more enjoyable here I also recommend you this
    http://www.aiseesoft.com/dvd-to-ipod-converter.htmlDVD to iPod Converter,
    http://www.aiseesoft.com/dvd-to-iphone-converter.htmlDVD to iPhone Converter and http://www.aiseesoft.com/ipod-transfer.htmliPod Transfer

    Removed post. Banned user due to spamming.

Maybe you are looking for

  • Which 10.5.3 update to install

    Hi, There's a 420MB update and a 536MB combo update. Can someone advise what's the difference and which one I should install? Oh, BTW there's also a 198MB from Software Update. Under what circumstances are is each of these to be installed? Thanks. Ro

  • Emailing PO script to both Purchasing Group and Vendor

    Hello All, Is there a way to email PO SAP script to both Purchasing Group and Vendor? i searched the form and endup with no luck. Regards, Sree

  • Advance to Supplier and Advance from Customer

    Hi, I like to know what is procedure to import Advance to Supplier and Advance from Customer in SAP B1 as a Opening through DTW Tool. Which template to use for this type of transaction? What is Impact of Advance to Supplier and Advance from Customer

  • Problem while downloadind data from ALV in excel format.

    Hi Experts, I have developed one ALV Report. it have 53 columns. when i tried to download it in excel format using standard functionality, all columns are not coming in one line i.e 50 cloumns in one line and rest columns to the next line. For Exampl

  • I can't install printers in macbook air

    I had to reinstall Maverick, OS X 10.9.1, because my macbook air didn't work, so when I wanted to add the printers it didn't work. It didn't find the drivers and software. Who can help me?