A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: rollover btn w/text

  1. #1
    Member
    Join Date
    Jul 2000
    Posts
    51

    Smile

    Hi All,
    This should be an easy ? for you. How do you make this effect: when a person rollovers a button simultaneously text appears somewhere else on the page b/c of the rollover?

    Thank you for all your wonderful help!
    -Fweb

  2. #2
    Senior Member
    Join Date
    Jun 2000
    Posts
    1,180
    Hi..
    Heres a couple of ways to accomplish this:
    1) Go into the buttons editing mode and put your text in the over keyframe. You'll have to mess around until you get the text to appear where you want it to.

    2) Make your text a Mc symbol so you can target it and give it a name. Add the following script to a button:

    on (rollOver) {
    myText._visible=1;
    }
    on (rollOut) {
    myText._visible=0;
    }

    Add an action to the first frame of your movie to set the visibility of the text MC to false:

    myText._visible=0;

    Hope this helps.

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