im looking for a way to get a custom cursor on my flash site…also…i want this cursor to load automatically…i do not want my viewers to click a button to get the cursor to load…any advice would be great…thanks
A little search of the kirupa tutorials returns…
Don’t mean to be ****y, but did you try one of these?
Here’s the link…
http://www.kirupa.com/developer/flash5/follow.htm
It’s Flash 5, but the AS is the same…
*Originally posted by Freddythunder *
**Don’t mean to be ****y, but did you try one of these?
Here’s the link…
It’s Flash 5, but the AS is the same… **
lol, beat ya :thumb:
BTW: My comment got added to your list of comments
Drat!! If I wasn’t so ****y with the screenshot - I woulda got ya on the draw!!
ReBTW: Cool!! I’m glad you took part!!
i didnt find that one…but thanks for helping
ak…another question…i have a draggable MC on my site…is there a way i can make the cursor work again after dragging the MC???..and i was wondereing if there is a way to make a boundary for the cursor to stop???
stopDrag();
2.put your startDrag script in a big IF statement that defines where you want it to happen. Like:
if(_x>20 && _x<40 && _y>20 && _y<40){
Mouse.hide();
startDrag(whatever, true);
}
That should do it!!