大家常说的MC是什么东东?我用硕思解开后,所有的标签都是一样的怎么样改下面的代码才能变成原文件的样子呢?哪位高手看的懂,请赐教!小妹感激不尽啊!

代码如下:
_root.onEnterFrame = function ()
{
mydate = new Date();
year = mydate.getFullYear();
month = mydate.getMonth() + 1;
date2 = mydate.getDate();
day = mydate.getDay();
hour = mydate.getHours();
minute = mydate.getMinutes();
second = mydate.getSeconds();
if (hour <= 12)
{
hour = "AM:" + hour;
}
else if (hour > 12)
{
hour = "PM:" + hour;
} // end if
};
var drag = 0.400000;
var flex = 0.600000;
var menuEN = new Array("home", "about", "new", "favourable", "special", "news", "feedback");
var menuZH = new Array("商城首页", "关于我们", "新品上架", "
特价商品", "商品专题", "新闻中心", "客户留言");
var menuURL = new Array("index.asp", "about.asp?action=about", "class.asp?lx=news", "class.asp?lx=tejia", "zhuanti.asp", "dongtai.asp", "fk.asp");
var menuColor = new Array(16737945, 41727, 9884418, 16762368, 16733184, 13467105, 185238);
var mBlock = this.attachMovie("mblock", "mb", 6);
mBlock._y = 5;
mBlock.goalX = -100;
mBlock.onEnterFrame = function ()
{
var _l1 = this;
_l1.Step = _l1.Step * flex + (_l1.goalX - _l1.px) * drag;
_l1.px = _l1.px + _l1.Step;
_l1._x = _l1.px;
if (_l1.sOut && _l1._xscale < 99.500000)
{
_l1._xscale = _l1._xscale + (100 - _l1._xscale) / 8;
} // end if
if (_l1.sIn && _l1._xscale > 0.100000)
{
_l1._xscale = _l1._xscale + -_l1._xscale / 8;
} // end if
};
var MBColor = new Color(mBlock);
var i = 0;
while (i < menuZH.length)
{
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 ()
{
var _l1 = this;
if (_l1.fadeOut)
{
if (_l1.topLine._alpha < 99.500000)
{
_l1.topLine._alpha = _l1.topLine._alpha + (100 - _l1.topLine._alpha) / 8;
} // end if
if (_l1.mc_EN._alpha > 0.500000)
{
_l1.mc_EN._alpha = _l1.mc_EN._alpha + -_l1.mc_EN._alpha / 0;
} // end if
if (_l1.mc_ZH._xscale < 0)
{
_l1.mc_ZH._xscale = _l1.mc_ZH._xscale + 2;
_l1.mc_ZH._yscale = _l1.mc_ZH._yscale + 2;
} // end if
} // end if
if (_l1.fadeIn)
{
if (_l1.mc_EN._alpha < 99.500000)
{
_l1.mc_EN._alpha = _l1.mc_EN._alpha + (100 - _l1.mc_EN._alpha) / 8;
} // end if
if (_l1.topLine._alpha > 0.500000)
{
_l1.topLine._alpha = _l1.topLine._alpha + -_l1.topLine._alpha / 8;
} // end if
if (_l1.mc_ZH._xscale > 100)
{
_l1.mc_ZH._xscale = _l1.mc_ZH._xscale - 2;
_l1.mc_ZH._yscale = _l1.mc_ZH._yscale - 2;
} // end if
} // end if
};
theItem.onRollOver = function ()
{
var _l1 = this;
mBlock.goalX = _l1._x + 42;
mBlock.sOut = true;
mBlock.sIn = false;
MBColor.setRGB(_l1.mColor);
new Color(_l1.topLine).setRGB(_l1.mColor);
_l1.fadeOut = true;
_l1.fadeIn = false;
};
theItem.onRollOut = function ()
{
mBlock.sOut = false;
mBlock.sIn = true;
this.fadeIn = true;
this.fadeOut = false;
};
theItem.onRelease = function ()
{
getURL(this.URL, "");
};
i++;
} // end while
stop();