|
Einbindung
der SPX-Dateien in HTML
(3D Scanware) <script type="text/javascript">
/* Vom User zu ändern:*/
var spx_pfad = "objekt.spx"
var bg_pfad = "background.jpg"
// UserBlockEnde
var url = unescape(location.href);
//var url = document.URL;
var fileN1 = url.lastIndexOf("/") + 1;
var fileN2 = url.length;
var file_name = url.substring(fileN1,fileN2);
var pfad = url.replace(file_name, "");
var a_spx_pfad = pfad + spx_pfad;
var a_bg_pfad = pfad + bg_pfad;
document.write('<OBJECT id=SPXCtrl codeBase=spx33.cab#Version=1,1,0,1
height="100%" width="100%" classid=CLSID:17D0C64A-5283-4125-8256-105694C274ED>');
document.write('<PARAM NAME="type" VALUE="application/x-spx">');
document.write('<PARAM NAME="src" VALUE="'+a_spx_pfad+'">');
document.write('<PARAM NAME="width" VALUE="100%">');
document.write('<PARAM NAME="height" VALUE="100%">');
document.write('<PARAM NAME="animation" VALUE="5">');
document.write('<PARAM NaME="bgimage" VALUE="'+a_bg_pfad+'">');
document.write('<PARAM NAME="speed" VALUE="80">');
document.write('<PARAM NAME="bgcolor" VALUE="#ffffff">');
document.write('<PARAM NAME="delay" VALUE="50">');
document.write('<PARAM NAME="maxzoom" VALUE="3">');
document.write('</OBJECT>');</script>
|
|
Einbindung der
Flash-Dateien in HTML
(3D QuickCap) <object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
id="start" width="400" height="300" border="0">
<param name="movie" value="objekt.swf">
<param name="quality" value="High">
<param name="wmode" value="transparent">
<param name="bgcolor" value="#ffffff">
<param name="scale" value="ExactFit">
<param name="base" value="BASISORDNER_DES_SWF"> (nur wenn verweisende
Seite und SWF nicht im selben Verzeichnis liegen)
<embed name="start" src="objekt.swf" quality="High"
base="download" wmode="transparent"
bgcolor="#ffffff"
width="400" height="300"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"
scale="ExactFit">
</embed>
</object>
|