A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: Button mouse icon???

  1. #1
    Senior Member Cash_Hr's Avatar
    Join Date
    Aug 2001
    Location
    Croatia, Zagreb
    Posts
    263
    Does anybody knows how?

    How to make that mouse icon dosen't
    change icon on mouse over the button?

    Tnx

  2. #2
    Pillow Daddy m_andrews808's Avatar
    Join Date
    May 2001
    Location
    London England
    Posts
    924
    The only way of doing this I've come across is by cheating:

    Put this code into every button:

    on(rollOver) {
    _root.MouseGraphic._visible = true;
    Mouse.hide();
    }

    on(rollOut) {
    _root.MouseGrpahic._visible = false;
    Mouse.show();
    }

    Then make a MC which is a graphic of the mouse pointer with an instance name of MouseGraphic, and put this code into it:

    onClipEvent(enterFrame) {
    _x = _root._xmouse;
    _y = _root._ymouse;
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center