杭州金通国际大厦:flash怎么样修改超链接

来源:百度文库 编辑:神马品牌网 时间:2024/04/28 12:14:01
var drag = 0.4;
var flex = 0.6;
var menuEN = new Array("Home", "News", "Book", "Music", "Photo", "Download", "FANS");
var menuZH = new Array("欧文首页", "欧文新闻", "欧文自传", "欧文视听", "欧文相册", "欧文资料", "欧文FANS");
var menuURL = new Array("http://www.baidu.com", "news.asp", "book.asp", "music.asp", "photo.asp", "download.asp", "fans.asp");
var menuColor = new Array(0xFF6699, 0x00A2FF, 0x96D302, 0xFFC600, 0xFF5400, 0xCD7DE1, 0x02D396);
var mBlock = this.attachMovie("mblock", "mb", 6);
mBlock._y = 5;
mBlock.goalX = -100;
mBlock.onEnterFrame = function() {
this.Step = this.Step*flex+(this.goalX-this.px)*drag;
this.px += this.Step;
this._x = this.px;
if (this.sOut && this._xscale<99.5) {
this._xscale += (100-this._xscale)/8;
}
if (this.sIn && this._xscale>0.1) {
this._xscale += -this._xscale/8;
}
};
var MBColor = new Color(mBlock);
for (var i = 0; i<menuZH.length; i++) {
pipi.start([1, 1]);
var theItem = this.attachMovie("MenuItem", "Item"+i, i+10);
theItem._x = i*84;
theItem.mColor = menuColor[i];
theItem.URL = menuURL[i];
theItem.mc_ZH.itext.text = menuZH[i];
theItem.mc_EN.itext.text = menuEN[i];
theItem.onEnterFrame = function() {
if (this.fadeOut) {
if (this.topLine._alpha<99.5) {
this.topLine._alpha += (100-this.topLine._alpha)/8;
}
if (this.mc_EN._alpha>0.5) {
this.mc_EN._alpha += -this.mc_EN._alpha/0;
}
if (this.mc_ZH._xscale<00) {
this.mc_ZH._xscale += 2;
this.mc_ZH._yscale += 2;
}
}
if (this.fadeIn) {
if (this.mc_EN._alpha<99.5) {
this.mc_EN._alpha += (100-this.mc_EN._alpha)/8;
}
if (this.topLine._alpha>0.5) {
this.topLine._alpha += -this.topLine._alpha/8;
}
if (this.mc_ZH._xscale>100) {
this.mc_ZH._xscale -= 2;
this.mc_ZH._yscale -= 2;
}
}
};
theItem.onRollOver = function() {
mBlock.goalX = this._x+42;
mBlock.sOut = true;
mBlock.sIn = false;
MBColor.setRGB(this.mColor);
new Color(this.topLine).setRGB(this.mColor);
this.fadeOut = true;
this.fadeIn = false;
};
theItem.onRollOut = function() {
mBlock.sOut = false;
mBlock.sIn = true;
this.fadeIn = true;
this.fadeOut = false;
};
theItem.onRelease = function() {
getURL("http://www.sina.com");
};
}
stop();
上面是我下的FLASH导航代码~想把他用到我自己的网页上~改下超链接
搞了后~
链接是可以链接但是每个按纽都是同一个新浪的链接~~无余了~
给位高手帮帮忙把~
我希望能够一个按纽一个链接
我的网页都在C:\Inetpub\wwwroot\owen\
里希望大家帮帮忙~