Advertisement
Guest User

Main

a guest
Jul 14th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package
  2. {
  3. import flash.display.Sprite;
  4. [SWF(width="585", height="427", frameRate="24")]
  5. public class Main extends Sprite
  6. {
  7. public function Main()
  8. {
  9. var buddy:Puppy = new Puppy("Buddy");
  10. addChild(buddy);
  11. buddy.x = 25;
  12. buddy.description.text = "Hello World.";
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement