We Recommend

HTML: The Definitive Guide HTML: The Definitive Guide
They teach you that learning HTML is like learning any other language and that reading a book of rules can only take you so far. Readers begin writing what may be their first Web page just two pages into the book's second chapter. From there on, they provide a wide range of HTML coding to allow readers to learn from good examples. The book includes a handy "cheat sheet" of HTML codes for quick reference.


Posted By

damarev on 06/25/07


Tagged


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

Hirmine


button behavior


Published in: ActionScript 


  1. stop ();
  2.  
  3. this.onEnterFrame = function(){
  4. if(rewind == true){
  5. prevFrame();
  6. }
  7. }
  8.  
  9. this.onRollOver = function(){
  10. rewind = false;
  11. play();
  12. }
  13.  
  14. this.onRollOut = function(){
  15. rewind = true;
  16. }
  17.  
  18. this.onRelease = function(){
  19. getURL("http://www.flashvault.net");
  20. }

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: Hirmine on June 26, 2007

Example Url: http://www.kirupa.com/developer/mx2004/button_effect.htm

Posted By: Hirmine on June 26, 2007

Example Url: http://www.kirupa.com/developer/mx2004/button_effect.htm

You need to login to post a comment.