Hallo Zusammen !
Habe mir ein Panorama Script zusammen gebastelt ohne XML funktioniert das auch ganz schön ! Nur sobald sich das bild nicht mehr in der Bibliothek befindet sondern übers XML gealden wird, wird es nicht mehr korrekt dargestellt und der "Rundumblick funktioniert auch nicht mehr !
XML FILE
Habe einmal einen Screenshot angehängt wie das bild dann bei mir aussieht !
Wenn mir jemamd helfen könnte, wäre sehr nett !
Danke schon mal
Habe mir ein Panorama Script zusammen gebastelt ohne XML funktioniert das auch ganz schön ! Nur sobald sich das bild nicht mehr in der Bibliothek befindet sondern übers XML gealden wird, wird es nicht mehr korrekt dargestellt und der "Rundumblick funktioniert auch nicht mehr !
PHP:
var xmli = new XML();
xmli.ignoreWhite = true;
xmli.onLoad = function(status) {
if (status && this.loaded) {
v = Number(this.firstChild.attributes.speed);
loadMovie(xmli.firstChild.childNodes[0].attributes.pic, bild_mc);
}
}
//xmli.load(xmlFile);
xmli.load("img.xml");
function setzePano(obj)
{
obj.mittelpunkt = 490;
obj.umkehrPunkt = (obj._width - obj.mittelpunkt * 4) / 2;
duplicateMovieClip(obj, "bild_copy_mc", 1);
bild_copy_mc._y = obj._y;
obj.onEnterFrame = function ()
{
this._x = this._x + (this.mittelpunkt - this._parent._xmouse) / 50;
if (this._x < -this.umkehrPunkt)
{
this._x = this._x + this._width;
} // end if
if (this._x - this._width > -this.umkehrPunkt)
{
this._x = this._x - this._width;
} // end if
this._parent.bild_copy_mc._x = this._x - this._width;
};
} // End of the function
fscommand("allowscale", "false");
linie.swapDepths(10);
setzePano(bild_mc);
XML FILE
PHP:
<?xml version="1.0" encoding="iso-8859-1"?>
<Bilder speed="50">
<Bild pic="panorama2.jpg"></Bild>
</Bilder>
Habe einmal einen Screenshot angehängt wie das bild dann bei mir aussieht !
Wenn mir jemamd helfen könnte, wäre sehr nett !
Danke schon mal