Uploaded image for project: 'Maven Doxia'
  1. Maven Doxia
  2. DOXIA-291

Wrong classid in SwfMacro

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.0
    • 1.1
    • Core
    • None

    Description

      There is a missing ": D" (without space) in the classid of the SwfMacro.

      The actual version looks like:

      SwfMacro.java
      content.append( "<object classid=\"clsid27CDB6E-AE6D-11cf-96B8-444553540000\" " )
                  .append( "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" )
                  .append( version ).append( "\" width=\"" ).append( width ).append( "\" height=\"" ).append( height )
                  .append( "\" id=\"" ).append( id ).append( "\">" ).append( EOL );
      

      Ist must be:

      SwfMacro.java
      content.append( "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" " )
                  .append( "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=" )
                  .append( version ).append( "\" width=\"" ).append( width ).append( "\" height=\"" ).append( height )
                  .append( "\" id=\"" ).append( id ).append( "\">" ).append( EOL );
      

      The swf File is not included correctly otherwise.

      Attachments

        Activity

          People

            ltheussl Lukas Theussl
            dknauer Denis Knauer
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: