A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: Questions about text buttons

  1. #1
    Member
    Join Date
    Feb 2004
    Posts
    31

    Questions about text buttons

    I am creating a button that is text. I want, whenever someone goes over the text it blinks and it is a loop until someone's mouse is not over it.

    Also, Have it link to one of my pages that I am creating?

    Thank you so much

  2. #2
    Member
    Join Date
    Sep 2004
    Location
    Sweden
    Posts
    35
    You could make a MC instead of a button and have your loop in there. Or have the rollOver call a function that changes color(blink effect of some sort) every XXXX interval and then the rollOut to stop the function.

    but it's theese two scripts you'll be using

    on (rollOver) {
    //Your code for what should happend here
    }

    and

    on (rollOut) {

    //Your code for what should happend here
    }

    as for the link to pages i asume you mean to open html pages in a new window?

    on (release) {
    getURL("myPage.html", "_blank");
    }

    was this what you where looking for or something more advanced? I'm sure there's 10 ways to do it.

  3. #3
    Senior Member green_eye's Avatar
    Join Date
    Apr 2004
    Location
    Sarasota, Florida
    Posts
    1,496
    Hi,

    Try this-
    Attached Files Attached Files

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