flash中怎样自定义鼠标指针的?
发布网友
发布时间:2022-04-23 01:55
我来回答
共1个回答
热心网友
时间:2023-10-10 19:36
...
这么大夜了,谁去动这些脑子噢.
倒也不难.flash8.0及以后可以用以下两个来试试.
startDrag()
Mouse.hide()
例如,你的按钮实例名叫btn,茶杯的实例名叫cursor_cup,可以写如下:
btn.onRollOver=function(){
Mouse.hide();
startDrag("cursor_cup",true);
}
btn.onRollOut=function(){
Mouse.show();
cursor_cup.stopDrag();
}
大致是这样用的,更详细,你可以去查看一下帮助.如果是Flash
CS3中,不能这样写.