Kalle_Worms: Zusatzfrage

Beitrag lesen

stelle eben fest (NS 7.1), dass der Wecker NICHT funzt, wenn man nicht mehr online ist, OBWOHL die Flash- Datei noch im Speicher sein muss.

Erst dachte ich, es sind die http- Einträge, aber der offline- Test (lokaler PC ohne Web) hat funktioniert.

Was kann das sein? Hier der Code:

var txt   ="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ";
  txt = txt +"codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' ";
  txt = txt +"width='10' height='10'>";
  txt = txt +"<param name='movie' value='"+quelle+"'>";
  txt = txt +"<param name='loop' value='false'>";
  txt = txt +"<param name='quality' value='high'>";

txt = txt +"<embed src='"+quelle+"' quality='high' ";
  txt = txt +"pluginspage='http://www.macromedia.com/go/getflashplayer' ";
  txt = txt +"type='application/x-shockwave-flash' width='10' height='10'>";
  txt = txt +"</embed></object>";
  document.getElementById("flash").innerHTML = txt;

Kalle