Converting wmv files into swf files

I have not been using Flash for very long and I have some wmv
files I would like have show up as swf files for a project I am
doing. But I can not find way to covert them over. Is there a way
and if so how. Thanks for any help.

First convert the WMV files to FLV format(Use Flash video
encoder.)
Import the converted videos to flash.
It is easy to use an FLVPlayBack component with a suitable
skin(controls-can be selected from a list) and given the path/name
of the converted video(example.flv);

Similar Messages

  • Loding swf files into swf files

    Hi,
    If i have a swf fil locally which loads a number of other swf
    files from a server, can i have the loaded files load other files?
    I have a tool which loads different presentations from different
    folders but the swf files in the presentations may them selves load
    other swf files. Is there a method to handle this?
    Jesper

    Having one player find with relative paths folder grouped or
    data based
    grouped is very doable in Flash.
    Look at the _url property for the player and pop off the swf
    name at the end
    and you have the path of the player. Then concatenate the
    relative paths
    from there.
    The player base url can be attained with
    urlBase = _url.substr(0,_url.lastIndexOf("/")+1)
    then you concatenate
    Ex:
    aChildFolder = urlBase + "theChildFolderName/"
    aSiblingFolder = urlBase + "../theSiblingFolderName/"
    Then concatenate the swf name to those.
    Lon Hosford
    www.lonhosford.com
    May many happy bits flow your way!
    "JesperBisgaard" <[email protected]> wrote
    in message
    news:e2a8bj$22m$[email protected]..
    thanks for your reply,
    To describe the problem in greater detail:
    I work for a company which produces presentations in flash.
    Each
    presentation
    has a folder of its own on our server and these folders are
    organised under
    the
    companies who ordered them. The presentations are composed of
    a number of
    swf
    files which are loaded into a main presentation control file.
    Now i am
    looking
    to build a tool which can load each of these presentations
    depending on what
    the customer would like to see. I would like this tool to be
    plased in a
    folder
    of its own so i dont have to place one in each presentation
    folder.
    But my problem is that when i try this i find that most
    often flash cant
    handle the relative paths in the movies loaded by the
    presentation control
    file. Example: If i in the presentation load a file with a
    graf and the graf
    contains a button with an onRelease = function() {
    instance.gotoAndPlay(2) }
    flash has a very hard time determining which movieclip to run
    the command
    on.
    Is there a way to handle this?

  • Is there any way to compile FLA files into SWF files on the command line?

    I am using Adobe Flash CS4 Professional on Windows XP.  To facilitate automated nightly builds, I have been searching for a way to compile my SWF files from the FLA files under source control, but without luck.  The tools in the Flex SDK looked promising, but we do not use Flex.  Thanks!

    Seen these?

  • Converting *.doc files to *.swf files

    I PURCHASED FLASHPAPER 2 SOME YEARS BACK TO CONVERT STATIC
    WINDOWS *.DOC FILES TO *.SWF FILES TO UPLOAD ONTO A WEBSITE. I
    RECENTLY BOUGHT A NEW COMPUTER WITH WINDOWS VISTA. FLASHPAPER 2
    DOES NOT WORK ON VISTA. I WAS INFORMED BY ADOBE THAT FLASH CS3 CAN
    RUN ON VISTA. I WOULD LIKE TO FIND OUT HOW TO CONVERT STATIC *.DOC
    FILES INTO *.SWF FILES ON FLASH CS3.

    you can also try this:
    Step 1. convert .doc file to .pdf
    you can find a free converter here
    http://sourceforge.net/projects/pdfcreator/
    Step 2. convert the .pdf file to .swf
    using PDF2SWF & SWFCombine from
    http://www.swftools.org/

  • How to convert a .class file into .java file without .jad using DeJDecompil

    Hi all,
    I am using DeJDecompiler and working with swing applications.If I try to convert a .class file into .java file,it is converting into .jad file only.Fine but if I try to save that file into .java file,It is giving lot of errors in that program.When I went into that program the total style of the program is changed and TRY-CATCH block is not recognised by the dejdecompiler,hence If I try to include some methods in the existing .java file thus got,I could not do.Kindly help me.
    If I get the .java file without error then I can process the rest of the functionality.
    Thanks in advance
    With kind Regs
    Satheesh.K

    Not so urgent today then!
    http://forum.java.sun.com/thread.jsp?thread=553576&forum=31&message=2709757
    I'm still not going to help you to steal someone�s code.

  • How to convert alv list into excel file?

    Hi Experts,
            i have created one report for Due Date Analysis.
    Now My output is displaying in ALV list. But I need to convert the data which in alv list into Excel File. then only i have to send the Excel File to the Customer Thro Email.
         So i need the Function Module to Convert the Data into Excel File.
    Thanks,
    Neptune.M

    Hi,
      U can use function module gui_download.
      CALL FUNCTION 'GUI_DOWNLOAD'
         EXPORTING
        BIN_FILESIZE       =
          filename           = 'C:\Transportaionlane.XLS'
          filetype                       = 'DAT'
        WRITE_FIELD_SEPARATOR           = ' '
        HEADER                          = '00'
        TABLES
          ata_tab                       = t_trans_lane_dis[]
           OTHERS                          = 22
    if u want with header then pass the header.
    regards
    Ahasan

  • Converting html file into zip file and send email attaching zip file

    Hi Experts,
    I am trying to send email with attachment(html). Which contains more than 7MB. So, It is throwing an error like Size exceeded.
    So, Now i need to compress the data for less than 7MB.
    I decided to convert HTML File into ZIP File.
    Kindly suggest me to convert the HTML file into ZIP file and sending email with attached ZIP file.
    Correct answer rewarded,
    Thanks & Regards,
    N. HARISH KUMAR

    Hi Experts,
    *// HTML_TAB converting into ZIP File
       DATA  : zip_tool TYPE REF TO cl_abap_zip,
               filename TYPE string ,
               filename_zip TYPE string .
       DATA  : t_data_tab TYPE TABLE OF x255,
               bin_size TYPE i,
               buffer_x TYPE xstring,
               buffer_zip TYPE xstring.
    filename = text-007.                                                                          "'HTML_TAB
    *describe the attachment
       DESCRIBE TABLE html_tab LINES tab_lines.
       bin_size = tab_lines * 255.
       CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
         EXPORTING
           input_length = bin_size
         IMPORTING
           buffer       = buffer_x
         TABLES
           binary_tab   = html_tab.
       IF sy-subrc <> 0.
    *     message id sy-msgid type sy-msgty number sy-msgno
    *     with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ENDIF.
    *create zip tool
       CREATE OBJECT zip_tool.
    *add binary file
       CALL METHOD zip_tool->add
         EXPORTING
           name    = 'FSSAI_MAIL.HTML'
           content = buffer_x.
    *get binary ZIP file
       CALL METHOD zip_tool->save
         RECEIVING
           zip = buffer_zip.
       CLEAR: t_data_tab[],bin_size.
       CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
         EXPORTING
           buffer        = buffer_zip
         IMPORTING
           output_length = bin_size
         TABLES
           binary_tab    = html_tab.
    Thanks & Regards,
    N. HARISH KUMAR

  • Convert XML file into PDF file

    <b>XML to PDF</b>i want to Convert XML file into PDF file pl. any one can suggests API's

    Hi,
    There are many ways to convert XML files to PDFs through java.
    One of the easiest way is by using iText.jar which have classes for conversion.
    The following are the required steps
    1. Create a document object for the XML file ( Using DOM or SAX parser).
    2. Parse the xml document and extract the content to write in PDF.
    3.Create a itext Document object.
    4.Get a PdfWriter instance for the PDF file.
    5.Write in the pdf the extracted text using the document object.
    Refer <a href="http://itextdocs.lowagie.com/examples/com/lowagie/examples/general/HelloWorld.java">here</a> for a simple pdf writer example.
    Refer <a href="http://java.sun.com/developer/codesamples/xml.html">here</a> for examples of XML Parsers.
    Regards,
    Uma

  • How can convert HTML file into xml file?

    Hi,
    I am receving one HTML file as an input and i want to convert that receiving(html file) into .xml file.Is there any converter (tools)to do this.Pls if any give me the details with regard.
    Regards,
    mahesh.

    Use the HTMLEditorKit to parse the html file.
    this kit is having the callback methods which
    are called wenever the tag appears in the HTML
    stream.

  • How to convert Xls file into Xml file

    Hi,
    I am trying to convert Xls file into Xml  but there  is no any direct procedure for it
    Pls help me out to convert Xls file into Xml file
    Thanks
    Anushree

    you will require to write a module in your file adapter for the same.
    ref: /people/sap.user72/blog/2005/07/04/read-excel-instead-of-xml-through-fileadapter as mentioned in the earlier post.
    Else you can also use Conversion Agent to read the same.
    Ref: http://help.sap.com/saphelp_nw04/helpdata/en/43/4c38c4cf105f85e10000000a1553f6/content.htm

  • How to convert wmf files into AU files?

    Does there exist anu utility to convert wmf audio files into AU files?

    You posted this same question 4 minutes ago.
    http://forum.java.sun.com/thread.jspa?threadID=770001&tstart=0
    Quit cluttering the forums.
    If you posted it by mistake, then reply to the posting stating so. In that way we don't get discussion going in two different threads.

  • How to convert database table into xml file

    Hi.
    How to convert database table into XML file in Oracle HTML DB.
    Please let me know.
    Thanks.

    This not really a specific APEX question... but I search the database forum and found this thread which I think will help
    Exporting Oracle table to XML
    If it does not I suggest looking at the database forum or have a look at this document on using the XML toolkit
    http://download-east.oracle.com/docs/html/B12146_01/c_xml.htm
    Hope this helps
    Chris

  • How to insert landing site and impression code into swf files

    Hi guys!
    i got problems.
    Actually, i dont have  knowleage about tracking and clicks.
    I want to find out how to use it and use it in swf files.
    i want to insert landing site and impression code into swf files but i dont know how to do it.
    i want insert two link below into swf files.
    Impression:
         http://impgb.tradedoubler.com/imp?type(inv)g(xxxxxxx)a(xxxxxxx)
    Click:
         http://clk.tradedoubler.com/click?p=xxxxxx&a=xxxxxxx&g=xxxxxxx
    Can you show me how to do that?
    Thanks for your helps.

    You would need to creat a invisible button or movieclip on a new layer on top and have it fire a external javasctipt function you create in the HTML header that will then call those URLs .

  • I need to combine 2 swf files into 1 file

    I have a flash template that is controled by basicly 3 files website.swf, text.xml and index.html (there are a lot of supporting files)  When i put a video.swf in the xml file it runs with the website.swf as long as I don't turn on the sound on the video.swf because it will not stop.  So I needed some controls on the video.swf which is the skinunderall.swf, but the file comes in 2 pieces and will not intergrate on the website.swf.  I have about 18 video.swf files and they all need to be controlled by the user on the site.  Is there anyway to combine video.swf and the skinunderall.swf to ONE file with the controls?  I will settle for a start stop button, however once the file starts I can't touch it--it seems.  But I have turn the video.swf into a link and it was clickable.
    I read the captive thing but it seems to be out of date.  Oh yeah and I am a page one (begining) coder.
    Any help?

    Hi,
    "combine 2 swf files into 1 file" is a pretty abstract question. The short answer is - yes, you can, but you need an appropriate  software tool for that. But really it's not clear (for me) how all your files work together exactly. The only what I can derive from your explanation, is that you need to add an interactive control to some SWF files with embedded video, loadable into the main "envelope".
    In general all what you need are:
    - you must have some named mc within your "main" SWF, which will load your video SWF's into itself by loadMovie() function.
    - you need to have some controls (buttons, etc.) in your "main" movie. which will control this mc playback - mc.play(), mc.stop(), etc.
    I'm almost sure it's resolvable problem, but can you upload this template to let us see how it all works now? If you don't wish to disclose it all publically, then you may write to me personally. You can find email address at the bottom of the webpage in my signature.
    FlashDigger
    www.flashdig.com

  • Convert .WAR file into .Car file???

    Hello Everyone,
    Iam working on portlets and i have to deploy my portlet which is a .war file onto a "vignette" which is a portal,problem is vignette portal only accepts .Car file, Iam developing portals in Netbeans with glassfish server and open portal container 2.0. and it generates .War file of my application in the end,if anyone can please suggest me that how can i create or convert .War file into .Car file it will be a great relief for me.
    Thanks.
    Edited by: anie on Sep 20, 2008 10:53 AM

    mv i_am_stupi.war i_am_stupid.carOr just RTFM if you want to have a file that the system actually understands.

Maybe you are looking for

  • How do I add back my favorites back after an upgrade to windows 7

    I just installed Windows 7. I saved my info from my previous Vista install in a back-up. How do I migrate all my favorites and book marks back to the new Firefox installation. I am using Firefox 3.6 Thanks in advance!!

  • Goods receipt not marked for production order trigger from sales order

    Hi all, In MTO scenario, where requirement trigger from Inquiry -> Quotatation -> Sales Order -> Plan Order -> Production Order, goods receipt indicator in production order was not checked if requirement is triggering from sales order, however it is

  • Missed call Notification

    When I receive a missed call, a notification is displayed in the lock screen (normal) When I try to use the notification (sliding the notification itself) to call the person back, it calls back normally. But then the notification doesn't go away.  I

  • Need help with a Help problem

    Hi, I've been using RoboHelp for about seven years now and this is the first time I've come up with this problem. The application for which I'm building the Help file contains a What's New menu item in the Help menu. I have a page called What's New b

  • Password for icloud won't stick on iPhone 6

    Settings for icloud repeatedly ask me to enter AppleID Password - it won't stick. I have been noticing lately that it seems to disappear when moving out of wifi and changing over to LTE or even sometimes 4G areas. I've done all the resets, and signed