A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: [CS3] MAJOR buttons help

  1. #1
    Strange Cheese
    Join Date
    Aug 2008
    Posts
    2

    [CS3] MAJOR buttons help

    i am trying to turn this site into
    flash. (images might take a while to load)

    when i make the buttons for the login names, i want to get it so that even when you mouse out of the area, the text-box type thing is still visible until you click outside the area.

    anyone know how?



  2. #2
    Senior Member whispers's Avatar
    Join Date
    Mar 2001
    Location
    CFA2h (respect the HEX)
    Posts
    12,755
    ?? what part are you un-sure of?

    make your button...

    add code so that when you rollOver it.. it makes the textField movieClip visible..

    when you rollOver the other name..it makes the previous textField movieCLip invisiible..and its own textField clip visible.


    example:
    PHP Code:
    dadButton.onRollOver = function(){
        
    dadFieldClip._visible true;
        
    familyFieldClip._visible false;
    }
    familButton.onRollOver = function(){
        
    dadFieldClip._visible false;
        
    familyFieldClip._visible true;


  3. #3
    Strange Cheese
    Join Date
    Aug 2008
    Posts
    2

    ummm...

    i just want it so that once you've clicked it, it will stay clicked until you click elsewhere.


    but your answer would work.

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