A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: myButton.useHandcursor ??

  1. #1
    absent
    Join Date
    Aug 2000
    Location
    NB, Canada
    Posts
    155

    Talking

    hello, i've been trying to figure out how to properly
    use this command... with no success though...
    http://www.macromedia.com/support/fl...ionary108.html
    the dictionary does not provide too much help i'm afraid.
    has anyone tried this yet? or can provide me with a sample
    of how i should be using the code?..
    thank you in advance! ^_^


  2. #2
    Senior Member
    Join Date
    Sep 2000
    Posts
    273
    If you want to keep the button from displaying the handcursor, try putting this on the first frame of your main timeline:

    Code:
    Button.prototype.useHandCursor = false;
    HTH,

    Spyder

  3. #3
    absent
    Join Date
    Aug 2000
    Location
    NB, Canada
    Posts
    155

    Wink Great, Thanks!

    Thanks! it works great...
    i noticed though it removes the hand cursor for all
    buttons, is there a way to specify which buttons to
    remove it from?..

    i tried: myButton.prototype.useHandCursor = false;

    but that didn't work... any thoughts?.. and again
    Thanks so much.. ^_^ !


  4. #4
    President, save the
    New Zealand dollar foundation

    Join Date
    Jun 2000
    Posts
    1,743
    take the "prototype" out.
    myButton.useHandCursor = false;

    prototype means all instances of the Button object (all buttons) get affected.

  5. #5
    absent
    Join Date
    Aug 2000
    Location
    NB, Canada
    Posts
    155

    Thank you!

    i was having troubles with that for a while
    till i figured out i needed a path to the movie
    instance the buttons are in...

    myMovie.myButton.useHandCursor = false;

    Thanks again!.. ^_^

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