We Recommend

Programming in Objective-C Programming in Objective-C
Programming in Objective-C is a concise, carefully written tutorial on the basics of Objective-C and object-oriented programming. The book makes no assumption about prior experience with object-oriented programming languages or with the C language (upon which Objective-C is based). And because of this, both novice and experienced programmers alike can use this book to quickly and effectively learn the fundamentals of Objective-C.


Posted By

willcodeforfood on 12/16/07


Tagged


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

gartenstuhl


Buttons


Published in: ActionScript 


  1. descripcion_mc.onRelease = function() {
  2. gotoAndPlay("descripcion");
  3. };
  4.  
  5. equipamiento_mc.onRelease = function() {
  6. gotoAndPlay("equipamiento");
  7. };
  8. precio_mc.onRelease = function() {
  9. gotoAndPlay("precio");
  10. };
  11. normas_mc.onRelease = function() {
  12. gotoAndPlay("normas");
  13. };
  14. contactar_mc.onRelease = function() {
  15. gotoAndPlay("contactar");
  16. };
  17. PDF.onRelease = function() {
  18. getURL("http://www.mysite.com", "_blank");
  19. };

Report this snippet 

You need to login to post a comment.