Adding Controls to .swf video

Hello,
I have lots of .swf video files from the past years, and recently have been using the flash video encoder in cs3 to create .flv that adds video controls.  I was wondering if there was a way to add video controls like slider, stop, pause, volume, etc.. to .swf video files.  I have searched for a .swf converter to .flv format but even though all the marketing says it can do it, none of the ones I have tried can do it.
Need help if you can provide some guidance.
Thanks so much
Rob

the converters you tried can't convert swf to flv or can't do it flawlessly?

Similar Messages

  • Adding controls to FLV video

    Hello
    I have a .flv file that I need to drop into a Flash file and
    export as a .swf. It needs controls (pause/play etc). I tried the
    tutorial in the help section, and it didn;t work. Does anyone out
    there know of a good tutorial for:
    - Creating a new Flash file
    - Adding my .flv
    - Adding controls funtionality
    - Exporting to a .swf for use on a web page
    Please keep in mind that I am a Flash novice.
    Thanks,
    -----------------S

    The help docs clearly explain how to do this using the media
    compnents - the fact that it din't work
    doesn't mean you won't be able to follow anyone else's
    tutorial. The devnet site is filled with very
    well written and specific flash video articles - just search
    - google is also your friend and search
    this forum - this has been asked/discussed several times.
    You want to search the help docs for the Media Display
    component.
    --> Adobe Certified Expert (ACE)
    --> www.mudbubble.com :: www.keyframer.com
    -->
    http://flashmx2004.com/forums/index.php?
    -->
    http://www.macromedia.com/devnet/flash/articles/animation_guide.html
    -->
    http://groups.google.com/advanced_group_search?q=group:*flash*&hl=en&lr=&ie=UTF-8&oe=UTF-8
    spdorsey wrote:
    > Hello
    >
    > I have a .flv file that I need to drop into a Flash file
    and export as a
    > .swf. It needs controls (pause/play etc). I tried the
    tutorial in the help
    > section, and it didn;t work. Does anyone out there know
    of a good tutorial for:
    >
    > - Creating a new Flash file
    > - Adding my .flv
    > - Adding controls funtionality
    > - Exporting to a .swf for use on a web page
    >
    > Please keep in mind that I am a Flash novice.
    >
    > Thanks,
    >
    > -----------------S
    >

  • How to control SWF Video using JavaScript?

    Hi,
    I'm developing a web page which will use Flash Videos. I need
    to control the video without using a typical skin. The current tool
    I'm using to convert my wmv to SWF FLV is Coffee Cup. A hex edit
    suggests this is a Version 8 SWF.
    I am trying to write some javascript to control which Frame
    is displayed. I have seen code such as movie.TGotoFrame(...); and
    movie.GotoFrame, movie.StopPlay() etc. Unfortunately I cannot seem
    to use these methods. Eventually I suspected that my SWF simply did
    not make these methods available and when I run my video in my web
    page a RightClick shows a Context Menu that has no Reverse,
    Forward, Back options. Other SWF videos do have these options
    (obviously). This seems to prove that nothing I could code would
    make the GotoFrame work (ie no Forward (by one frame) option in
    menu suggests it could never work from javascript).
    Some Questions
    Is there a tool to examine a SWF to see what methods are
    available to javascript control? (expose the API) and is there a
    setting required in the <object> setup to enable javascript
    interaction?
    Is there something about SWF V8 files that is the problem or
    is likely that the CoffeeCup Web Video Player can only make
    partially functioning SWF Videos?
    What is the difference between GotoFrame and TGotoFrame and
    have these perhaps been superceeded by something else (there is an
    Adobe page which suggests they are only available up to Version 5
    (not sure if that means Version 5 of SWF files or Version 5 of the
    FlashPlayer - to add to my confusion).
    I'm not currently a Flash type developer and have no tools to
    speak off and don't know ActionScript. I'm thinking of heading in
    the Flash direction but not sure how to move forward.
    Cheers
    Stuart

    Thanks Alex,
    quote:
    You need to learn to move forward :)
    I have a Greek friend who when I asked him how he was getting
    on with his dissertation project stated "in Greece we have a saying
    - every start is different".
    In this case my start is to dip a toe in the Flash water and
    not get scalded.
    Anyhow,
    One clarification from the CoffeeCup forum helped me to
    understand that my SWF used an external FLV and that may explain
    why the rightclick context menu did not have the more movie
    specific Back, Forward etc. Sounds plausible. So assume external
    FLV.
    quote:
    it is very easy to add a small script into the root timeline
    of your SWF file
    A little hand holding here would be appreciated. I have
    downloaded the Flex SDK. Can I use this free tool to do what you
    suggest? Using MXML and ActionScript. If so, a little bit more info
    would help.
    quote:
    That's all, it should work. Of course, you can tell me that
    your movie
    already has an onEnterFrame() eventhandler at the root
    timeline.
    What's a problem? Just create an empty movieclip and add this
    script
    into its frame 1 (it maybe the only frame). But do not forget
    to
    change "this.xxxx" to "_root.xxxx" within such script.
    Hhhmmm. A bit stumped. I've had a look at the SWF using
    FlashDig. I noticed what appears to be Assembly Language (Push,
    Pops, Jumps etc) and presumably in amongst all of that may be an
    onEnterFrame. Perhaps linked to a DefineFunction2 node.
    Unfortunately the SWF is very large (60K) and there is no
    search/find tool so that makes finding functions a bit harder than
    expected. Struggling a little with the concept of _root and Level0
    etc.
    I assume you are suggesting manually building a replacement
    SWF (empty movieclip?) if the onEventHandler happens to be used for
    something else. Presumably set/getVariables only interacts with
    this function so if it is 'booked' in my SWF I would be in a spot
    of bother with your suggested approach?
    I wonder if you are assuming I have some sort of Flash tool.
    Possibly like this one shown in this tutorial
    WebWasp
    Panorama tutorial
    Note. The panorama is actually close to what I eventually
    want to do except I intend to make a video of a scene by rotating
    clockwise by 360 degrees. Then add buttons onto the SWF (or DHTML)
    which communicates with the SWF to move forward or back through the
    video. Moving forward would be like a clockwise rotation and moving
    back would create anticlockwise rotation. This explains the need to
    GotoFrame (or similar). From that perspective I don't need to
    become a Flash guru (for now) and can't justify buying all the
    expensive flash tools for this one (apparently) simple task: Frame
    by Frame control of an external FLV via the SWF.
    Note. I've started using SWFObject. Might this library help?
    In summary.
    How do I add the onEnterFrame ActionScript sample (or
    something similar) into a SWF using only the Flex SDK command line
    tools or similar in order to control an external FLV?
    Cheers
    Stuart

  • 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

  • Swf video controls

    I have a swf video file that I put on a page on my website. I
    was wondering how I would assign play and stop buttons to it,
    instead of having the movie autoplay and loop.
    I am a newbie, so sorry if this is obvious.

    crjhunter wrote:
    > I have a swf video file that I put on a page on my
    website. I was wondering how
    > I would assign play and stop buttons to it, instead of
    having the movie
    > autoplay and loop.
    >
    > I am a newbie, so sorry if this is obvious.
    Well, SWF video is timeline based video so using basic
    play(); stop(); action
    targeting the main timeline will do just fine. Tho, if you
    are loading it in leve
    or movie clip holder than adjust the action accordingly.
    If MC Holder:
    mcHolder.stop(); mcHolder.play();
    if in level3 (example):
    _level3.stop(); _level3.play();
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How do you display a swf video / videos when you mouse over

    How do you display a swf video / videos when you mouse over, It'll be something like a pop up but just that it doesn't open in another windows but within the same window and will be like a pop up roll over image.

    Thank you for the reply.
    I've been putzing around with it and came across the 'SetEventHandler' object and thought I'd try and make that one work.
    Here's what I've got so far.
           <mx:SetEventHandler target="{turnAroundMovie}" name="handleMovieClip" handler="stopMovie()"/>
    And then my fuction.
       <mx:Script>
            <![CDATA[
                private function stopMovie():void{
                    turnAroundMovie.stop(); <!-- here's where I'm getting stuck -->
            ]]>
        </mx:Script>
    My first instinct was the simple stop(), but that didn't fly.  I even added a stopMovie frame in my .swf and tried a gotoAndStop('stopMovie'); but that didn't fly either.  And that's kind of where I'm stuck at.

  • How to insert .swf video into html & mute onclick

    I have a .swf file - a 20 sec vid with no player controls, just the video - made by someone else, so this is the only file type I have and can't seem to edit it.
    Any way to insert the .swf, and be able to mute the video? It's being used as a banner-type-thing and if people don't want to hear it, they should be able to mute it. I don't need play/pause/stop/etc. - just mute. So however it can be done, either on-click or as a button, would be great...
    so confused! this should be easy, no?
    thanks
    -jonboy

    Hi
    Unfortunately as you do not have the fla file that was used to create the swf, this cannot be done without turning of the sound on the users computer, which would probably annoy your user.
    The only other way is to purchase an swf de-compiler, and then recreate the fla with the mute button, this would naturally require you to use flash pro.
    PZ

  • After adding a flashfile .swf into a dreamweaver page and trying to run it, I get an error message related to Javascript

    after adding a flashfile .swf into a dreamweaver page and trying to run it, I get an error message related to Javascript
    I have no trouble viewing other websites with (most likely), flashfiles.
    Here is the the PopUp message:
    "Adobe-warning Adobe Flash PLayer has stopped a potentrially unsafe operation......"

    In newer versions of Flash Pro, you can export to HTML5 Canvas, that's probably what they're talking about: Flash Professional Help | Creating and publishing an HTML5 Canvas document
    .FLV and .SWF are Flash formats that won't show up on iOS (or an ever increasing number of other mobile devices). Mobile Flash was killed by Adobe a couple years ago, so the number of mobile devices that can see it is dwindling rapidly, don't use those formats if you want your viewers on mobile devices to see your content.

  • Controller skin for SWF video in dreamweaver CS3?

    Hi there,
    I have inserted a SWF video into my website, however right
    now it's playing automatically and i have no way of stopping and
    pausing my video... how can I add a skin controller to my SWF file?
    I know I can do it with FLVs, but I dunno how to do it in SWFs....
    THanks!
    cgbub

    I have managed to fathom it out.

  • Turning the page in a pdf from inside a swf video

    I am creating interactive PDFs from InDesign. On the first page of the pdf I have a swf video in which I would like to put a link or a button that would move you to page 2 of the pdf. Not another frame of the video or URL, but just the next page of the PDF. Is it possible to do this? And if so, how?

    You don't make it clear what you're using. A "SWF" is a Flash file, and a video is a video. A SWF can load and play a video, but "SWF video" means nothing.
    If you're talking about a SWF file created in Flash, then inside your SWF you will have to fire an ExternalInterface command using ActionScript:
    ExternalInterface.call(“eval”, “pageNum++”);
    If you're talking about a video file embedded in the PDF and using the default playback widget, then you can't do it.

  • Need Help with SWF Video Files

    Hello there. I'm experiencing a new problem with Presenter.
    I'm using WinXP, PowerPoint 2002 SP3, and the latest version of
    Presenter. I have a presentation that contains many video clips.
    I've converted them all to SWF files and have inserted them on each
    slide via the Slide Properties dialog box, and inserted
    corresponding "silences". However, when I publish my presentation
    locally, instead of showing the SWF video in the top right corner
    of the screen as it is supposed to do, I get a mirror image of the
    current slide on that small upper right window. It is like the
    presentation is embedding a copy of the slide where the video is
    supposed to be. This never used to happen, so I'm baffled. Any
    thoughts or suggestions would be greatly appreciated.

    You probably will be able to play most of those problem files by using this freeware: VLC
    If you want more information you would likely get more responses by posting in the Quicktime for MacOS forum:
    http://discussions.apple.com/forum.jspa?forumID=932

  • I need help with controlling two .swf's from third.

    Hi, thanks for reading!
    I need help with controlling two .swf's from third.
    I have a problem where I need to use a corporate designed
    .swf in a digital signage solution, but have been told by the legal
    department that it can not be modified in any way, I also can't
    have the source file yada yada. I pulled the .swfs from their
    website and I decompiled them to see what I was up against.
    The main swf that I need to control is HCIC.swf and the
    problem is it starts w/ a preloader, which after loading stops on a
    frame that requires user input (button press) on a play button,
    before the movie will proceed and play through.
    What I have done so far is to create a container swf,
    HCIC_container.swf that will act as Target for the HCIC.swf, and
    allow me to send actionscript to the file I'm not allowed to
    modify.
    I managed to get that done with the help of someone on
    another forum. It was my hope that the following script would just
    start HCIC.swf at a frame past the preloader and play button, and
    just play through.
    var container:MovieClip = createEmptyMovieClip("container",
    getNextHighestDepth());
    var mcLoader:MovieClipLoader = new MovieClipLoader();
    mcLoader.addListener(this);
    mcLoader.loadClip("MCIC.swf", container);
    function onLoadInit(mc:MovieClip) {
    mc.gotoAndPlay(14);
    But unfortunately it didn't solve my problem. Because there
    is a media-controller.swf, that is being loaded by HCIC.swf that
    has the controls including the play button to start HCIC.swf.
    Here's a link to a .zip file with all 3 .swf files, and all 3
    .fla files.
    http://www.axiscc.com/temp/HCIC.zip
    What I need to do is automatically start the HCIC.swf file
    bypassing the pre-loader and play button without editing it or the
    media-controller.swf in anyway. So all the scripting needs to be
    done in HCIC_container.swf.
    I know this is confusing, and its difficult to explain, but
    if you look at the files it should make sense.
    ActionScripting is far from my strong point, so I'm
    definitely over my head here.
    Thanks for your help.

    Got my solution on another forum.
    http://www.actionscript.org/forums/showthread.php3?t=146827

  • Embedded SWF video = slow loading page?

    Hello and good morning,
    I have recently created a website on DreamWeaver 8 with three
    SWF videos (not FLV but SWF) embedded on it. The videos are
    supposed to be set at "progressive download" but the page takes
    ages to load up, as if the browser was loading up the videos as it
    loads up the page itself.
    Any ideas? Thank you!

    Thanks, Hans
    I should have noted in my first post that this was through Firefox... But regarding  IE 8  (im using Windows 7 on my PC) it's slow from the very start and will sometimes skip, stutter and even completely stop half way through.
    The original animation test should be much quicker.. about 4 seconds.
    Im wondering if anyone else can verify this on their browser?
    Jeff

  • Added music track to video..entire screen is green and I cannot delete music track

    I added music track to video, inadvertently dropped outside of clip now entire area outside of track is green and I can't remove or delete music.

    i literally deleted the entire "Purchases" folder and restarted the phone. it recreated the folder (except without all our problem files) as soon as it powered back on.
    no idea what downloads refers to - i tried this process with that folder and it didn't change anything or solve the prob.
    as for the syncing of the playlist - i still don't think that would solve it. it seems like there is a discrepancy being created whenever a song is downloaded from the store, period. and as for deleting the stream files - no. I switched over to manual manage, deleted the files manually, but they simply recreated themselves as soon as i did another sync.
    It was indeed the purchases folder that needed reconciling.
    as a fun side note - i used phoneview to make a PDF of all my 60,000 texts from the previous 3 years, and then deleted them from my phone - saving myself like 10 gigs
    realizing now this could all seem like i'm some rep for the phoneview app. i swear i'm not hahahaha

  • Removing Flash Margins in Embedded SWF video

    We have embedded a SWF video on an html page and there are
    blank margins on the left and right side of the image, video. We
    used this code to embed the video. <object width="497"
    height="397">
    <param name="movie"
    value="Final_ani_Transportation.swf">
    <embed src="Final_ani_Transportation.swf" width="497"
    height="397"></embed>
    </object>
    Thanks

    Just curious...is the code you posted used to constrain the
    SWF to its proper size?
    <object width="497" height="397">
    <param name="movie"
    value="Final_ani_Transportation.swf">
    <embed src="Final_ani_Transportation.swf" width="497"
    height="397"></embed>
    </object>

Maybe you are looking for

  • ORA-31687 in  expdp

    Getting below error in Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production ORA-31626: job does not exist ORA-31687: error creating worker process  with worker id 1 ORA-31687: error creating worker process  with worker id 1 OR

  • Delta buffer query in RSRT for BI-IP (" infoprovider /!!1 infoprovider )

    Hello People, I have an input ready query over an aggregation level of a real time cube. Whenever the yellow request is closed and a new request is opened, the input ready query does not show the old data. And sometimes it shows incorrect data. We fo

  • Oracle E-Business 12.1.3/11.2.0.3 Stats Gathering

    Hi forum I am running schema stats (weekly) using the Gather Schema Stats Conc job. This is done for all schema's as well as the custom schema we use. Should I be running any additional stats gathering for SYS and SYSTEM tables / indexes? Does anyone

  • Hierarchical Tree cannot populate

    Hi all senior and expert, Im new in oracle forms 10g and now im trying to develop system using hierarchical tree,but when im run for testing my tree cannot populate..Please help me... My program Units: PROCEDURE run_tree IS BEGIN DECLARE htree ITEM;

  • Transferring photos from a USB flash drive to Mac Lion

    I managed to salvage some photos from my old Windows Vista laptop and get them onto a small flash drive, before my laptop pegged out. But when I plug it into the USB port on the Mac, I dont see any Icon and no recognition of it.  How do I find it and