Flash Cs3[As2.0环境]仿菜单拖动透明效果

      Flash脚本收藏 2007-8-17 22:48

在Flash Cs3中 As2.0环境下
仿Cs3菜单拖动时的透明效果

As2.0 如下:[红色可拖动MC的实例名称为 mc_mc]
mc_mc.onPress = function() {
     startDrag(this);
     Mouse.addListener(someListener);
     someListener.onMouseMove = function() {
           mc_mc._alpha = 20;
     };
};
mc_mc.onRelease = function() {
     stopDrag();
     Mouse.removeListener(someListener);
     mc_mc._alpha = 100;

};
someListener = new Object();
Mouse.addListener(someListener);

------------------分割线-----------------------
今天终于装上了Flash Cs3 激动啊
但是As3.0并不是特别熟悉
同样效果的As3.0版本 等散步回来继续研究

标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commenttime}{commentauthor}

{CommentUrl}
{commentcontent}