Hallo
mnutz diesen Script in Flash und möchte das wenn man klick auf dem Bild denn eine NEUE Seite auf geht und nicht die selbe Seite genutz wird
hab da schon das probiert " getURL (urls[currentImage], "" , "_blank" ); aber dann geht die Flashdatei nicht mehr also wie muß ich das ändern
Bedank mich schon mal für die mühe
Gruß
admblacky
hier mal der ganze Script
mnutz diesen Script in Flash und möchte das wenn man klick auf dem Bild denn eine NEUE Seite auf geht und nicht die selbe Seite genutz wird
hab da schon das probiert " getURL (urls[currentImage], "" , "_blank" ); aber dann geht die Flashdatei nicht mehr also wie muß ich das ändern
Bedank mich schon mal für die mühe
Gruß
admblacky
hier mal der ganze Script
Code:
function nextMask(current)
{
if (transitions.length == 1)
{
return (current);
} // end if
if (useRandomTransitions)
{
for (rand = current; current == rand; rand = Math.round(Math.random() * (transitions.length - 1)))
{
} // end of for
return (rand);
}
else
{
if (current == transitions.length - 1)
{
current = 0;
}
else
{
++current;
} // end else if
return (current);
} // end else if
} // End of the function
bannerWidth = 468;
bannerHeight = 60;
transitions = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30];
useRandomTransitions = false;
useRandomImages = false;
alphaSpeed = 4;
duration = 5;
var xml = new XML();
xml.ignoreWhite = true;
var images = new Array();
var urls = new Array();
var mcLoader = new MovieClipLoader();
var loadListener = new Object();
i = 0;
currentImage = 0;
duration = duration * 1000;
currentMask = 0;
banner = createEmptyMovieClip("Flyer", 0);
loadXML = function ()
{
var _loc4 = this.firstChild.childNodes;
total = _loc4.length;
for (var _loc3 = 0; _loc3 < total; ++_loc3)
{
images.push(_loc4[_loc3].attributes.image);
urls.push(_loc4[_loc3].attributes.url);
} // end of for
holder = banner.createEmptyMovieClip("holder0", 0);
inner = holder.createEmptyMovieClip("inner", 0);
loadMovie(images[currentImage], inner);
banner.onRelease = function ()
{
getURL(urls[currentImage], "");
};
intervalId = setInterval(_root, "changeImage", duration);
};
xml.onLoad = loadXML;
xml.load("banner.xml");
changeImage = function ()
{
++i;
i2 = i - 2;
removeMovieClip (banner["holder" + i2]);
if (!useRandomImages)
{
++currentImage;
if (currentImage > images.length - 1)
{
currentImage = 0;
} // end if
}
else
{
cI = currentImage;
while (cI == currentImage)
{
currentImage = Math.round(Math.random() * (total - 1));
} // end while
} // end else if
if (transitions[currentMask])
{
holder = banner.createEmptyMovieClip("holder" + i, i);
inner = holder.createEmptyMovieClip("inner", 0);
loadListener.onLoadInit = function ()
{
masc = holder.attachMovie("mask" + transitions[currentMask], "masc", 1);
masc._width = bannerWidth;
masc._height = bannerHeight;
holder.setMask(masc);
currentMask = nextMask(currentMask);
};
mcLoader.addListener(loadListener);
mcLoader.loadClip(images[currentImage], inner);
}
else
{
holder.onEnterFrame = function ()
{
if (this._alpha > 0)
{
this._alpha = this._alpha - alphaSpeed;
}
else
{
removeMovieClip (this);
} // end else if
};
holderr = banner.createEmptyMovieClip("holder" + i, i);
inner = holderr.createEmptyMovieClip("inner", 0);
loadListener.onLoadInit = function ()
{
holderr._alpha = 0;
holderr.onEnterFrame = function ()
{
if (this._alpha < 100)
{
this._alpha = this._alpha + alphaSpeed;
}
else
{
delete this.onEnterFrame;
} // end else if
};
currentMask = nextMask(currentMask);
};
mcLoader.addListener(loadListener);
mcLoader.loadClip(images[currentImage], inner);
} // end else if
};