| 
 一、最简单的是在flash中给按钮加入如下的action 
 
On (Roll Over) 
Get URL ("lingo : cursor(280)") 
End On 
On (Release Outside, Roll Out) 
Get URL ("lingo : cursor(-1)") 
End On 二、在DR中判断通道中的flash是否为按钮 on exitframe 
go to the frame 
if hittest(sprite 1,the mouseloc)=#button then  
cursor 280 
else 
if hittest(sprite 1,the mouseloc)=#normal then 
cursor -1 
end if  
end if 
end 三、将通道中的flash中所有按钮都加入鼠标效果   if sprite(1).mouseoverbutton then 
    cursor 280 
  else 
    cursor 0 
  end if 四、最后一点很重要,我们导入的flash一定要选择背景透明,否则,在我们运行过程中鼠标指针效果就会丢失,这是我的一点点以验总结,希望能给大家带来帮助,大家也继续支持閑闪互动多媒体,先到这吧,以后有新知识点再补充。  
 |