Could be the onEnterFrame handler, try to change it into something like this
(taken from flash help)
Mouse.hide();
cursor_mc.onMouseMove = function() {
this._x = _xmouse;
this._y = _ymouse;
updateAfterEvent();
};
the updateAfterEvent helps too.
G'luck,
Ben
________________________________
From: [EMAIL PROTECTED] on behalf of awflasher.com
Sent: Wed 8/24/2005 8:48 PM
To: osflash
Subject: [osflash] hi list, a strange question
I hav made a Flash-movie
and , I use this script to hide the mouse instead with another self-designed
cursor :
_root.onEnterFrame = function ()
{
Mouse.hide();
_root._myCursor._x=_root._xmouse;
_root._myCursor._y=_root._ymouse;
}
Then , the swf file is ok ,and when embeding the swf into HTML , it's ok too .
But when I use a iframe embeding a HTML elsewhere (in which contents the SWF),
the SWF is strange! The mouse-cursor is broken .... emmm the cursor is jumping
repeatedly from the windows-defualt-style to myself-design-style!(High
frequnecy-winking)
Excuse me for my poor English :)
_______________________________________________
osflash mailing list
[email protected]
http://osflash.org/mailman/listinfo/osflash_osflash.org
<<winmail.dat>>
_______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
