Video controls for placed SWF video

Hi all,
I placed a number SWF videos into my site (as I did not want to follow the embed HTML method) which has given me the desired effect I wished to achieve, the only problem is that the placed SWF videos do not come with a set of video controls (Play, Stop FFW etc)
Does anyone know if it is possible to achieve this, maybe by inserting some HTML, if so would anyone have an example of the code required.  If not I would happy to hear any alternative suggestions of how to include a video within your site that includes video control (without the need to host the video on YouTube etc)
Thanks in advance for any ideas
Shaun

Hi Shaun,
I suppose that Adobe Flash Pro forum guys can help you
http://forums.adobe.com/community/flash
Best Regards
TaikaJim

Similar Messages

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • Controller skins for multimedia (swf) video -how to add?

    My version of Acrobat Pro 9 does not have controller skins for swf files added with the Tools > Multimedia > Flash menu. But in watching AdobeTV - Kelly McCathran "A PDF Can Do That" video, she is using Acrobat Pro v9 on a Macintosh and at 13:38 time there are controller options available in her setup. Is this because the video is FLV and it includes the controller skins? http://tv.adobe.com/#vi+f15383v1011
    Is it possible to add skins as a swf file is embedded in PDF to control playback?
    Is there a place to download basic controller skins?
    Can Javascript be used for playback controls of embedded swf files?
    My goal is to be able to pause a video and add a comment like in the "Commenting on Video in Acrobat" movie at AdobeTV - http://tv.adobe.com/#vi+f15361v1015. I want to do more testing of this feature on my Mac because the first time I could make comments but the time code/reference was not captured and therefore the comment could not jump back to the video frame. I hope this was just me and not an oversight for all Macintosh users.

    I doubt you'll get an answer here. We're all users, not Adobe employees. Acrobat 9 Pro is pretty new, and not many people are using the multimedia tools.
    You might have more luck on this website:
    http://www.acrobatusers.com/topics/rich-media
    They also have forums where Adobe employees sometimes answer questions.

  • Need picture style control for photo and video wit...

    Lumia 1020 stands for its excellent phone camera. But I am very disappointed with its JPG output. The whitle balance is always a big problem, then too much contrast and oversaturation. True, the photo is crystal sharp, but who needs a bad color photo with great sharpness?
    After Lumia Black, the DNG format comes. Now I cannot shoot without it. So I just find the 1020 is really great, but the built-in processing destorys all.
    I don't know about other phone camera, but just look at the iphone's. Thanks to its great overall JPG output quality, keep much more details, so people love to use post-fx apps in their phone to make good-looking photos. Then 1020 for me, I just have to live with the DNGs instead of easy sharing.
    808 Pureview has all the picture style control funtion, even in video !!  Down the contrast sharpness and saturation, then the semi-CineStyle is coming! Look at the 1020's video sample, it is a shame.
    All I want to say is: Can you (I don't know to call Nokia or Microsoft) make some control opitions like 808 or just low down the over contrast/saturation/sharpness photo and video. I don't wanna see a such amazing sensor and lens camera like this terrible.

    In very general terms, the requirements for Video will exceed those for Photoshop (PS). If you are looking at PrPro CS5, then the video card WILL make a difference, and PS CS5 now takes advantage of the video card, than before.
    For PS, the minimum HDD setup would be a 2x system with physical (not partitions) HDD's. Video has more requirements in this area, and I would say that a 3x setup is the minimum. Do read Harm's linked article, as it is the best that I have ever run across.
    For the PS setup, just locate the Scratch Disks for PS on your extra HDD's, the ones with your Project and PrPro Scratch Disks.
    Enjoy the new computer, and welcome to the forum,
    Hunt

  • Video controls dissappear when swf is put on web

    I've got a simple SWF file that points to an flv on our
    website. When I test the file on my machine it plays fine, with the
    controls underneath. When I upload the swf to our website and play
    it from there the controls disappear.
    I've even tried publishing an html page that only has the SWF
    file on it and uploading that. Again, it plays fine when I open the
    html file from my machine, but as soon as it's on the website and I
    navigate to it, no controls. The video plays fine, but I would
    really like the controls to be there.

    Nevermind. I figured out what the problem was myself.
    Apparently when you use one of the default video control skins it
    makes a second .swf file that contains the controls, which has to
    be in the same directory or you can point to a URL where it's
    located.

  • Can you put Video Controls on an .flv video?

    I have an .flv file in my .fla file.  However, when I play the movie, it simply plays the movie along the timeline.  Is there a way to put video controls on this file?  Or do I need to use the videoPlayback option?
    If I do need to use the videoPlayback option, how do I make sure that the video always work, even if I move it to a different computer (because the references to the movie will change)?
    Thank you very much in advanced.
    -TitanVex

    Hi Ned,
    Thank you for your reply!
    I guess I mean that when I specify the path to my flv file and I export the swf file, the swf won't play the flv video if I move the swf file to another computer.  Does that make sense?
    Thank you for the answer though, I will use FLVPlayback!
    -TitanVex

  • CP5.5 - How do you get video controls on your inserted video?

    I have an AVI file I inserted onto a slide in CP5.5.
    How do I get controls on the embedded AVI file (converted using the Adoble media encoder) so that the person going through my CBT has control over watching the video?

    Technically, Captivate should be the video controls. You can allow certain functions for the viewer using the Skin Editor. If you want to be able to slide the playbar from beginning to end without encountering any other elements, just put the video into its own slide. 

  • Setting postertype for placed SWF

    HI
    I have a huge indd file with one placed SWF / page. Now I should toggle Play on Pageload checkbox on for every SWF and choose poster from the movie.
    I know that I can do that by selecting SWF files one by one and setting those two things manually, but would it be hard to make a script that would do that? It would be a life saver....
    I found the jacascript parameter MoviePosterTypes.FROM_MOVIE but I dont know how to use it... any help would be greatly appreciated....=)

    Hi Shaun,
    I suppose that Adobe Flash Pro forum guys can help you
    http://forums.adobe.com/community/flash
    Best Regards
    TaikaJim

  • Flash player controls (for live streaming video) frozen...

    Hello,
    Lion, Flash Player, and CNN's live-video player are not playing together nicely on our 2010 MBP 13". In fact, they're not playing.
    Have tried the latest suggested fix, which is to right click on the errant video stream, then disable hardware acceleration. Unfortunately, right clicking brings up a "frozen" settings box. None of the buttons can be clicked, not even cancel.
    Have accessed Flash Player through the Control Panel, but there is no switch there for hardware acceleration.
    Bottom line, am now unable to view live video content from CNN and others.
    Have tried uninstalling and reinstalling Flash. Have tried Safari, Firefox and Chrome. And am not a step closer to a solution. Was hopeful that today's install of Lion would set things right, but alas...
    Your suggestions greatly appreciated.

    About a half-hour after making the changes I outlined above, and long after I closed the active Safari window, noticed that my MBP was uncharacteristically hot. Extremely hot!
    Opened Activity Monitor and saw that Flash Player was still running (?) and using a tremendous amount of system resources. I then quit Safari altogether. Within moments, the heat began to subside.
    May be something you want to keep an eye on...

  • Video Controls For Multiple Videos

    I have managed to work out how to load various movies into a
    video container depending on what link is selected. Now, I would
    like to add a video controller at the top that will control
    whichever video has been selected to play. I would like to have a
    pause, play, rewind, fast forward, stop button, and progress bar.
    Here is an example of the code that I am using to play the
    movies in the container:
    on (release) {
    //load Movie Behavior
    if(this.demo == Number(this.demo)){
    loadMovieNum("demo.swf",this.demo);
    this.demo

    You have many ways of loading the play list data. Here is an
    example where the data is hard coded into an Array

  • Video controls for embedded video

    I recently put together a flv for a client and had it
    progressevly downloading. Which worked well, but he now wants it as
    an exe so i have embedded the video along the timeline, but he
    still wants to be able to control it.
    So can somebody point me to some decent looking controllers
    and some info on how to attach them to the video on the
    timeline.

    More than likely it's this one:
    C:\Program Files\Adobe\Adobe Captivate 8 x64\Gallery\FLVSkins\clearSkin1_left_playbar.png
    You probably cannot edit the buttons until the project is published as this is just a graphic. When it's published you can edit that graphic the script associated with the buttons.

  • Video Controls Shows but No Video

    I have a video that I uploaded and the controls show, but not
    the video. It has green lines going across the controls like it is
    loading, but it never comes up.
    Here is a link so You can see the issue:
    Link
    to Issue
    Thanks in advance for any help!

    Aghh... Yes I did, but when you said that it sparked a
    thought in my head that fixed it. I added the MIME type to IIS and
    it worked. Thank you!

  • Which is best video format for storage of video media files?

    Greetings, good folk and happy holidays!
    My question involves the conversion of physical video media, DVDs, video files, etc, and storage for use with multiple devices.
    Like many of you, I have video in many formats and in multiple places... DVDs, Blu-Ray, AVIs, MP4s, etc.  I want to convert them all to a usable format to use in conjunction with my Iphone, Apple TV, IPad, etc. and store in one place in an electronic "library." The problem is that there are countless formats they can be converted to, and not all formats look good on all devices. A video converted to Iphone format will be optimized for the smaller screen and may not look good on the iPad. And iPad converted video might not look good on larger TVs used with Apple TV.
    Was wondering if you folks would have opinons as to the best codecs, format and specs to convert video to that would look good on any device from iPhone to an iPad to a TV with Apple TV. 
    I'm not expecting Blu-Ray quality sharpness with a universal format when used with Apple TV, but something reasonable without artifacts would look fine.
    I'm using IM Too Video Converter Ultimate which has presets for many difference devices, but not sure which options will work best.
    Anyone else dealing with this?
    Thank you for your time.

    MPEG-4
    Make sure you don't infringe on any copyrights.

  • Video errors for 30g ipod video

    Can someone help me? I have a video file i converted to the proper format for my ipod and I was able to transfer it to the ipod, but when I try to play it on the ipod all I get is a black screen and no sound and after about 30 seconds it goes back to the menu.

    I think it might need to be converted again...
    If you used iTunes's option to "Convert to iPod" it might not have worked properly (iTunes is limited in the types of files it can work with). You might want to try Googling iPod Video Converter, downloading and installing a third party program, running the file through that, and then trying it on the iPod again.
    I've used Videora in the past and have had some decent results with it.
    CG

  • Free stock video foootage, for my home videos and to build my portfolio

    hello all who think they can help
    i am looking for free (being the most important word) video stock footage so that i can firstly build up my portfolio and to make my home movies better, no specific topics really just some websites where i can download for free and edit them, not going to distribute them to anyone or anything like that mainly for personal reasons. so if anyone can help whether it be a website or a cheap dvd i can buy or something like that would be helpful.
    kind regards
    adam mann

    Why not just generate a short story concept, shoot some video and use that to make a video. This will do four things for you:
    - You will gain an appreciation of what it takes to light and properly expose video.
    - You will learn how framing shots and the choices you make among those shots can be used to creatively tell a story.
    - You will gain technical awareness of the whole process of logging and capturing.
    - You will have something that is creatively yours for your portfolio rather than a rehash of someone else's work.
    x

Maybe you are looking for

  • SSO logout issue with APEX

    I am trying to resolve the logout URL issue with our APEX application configured as a partner application with SSO. The partner application name is SSO_APEX and the logout URL is defined in partner application as http://OID_Server:7777/pls/orasso/ora

  • Upgrade os 5 in my 8520 curve

    Till 2 days i m trying to upgrade my os 5 i tried to upgrade more than 5 time but it shows there is not any update. i install os 5 in my desktop , deleted wendor file and trying to uploader but it can't work. i m useing DM 5 and i don't have internet

  • Premium messaging mystery

    I received a $9.99 charge for premium messaging.  According to Verizon Wireless, my phone somehow signed up to receive MLB scores on a monthly basis (my phone is not actually receiving the service, and of course no one in my house signed up for it -

  • PDF Scrollbar and Browser Scroll Bar

    Hi, My application open a pdf inside the browser and because the pdf has more than one page I have to scroll down or up. My Issue is that, I have tow scroll bar one for PDF file and one for the Browser how i cancel or hide one of them. BR, Ali

  • Inappropriate mouse event coordinates in the WebKit of HTMLLoader/StageWebView

    Hi, We have a desktp application which incorporates an HTMLRichTextEditor (implemented in HTML/JS and loaded into AIR). We have run into a big problem with text selection though. It seems that the both the HTMLLoader and the StageWebView are passing