A Flash Developer Resource Site

Results 1 to 12 of 12

Thread: [OOP]constructor function

Threaded View

  1. #7
    Monkey Moderator Lexicon's Avatar
    Join Date
    Jul 2001
    Location
    UK
    Posts
    2,038
    Yes, but you often initialise a class instance with properties.

    And it's more convenient to write...

    Code:
    var coords:PinPoint = new PinPoint(10,20);
    instead of

    Code:
    var coords:PinPoint = new PinPoint();
    coords._x = 10;
    coords._y = 20;
    when creating an instance of the class in the swf.
    Last edited by Lexicon; 02-01-2006 at 11:43 AM.
    www.lexicon-design.co.uk
    If we aren't supposed to eat animals, then why are they made of meat?
    If Vegetarians like animals so much, why do they eat all their food?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center