PDA

View Full Version : invisiable curser


avid
09-04-2001, 01:57 PM
I want to put an input text box on a black background, only the black curser becomes invisiable. How do I change it's color?

Strok
09-11-2001, 04:43 AM
Make some invisable MC on the size of textfield and
You can change your mouse to MC(fake_mouse)

onClipEvent (mouseMove) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
Mouse.hide();
startDrag ("fake_mouse", true);
} else {
Mouse.show();
//add some code here to stop drag and move your MC to some position outside of movie
}
}

You have to loop it !