Is SWF File Format still closed?

The swfutils.jar is now open source under MPL.
We can hack swf files with swfutils.jar
But "SWF and FLV File Format Specification" seems still closed.
Does Adobe intend to open the SWF file format?

Hi, good question.  You're right that we have not changed the license of the SWF specification at this time, but it's something that is always under consideration.  So you can use swfutils for whatever purpose the MPL allows, but the spec will still maintain its own license for now.<br /><br />Matt<br /><br /><br />On 3/4/08 9:32 PM, "Naoki INADA" <[email protected]> wrote:<br /><br />A new discussion was started by Naoki INADA in<br /><br />General Discussion --<br />  Is SWF File Format still closed?<br /><br />The swfutils.jar is now open source under MPL.<br />We can hack swf files with swfutils.jar<br /><br />But "SWF and FLV File Format Specification" seems still closed.<br />Does Adobe intend to open the SWF file format?<br /><br />________________________________<br />View/reply at Is SWF File Format still closed? <a href=http://www.adobeforums.com/webx?13@@.3c0650e3><a href=http://www.adobeforums.com/webx?13@@.3c0650e3><br />Replies by email are OK.<br />Use the unsubscribe <a href=http://www.adobeforums.com/webx?280@@.3c0650e3!folder=.3c060fa1><a href=http://www.adobeforums.com/webx?280@@.3c0650e3!folder=.3c060fa1>  form to cancel your email subscription.

Similar Messages

  • Extracting text (UTF8 and UTF16) from the SWF file format

    Hello.
    Just wondering if this newsgroup is the right one to talk
    about the
    'open' SWF file format. I'm looking for a utility to pull out
    the text
    strings inside of a SWF file (both UTF8 and UTF16). The file
    format is
    open-sourced, so I guess that I could write something, but I
    remember
    there being some tools here when Adobe first open-sourced the
    format,
    but I'm not able to find the tools anymore.
    Any help?
    - Steve Webb

    Hello.
    Just wondering if this newsgroup is the right one to talk
    about the
    'open' SWF file format. I'm looking for a utility to pull out
    the text
    strings inside of a SWF file (both UTF8 and UTF16). The file
    format is
    open-sourced, so I guess that I could write something, but I
    remember
    there being some tools here when Adobe first open-sourced the
    format,
    but I'm not able to find the tools anymore.
    Any help?
    - Steve Webb

  • Move DeltaX in style change record in swf file format

    Hi
    can anybody suggest that MoveDeltaX field in
    StyleChangeRecords of swf file format is a absolute value or a
    relative value?
    Document says its a relative! But what I observed by a sample
    file created by macromedia flash publisher is absolute!!
    If i need to scale a shape,Do I need to scale the
    MoveDeltaX...as we are doing for DeltaX and DeltaY of
    StraightEdgeRecord.
    thankyou.

    Hi ,
    Thx for replies , i followed as shown in above blog and went fine but there is mapping error as shown below,
    xml format after pick by sender file adapter
      <?xml version="1.0" encoding="utf-8" ?>
      <MT_DMS_FINAL>
      <Record>
      <Row>
      <FirstName>296501_000_00</FirstName>
      </Row>
      </Record>
      </MT_DMS_FINAL>
    xml file format from test tab in Message mapping
    <?xml version="1.0" encoding="UTF-8"?>
    <MT_DMS_FINAL>
       <Record>
          <Row>
             <FirstName>296501_000_00</FirstName>
          </Row>
       </Record>
    </MT_DMS_FINAL>
    See above xml first statment is different , how to make it equal
    Help
    Srini

  • Does the Flash 8 and Flash Lite 2.0 has the same SWF file format?

    Flash Lite 2.0 is based on the Flash Player 7 and supports
    most of the features in that version of Flash Player, also, the
    Flash Lite 2.0 provides serval features not avaliable in Flash
    Player 7.
    My Question:
    I've download the File Format Specification of Macromedia
    Flash (SWF) and Flash Video (FLV) Version 8 from Adobe web site,
    but, I don't know whether the Flash Lite 2.0 has the same SWF file
    format?
    If the SWF file format is different, where can I get the file
    format for Flash Lite 2.0?
    Thanks in advance.
    Sandy.

    > Flash Lite 2.0 is based on the Flash Player 7 and
    supports most of the
    > features
    > in that version of Flash Player, also, the Flash Lite
    2.0 provides serval
    > features not avaliable in Flash Player 7.
    >
    >
    My Question:
    > I've download the File Format Specification of
    Macromedia Flash (SWF) and
    > Flash Video (FLV) Version 8 from Adobe web site, but, I
    don't know whether
    > the
    > Flash Lite 2.0 has the same SWF file format?
    > If the SWF file format is different, where can I get the
    file format for
    > Flash
    > Lite 2.0?
    Yes .. it is a little different .. got some extras and has
    some
    restrictions. But there is a lot that is the same.
    There is a separate section on mobile devices (in the Adobe
    site where you
    can get info on the format (or at least, there was for flash
    lite 1.x)

  • Need to connect different swf files into one site

    I need to make this site like presentation for my next exam. I found a good template for a slide show. The presentation will be structured like this: 
    MAIN PAGE with sidebar which links to:
    slide one with slideshow 1
    slide two with slideshow 2
    slide three with slideshow 3
    slide four with slideshow 4
    due to the nature of the code thou i cannot put the different slideshows into the same .swf file in different scenes (i copied and pasted them in each scene and modified the actionscript so they would refer to different pictures) because they will create conflict with each other. now they question is can i use the sidebar to link to different swf files but still make it look like it was just one big swf?
    thank you!

    Here is what you have to do
    Create a document named main.swf in that document put 4 buttons and instance (button1_btn, button2, button3_btn, button4_btn).
    Change the name to your slideshows to slide1.swf, slide2.swf, slide3.swf and slide4.swf.
    Now go to the actionScript panel of your main.swf and paste the following code:
    //load external content
    var loader = new Loader
    addChild(loader)
    loader.x=0;
    loader.y=0;
    button1_btn.addEventListener(MouseEvent.CLICK, function(){
             loader.load(new URLRequest("slide1.swf"));
    button2_btn.addEventListener(MouseEvent.CLICK, function(){
             loader.load(new URLRequest("slide2.swf"));
    button3_btn.addEventListener(MouseEvent.CLICK, function(){
             loader.load(new URLRequest("slide3.swf"));
    button4_btn.addEventListener(MouseEvent.CLICK, function(){
             loader.load(new URLRequest("slide4.swf"));
    any problems let me know!!!

  • How to use aggregator to create a single swf file from multiple files

    Hi everyone,
    I am working on the client's requirement where i have to create a SCROM 2004 based video. Its basically a PPT inside the captivate file. And it has around 175 slides in the file. Some of the slides have animations, voiceover. I am facing a problem during PUBLISHING the file into single SWF file format. Whenever I Publish the slides as SWF, it creates number of SWF files, Swf skin of the player and other manifest, Scorm 2004 files.
    I want only one single SWF file in which every slide should be incorporated in it. Dont know, why it is happening? I tried aggregator for this also, but it didnt worked... The Skin.swf has been easily added and no other files are adding. It shows me an error: "Name.swf is not a AS3 Captivate file ....."
    I am new to this. Please help me out as I have a very short deadline for this.
    Thanks and Regards

    Maybe you misunderstand: this is a user forum, not online help by Adobe staff.
    Sorry, but if you are that impatient, you'll have to pay for online support. You post a question and expect to have answers within minutes?
    Lilybiri

  • Save as swf file using httpconnection and file io

    I have one application which is fatch the swf file from web and i want to save as in same to swf file format.
    when i have fatch the swf file and save as .swf format i have unable to view as flash animation in browser and micromedia.
    Anyone suggest me ?
    URL url = new URL("http://nileshpatel.com/abc.swf");
    HttpURLConnection con = (HttpURLConnection) url.openConnection();
    con.setRequestProperty( "User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)" );
    BufferedReader rd;
    rd = new BufferedReader(new InputStreamReader(con.getInputStream()));
    String line="";
    String content="";
    File f = new File("users/nileshpatel/neo.swf");
    FileWriter fw = new FileWriter(f);
    while ((line = rd.readLine()) != null) {
    content += line;
    rd.close();
    fw.write(content);
    fw.close();
    ############################################################

    BTW sometimes flash uses communication with server to obtain some information before/during running. In such case you'll need to provide kind of your own HTTP server, pass swf to browser using HTTP protocol (not directly from HDD) then pass all additional data.
    Hope this is not your case :)

  • Use a panoramic photo flash file in indesign and export it to a swf file for flipbook

    hi,
    i haven a 360° panoramic flash file.
    when i put this file in indesign and make an export to pdf i can see my panoramic photo.
    my problem:
    i want to export this file to swf to use it as a flipbook.
    but now, my panoramic flash file doesn`t work.
    is this possible?
    thanks
    sascha

    Hi, I have the same issue??
    Even when exporting as an interactive pdf.
    My problem is that I am trying to figure out how to export my swf embedded file into an interactive pdf.
    I have created an interactive presentation with buttons, effects etc. After which I exported to swf so that all the effects work.
    But when placing the swf file back into indesign and exporting again as an interactive pdf it doesn't work at all, all I get is a white screen. (I need a pdf for clients basically, they dont want any swf or flash files.)
    Even though after placing the swf file, in the media window I ticked play on page load as well as chose a cover image for the swf file. Still just a white screen when exporting.
    To repeat, I need to know how to convert my swf file into an interactive pdf.
    Any pointers please would be great I have some swf presentations I need to change into pdf as soon as possible or before tomorrow to be exact before our monthly meeting with clients.
    Please help

  • How do you play a swf file from the desktop

    I have created a swf file using flash. It can be downloaded
    onto the desktop. It is zipped. When unzipped it is called
    yadayada.swf. It does not get associated to the flash player or the
    shockwave flash player which are both installed. So if i double
    click on it it won't play.
    What do I have to do to make it play from the desktop in its
    plain swf file format. I want people to be able to download it onto
    their desktop for both Mac and PC users. I published it as a
    projector .exe file but mac users cant run it.
    What should be my next step?
    I have installed Flash on my development box so this isnt an
    issue but it is for my test computer that doesnt have flash
    installed.

    HI
    mm 2 things you can do.
    1. Create a html page that loads this SWF file, This will
    work on both OS's.
    2. Create a Projector file for PC and HQX for the Mac. You
    cannot have one
    file todo both.
    Hope this helps.
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. - www.flashjester.com
    "This has been one of the most impressive and thoroughly
    pleasant
    experiences of customer support I have ever come across -
    astounding!"
    Director - hedgeapple

  • Flash cc .swf file question

    Hello
    i am at a stuck point on a project I am working on which includes editing a pre built flash player banner in the .swf file format. My problem is I need to change where the links are directing to in the flash banner but have no xpieriance in it. I installed flash cc and noticed it won't let me open a .swf file so I could try and give editing the link a go.
    I Did download so-think swf editor and decompressor with no luck as I don't understand it's mechanics, but really want to be able to find a permanent   solution for future projects to come within the adobe cloud applications I am already working with.
    my question is what are my options for being able to edit swf files do I have to turn them into .fla files and if so how would I do that as I already attempted to simply rename the files .fla instead of .swf but flash cc found problems with that.
    I am very much stuck and am encouraging any guidence I could possibly get to find a resolution to my problem, please help!
    thanks
    Erik

    You cannot edit swf files... they are the result of publishing the fla files that create them.  You need to acquire the fla files and edit and publish them in order to have the swf with the changes.  If you are not able to acquire the fla files then you probably do not have the legal right to use the file.

  • [svn] 1384: Splitting DefineFont into the various DefineFont 1, 2, 3, etc SWF tag formats but retaining a common base DefineFont class so that embedded fonts are still retained as symbols for the SWF dictionary no matter what version of the SWF tag is us

    Revision: 1384
    Author: [email protected]
    Date: 2008-04-24 07:54:58 -0700 (Thu, 24 Apr 2008)
    Log Message:
    Splitting DefineFont into the various DefineFont 1, 2, 3, etc SWF tag formats but retaining a common base DefineFont class so that embedded fonts are still retained as symbols for the SWF dictionary no matter what version of the SWF tag is used.
    Also improving [Embed] so that it can recognize .TTC files as assets (previously these were only recognized through CSS @font-face rules).
    QE: Yes, please add a test case for using [Embed] to embed fonts from a TTC file in addition to our tests for @font-face. Note that the AFEFontManager must be configured for this scenario.
    Doc: No
    Checkintests: Pass
    Mxunit: AtEmbed Font suite: Pass
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/AbstractTranscoder.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/FontTranscoder.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MimeMappings.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/CachedFontManager.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Dictionary.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieEncoder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagDecoder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagHandler.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagValues.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/FontBuilder.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontAlignZones.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontInfo.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
    Added Paths:
    flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/DefineFont3Face.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont1.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont2.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont3.java
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont4.java
    Removed Paths:
    flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/DefineFontFace.java

    Running the script by python2 solves it for me:
    su - mythtv -c "nice -n 19 python2 /usr/bin/tv_grab_nl_py --output ~/listings.xml"
    Best regards,
    Cedric

  • Movie format within .swf file? Extract to MPEG-4?

    Hi,
    I have an algorithm that runs against a series of still
    images, such as MPEG-4 movie key frames.
    I would like to be able to analyze .swf files with the
    algorithm, but I don't know how to extract key frames or images
    from the .swf file itself.
    Is there documentation anywhere about what the .swf file
    stores (I can't find it)?
    Are movie resources imported into Flash transcoded and stored
    as something different than the original format?
    What would your approach be to extract a series of frames
    from a swf file (assuming the .swf is a movie requiring no user
    interaction/timeline jumps)? Is there something better than loading
    and playing the .swf and then capturing bitmaps 12 times a second
    (or whatever the frame rate is)?
    Thanks in advance, any links or info is appreciated.

    > Is there something better than loading and playing the
    .swf and then capturing
    > bitmaps 12 times a second (or whatever the frame rate
    is)?
    Probably not. In fact, this is how the Flash IDE itself
    exports to other video formats.
    .swf is not a video format, so you don't really have a
    snapshot at any point. SWF is an open format so you can definitely
    find a lot of information on how some if works, and there are many
    decompilers that might give you some insight into how a .swf looks
    inside.

  • Importing swf file with skin and closed captioning problems

    I created a flv file in Preimere and I pulled it into flash to create close captioning.  When I publish it, it creates a swf file that I can open up on its own and it has the skin with the button to push to show the closed caption.  When I try to bring that file into captivate, it doesnt bring in the skin and it just automatically shows the captions.  How do I get it to bring the skin in with it?

    Are you seeing this problem when you preview you project. or only after you publish it? If it is when you publish, is it in both the local version and/or in the web version?
    Also, which version of Flash Catalyst? 1.0 or 5.5.?
    Chris

  • Is there a way of running cd's"windows" formatted with inf and swf files?

    Is there a way of opening and running CD's 'window' formatted with .inf and .swf files on a mac??

    In your operating system, move the photos to wherever you want them to be (keeping the folder tree structure the same), and then in Lightroom re-link via http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm

  • How to fix file when it says, "Cannot open file " ". Adobe Indesign does not support the file format, a plug-in that supports the file may be missing, or file may be open in another application." It worked one second, I saved and closed the file, then tri

    How to fix file when it says, "Cannot open file " ". Adobe Indesign does not support the file format, a plug-in that supports the file may be missing, or file may be open in another application." It worked one second, I saved and closed the file, then tried to reopen and now it won't work. I am using Adobe InDesign CS5. It is the only version on my comp. I have tried opening on another comp & copying the file – same error comes up. PLEASE HELP

    First check the version of the document with Jongware's script "Identify.jsx" (ExtendScript/JavaScript).
    You can find it here:
    [Ann] Identify Your InDesign File
    If it is CS 5.5 or above, you need someone to open it in the version the script says and export an IDML representation from that. Another way would be to install a 30days version of CS6 or above (CC) and do it yourself.
    In regards of the script showing a result for InDesign files higher than CS6:
    CS7 = CC v9
    CS8 = CC v10 = CC-2014 or CC2014.1
    Uwe

Maybe you are looking for

  • Critical Error in the Enterprise Server

    I am having a critical error in my process in the Enterprise Server.. It works fine inside Studio.. The following is the error:- Error while persisting the transaction data: 'An error occurred while accesing the database. Detail:SQL statement: 'unkno

  • Problem accessing account.

    I tried to change my user ID after my email account was hacked. I am unable to do so because I cannot remember my password. I cannot change my password because my birthdate is incorrect. What can I do?

  • *Stationed in Germany, bought iphone 4s issue with language

    I just recently bought the iphone 4s because that's the way to go to keep in touch back in the states for free. Going to the app store everything is in german, itunes on my computer now is in german.....so as may see that when i try and install and d

  • Communication channel logging

    Hi, One of our communication channels seemed to have some issues during the night. In the RWB/Communication channel monitoring there is a log of the last minutes (polling every 60s), but is there somewhere a bigger log? Best regards, Nicolas De Corte

  • Problem handling JFileChooser events...

    The problem I have is rather tricky to explain. I feel maybe I'm treading on an area I'm not ready for yet... but here goes: I have a JInternalFrame with an "open" button which triggers the JFileChooser and underneath a text field to log activity. My