参考案例 http://www.enweis.cn/
(代码如下)
var skips = this.attachMovie("skip", "skips", 750);
skips.onPress = function ()
{
main.gotoAndStop("stt");
this.removeMovieClip();
};
skips.onEnterFrame = function ()
{
this._x = this._x+(this._parent._xmouse-this._x)/10;
this._y = this._y+(this._parent._ymouse-this._y)/10;
};
我的意思是像让点击的是很跳转到其他页面,可是不知道他们是在代码里面加的链接的,还是在按钮上加的(找不到那个按钮)
请高人指点一下,我不懂flash代码的
去那有个代码 把他复制过去就行了.... 你好好找找
<html>
<head>
<title>鼠标跟随</title>
<script language="javascript">
<!--
function popUp(evnt,obj)
{
newX=window.event.x;
newY=window.event.y;
obj.style.left=newX+20;
obj.style.top=newY+10;
}
-->
</script>
</head>
<body bgcolor="#ffffff" onmousemove=popUp(window.Event,itemopen1)>
<div id="itemopen1" >
<marquee>这是链接说明1</marquee>
</div>
</body>
</html>