We Recommend

The Scheme Programming Language The Scheme Programming Language
This thoroughly updated edition of The Scheme Programming Language provides an introduction to Scheme and a definitive reference for standard Scheme, presented in a clear and concise manner. Written for professionals and students with some prior programming experience, it begins by leading the programmer gently through the basics of Scheme and continues with an introduction to some of the more advanced features of the language.


Posted By

wintondeshong on 02/11/08


Tagged

class textmate template movieclip actionscript3


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

andrewrench


Flash 9 Class Template (MovieClip)


Published in: Other 


  1. /** -----------------------------------------------------------
  2. * Class Name
  3. * -----------------------------------------------------------
  4. * Description:
  5. * - ---------------------------------------------------------
  6. * Created by:
  7. * Modified by:
  8. * Date Modified:
  9. * - ---------------------------------------------------------
  10. * Copyright ©2008 Winton DeShong
  11. * - ---------------------------------------------------------
  12. */
  13. package com.wintondeshong.userinterface
  14. {
  15. import flash.display.MovieClip;
  16.  
  17. public class DataRow extends MovieClip{
  18.  
  19.  
  20.  
  21. /** -----------------------------------------------------------
  22. * Constructor
  23. * -----------------------------------------------------------
  24. */
  25. public function DataRow(){
  26. trace ("DataRow Loaded");
  27. };
  28.  
  29. /** -----------------------------------------------------------
  30. * Properties
  31. * -----------------------------------------------------------
  32. */
  33.  
  34. /** -----------------------------------------------------------
  35. * Public Methods
  36. * -----------------------------------------------------------
  37. */
  38.  
  39. /** -----------------------------------------------------------
  40. * Private Methods
  41. * -----------------------------------------------------------
  42. */
  43.  
  44. }
  45.  
  46.  
  47. }

Report this snippet 

You need to login to post a comment.