Guest User

Untitled

a guest
Jun 23rd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //hide invisible button
  2. hiddenButton._visible = 0;
  3. //turn off hand cursor use on hidden button
  4. hiddenButton.useHandCursor = false;
  5. //turn off button 2
  6. button2_btn._visible = 0;
  7. //button functions
  8. button1_btn.onRollOver = function() {
  9. //show button 2 and hidden button
  10. button2_btn._visible = 1;
  11.  
  12. };
  13. button2_btn.onRollOut = function() {
  14. //hide button 2 and hidden button
  15. button2_btn._visible = 0;
  16.  
  17. };
  18.  
  19.  
  20. button2_btn.buttonMode = false;
  21. button2_btn.useHandCursor = false;
Add Comment
Please, Sign In to add comment