Flash Newbe: Flash mit validem Code in HTML einbinden?

Beitrag lesen

Salut Forum,

ich habe mich heute an Flash herangewagt und mit Swish getestet und die SWF`s in eine Webseite eingebunden.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,42,0" id="test" width="150" height="100">
  <param name="movie" value="/flash/test.swf">
  <param name="bgcolor" value="#FFFFFF">
  <param name="quality" value="high">
  <param name="allowscriptaccess" value="samedomain">
  <embed type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="150" height="100" name="test" src="/flash/test.swf" bgcolor="#FFFFFF" quality="high" swLiveConnect="true" allowScriptAccess="samedomain"></embed>
 </object>

Beim Validieren werden allerdings so einige Fehler angezeigt:

  • there is no attribute "TYPE"
  • there is no attribute "PLUGINSPAGE"
  • there is no attribute "WIDTH"
  • there is no attribute "HEIGHT"
  • there is no attribute "NAME"
  • there is no attribute "SRC"
  • there is no attribute "BGCOLOR"
  • there is no attribute "QUALITY"
  • there is no attribute "SWLIVECONNECT"
  • there is no attribute "ALLOWSCRIPTACCESS"
  • element "EMBED" undefined
  • element "EMBED" undefined

Gibt es eine Möglichkeit, daraus validem Code (HTML 4.01) zu Erstellen? Wo liegt mein Fehler

Au revoir
Flash Newbe