RE: [Flashcoders] About OOP metodology

2006-07-26 Thread Merrill, Jason
Solutions >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:flashcoders- >>[EMAIL PROTECTED] On Behalf Of Adrian Park >>Sent: Wednesday, July 26, 2006 4:39 AM >>To: Flashcoders mailing list >>Subject: Re: [Flashcoders] About OOP metodology >> >>The ap

Re: [Flashcoders] About OOP metodology

2006-07-26 Thread Adrian Park
gt; > Greetz, > > > > Bernard > > > > > -Oorspronkelijk bericht- > > > Van: [EMAIL PROTECTED] > > > [mailto:[EMAIL PROTECTED] ] Namens elibol > > > Verzonden: vrijdag 30 juni 2006 17:06 > > > Aan: Flashcoders mailing list > > >

Re: [Flashcoders] About OOP metodology

2006-07-26 Thread Adrian Park
from the ui > (movieclips)." > > > Greetz, > > Bernard > > > -Oorspronkelijk bericht- > > Van: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] Namens elibol > > Verzonden: vrijdag 30 juni 2006 17:06 > > Aan: Flashcoders mailing list > &g

Re: [Flashcoders] About OOP metodology

2006-07-26 Thread Ricardo Sánchez
; Verzonden: vrijdag 30 juni 2006 17:06 > Aan: Flashcoders mailing list > Onderwerp: Re: [Flashcoders] About OOP metodology > > Try a compositional approach. You might design a set of > classes that reference movieclips and delegate events to the > class; this would be contrary to e

RE: [Flashcoders] About OOP metodology

2006-06-30 Thread Bernard Visscher
; Greetz, Bernard > -Oorspronkelijk bericht- > Van: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Namens elibol > Verzonden: vrijdag 30 juni 2006 17:06 > Aan: Flashcoders mailing list > Onderwerp: Re: [Flashcoders] About OOP metodology > > Try a compositional a

Re: [Flashcoders] About OOP metodology

2006-06-30 Thread elibol
Try a compositional approach. You might design a set of classes that reference movieclips and delegate events to the class; this would be contrary to extending movieclips. This way you can design movieclips specific to the site and design the code specific to the logic. You could even abstract th

Re: [Flashcoders] About OOP metodology

2006-06-30 Thread Adam Pasztory
I generally prefer loading external SWFs for this sort of thing. That way the individual form SWFs are not dependent on the master SWF. And you avoid library bloat. You could create a template that is a starting point for building individual forms. -Adam On 6/30/06, Ricardo Sánchez <[EMAIL PR

[Flashcoders] About OOP metodology

2006-06-30 Thread Ricardo Sánchez
I've just started to work in a big internet communication agency. We have to make 2 or 3 microsites every week. Each of which uses a very similar form to get user data. All that changes from one to another is a couple of fields and the look of it. My question is: What's the best way to implement