我想在AS2中創建一個Flash Carousel。我所做的旋轉木馬本身,並得到了從XML文件中使用此代碼的圖標圖像和工具提示:Flash Carousel的外部鏈接
xml.onLoad = function()
{
var nodes = this.firstChild.childNodes;
numOfItems = nodes.length;
for(var i=0;i<numOfItems;i++)
{
var t = home.attachMovie("item","item"+i,i+1);
t.angle = i * ((Math.PI*2)/numOfItems);
t.onEnterFrame = mover;
t.toolText = nodes[i].attributes.tooltip;
t.url = nodes[i].attributes.url;
t.icon.inner.loadMovie(nodes[i].attributes.image);
t.r.inner.loadMovie(nodes[i].attributes.image);
t.icon.onRollOver = over;
t.icon.onRollOut = out;
t.icon.onRelease = released;
}
}
我有功能「過度」,「出」和「發佈」,並根據鼠標位置自動,向左或向右移動傳送帶。
我想知道是否有一種方法可以使每個單獨的圖標都有一個外部鏈接,當您點擊一個圖標時我的網站上會出現不同的地方,我可以在XML文件中指定鏈接url本身?
如果您需要更多用於上下文目的的代碼,請不要猶豫,問。我希望你能幫忙。
親切的問候,
Snakespan