Hallo!
Ich habe folgenden code programmiert:
swfobject.js, player.swf und Demo.flv sind alle im gleichen Ordner gespeichert.
Ich bin ratlos! Kann mir jemand weiterhelfen?
Ich habe folgenden code programmiert:
HTML:
<html>
<head>
<title>
Meine Website
</title>
</head>
<body>
<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
var so = new SWFObject('player.swf','mpl','470','320','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','Demo.flv');
so.write('mediaspace');
</script>
</body>
</html>
Ich bin ratlos! Kann mir jemand weiterhelfen?