Skip to content

Tag Archives: design patterns

JS Fun

25-Mar-07

For the last few months I've been playing around with different design patterns and methodologies in Javascript. I've been looking at the Composite pattern and also Aspects Oriented Programming (AOP).
AOP is a way of changing the behaviour of existing code without modifying it. It does this by providing, what AOP calls, advice at certain [...]

Design Patterns in Flash

14-Sep-03

Now Actionscript is OO, I thought it would be useful to try out implementing a design pattern in Flash. The pattern I chose is the Memento pattern, which is mainly used to implement "undo" functionality in applications. The reason I chose Memento is because its a pattern that uses interfaces and I wanted to explore [...]