Re: [Flashcoders] OT: Design patterns

2006-02-23 Thread Stéphane Bebrone
Hi Anggie, Take a look at this interesting interview of Erich Gamma about Design Patters (How to use): http://blog.itpub.net/post/1087/48817 Greets, Stéphane. 2006/2/23, Troy Rollins [EMAIL PROTECTED]: On Feb 23, 2006, at 1:07 AM, Manuel Saint-Victor wrote: Aangie- I'm a noob also and I

Re: [Flashcoders] OT: Design patterns

2006-02-23 Thread Martin Wood
Take a look at this interesting interview of Erich Gamma about Design Patters (How to use): http://blog.itpub.net/post/1087/48817 thats really good. definitely worth reading for anyone with questions about design patterns. :) Martin. ___

Re: [Flashcoders] OT: Design patterns

2006-02-23 Thread Roman Blöth
Anggie Bratadinata schrieb: Stephane, that's a good article. [..] Take a look at this interesting interview of Erich Gamma about Design Patters (How to use): http://blog.itpub.net/post/1087/48817 And - if not already mentioned here - think about buying the book Head First - Design Patterns

Re: [Flashcoders] OT: Design patterns

2006-02-23 Thread Anggie Bratadinata
I'm still waiting for that book (from a nearby bookstore). Maybe next month :( -- Anggie Bratadinata Web|Graphic|Flash Jl. Raya Langsep 21 Malang - East Java I N D O N E S I A http://design.ibshastautama.com Roman Blöth wrote: Anggie Bratadinata schrieb: Stephane, that's a good article.

RE: [Flashcoders] OT: Design patterns

2006-02-23 Thread Bjorn Schultheiss
of one another. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Roman Blöth Sent: Friday, 24 February 2006 3:06 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] OT: Design patterns Anggie Bratadinata schrieb: Stephane, that's a good article

[Flashcoders] OT: Design patterns

2006-02-22 Thread Anggie Bratadinata
Hi experts, What is the advantage(s) and disadvantage(s) of design patterns? I've been studying MVC and Singleton patterns but so far I'm not sure how those can make my software better. TIA, -- Anggie Bratadinata Web|Graphic|Flash Jl. Raya Langsep 21 Malang - East Java I N D O N E S I A

Re: [Flashcoders] OT: Design patterns

2006-02-22 Thread Troy Rollins
On Feb 22, 2006, at 11:11 PM, Anggie Bratadinata wrote: What is the advantage(s) and disadvantage(s) of design patterns? I've been studying MVC and Singleton patterns but so far I'm not sure how those can make my software better. They don't necessarily make your software any better. They

Re: [Flashcoders] OT: Design patterns

2006-02-22 Thread Anggie Bratadinata
If I don't plan to extend my app. nor there is late requirements to meet then using DP is not necessary? Thanks Troy, -- Anggie Bratadinata Web|Graphic|Flash Jl. Raya Langsep 21 Malang - East Java I N D O N E S I A http://design.ibshastautama.com Troy Rollins wrote: On Feb 22, 2006, at

Re: [Flashcoders] OT: Design patterns

2006-02-22 Thread Grant Cox
Wouldn't it be great to have a project like that - that actually stays on track and doesn't have last minute changes :) It is never necessary to use design patterns, but they can make your project more structured. More structured usually means easier to understand, and easier to modify (as

Re: [Flashcoders] OT: Design patterns

2006-02-22 Thread Manuel Saint-Victor
Aangie- I'm a noob also and I 've been trying to figure out the role of design pattterns. To tell you truth ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive:

Re: [Flashcoders] OT: Design patterns

2006-02-22 Thread stacey
Design Patterns help you solve problems. You need to have many objects listening to one, dependant on that one - Observer Pattern might help. You need extend an object without subclassing - Decorator Pattern might help. You need one instance only of a class, Singleton comes in handy ( often people

Re: [Flashcoders] OT: Design patterns

2006-02-22 Thread Troy Rollins
On Feb 23, 2006, at 1:07 AM, Manuel Saint-Victor wrote: Aangie- I'm a noob also and I 've been trying to figure out the role of design pattterns. Not too long ago, I couldn't see it either. But as you go along with a few advanced projects, you begin to realize where they would be