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.