Others say...

"Perfect balance of concepts and AS3 specific idioms"
This book is clearly written by authors who "think in ActionScript 3" and it's written at the perfect level for folks who already understand design patterns but want some guidance on how they apply (or don't) in AS3.

If you are looking for an introduction to Design Patterns, this book does a decent job of that but it generally assumes you have a bit of understanding in that regard. The HeadFirst book (java) walks you through application evolution which really makes the case for why the patterns are useful. The HeadFirst book also includes exercises that really make the concepts sink in and teach you to recognize when each pattern applies. However, the head first book is very much a java book. Similarly, the original design patterns book by the Gang of Four (GoF) is about design patterns in C++.

This book, however is written clearly from the perspective of an ActionScript 3 (AS3) programmer. In some core ways, AS3 is very different than Java and even more so with respect to C++. The event model is baked into the language and asynchronous programming is a different style. Also, XML and XPath are native constructs in ActionScript 3, not libraries like they are in other languages. These differences (among others) imply that some of the original GoF and Java patterns manifest themselves differently and some patterns don't apply at all. This book doesn't merely take the Java or C++ idioms and make them run under ActionScript 3. They've totally re-thought them and presented the ones that are appropriate for AS3 in a way that is probably ideal for AS3. They've also left out or provided alternatives for the traditional ones that are not appropriate considering the language differences. For instance, the observer pattern is one of the core GoF and HeadFirst patterns. However, it doesn't show up in this book. Instead, there is a chapter on "WORKING WITH EVENTS" which is the native AS3 construct that essentially takes the place of the observer pattern. In contrast, the O'reilly book happily shows you an AS3 translation of the GoF/HeadFirst observer pattern and never tells you to use the built-in event structure instead.

Not only do the authors demonstrate their "thinking in AS3" at the level of design patterns but their code examples include lots of little AS3 specific idioms. AS3 still shows it's dynamic language roots in subtle ways and these authors play to that strength. For instance, a dynamic class inherited from the Proxy class includes a method called, getProperty(). In chapter 4, they override this method and use it in combination with E4X (the native XML capability), to provides an elegant way to build a generic application settings framework that you can use in any application without modification. If your XML settings file changes, the class will appear to magically change its interface. The chapter is about the Singleton pattern but I learned about dynamic/Proxy/getProperty() and E4X idioms as a side benefit.

If I had one complaint about this book, it's a minor one and it's a complaint that I also make about the Java language and I'm now starting to regularly make about Adobe's recommendations with respect to AS3 class interfaces. Like C# and Python and other more recent languages, AS3 has a construct for turning public property references into get/set function calls without changing the calling code. This book shows you that style of coding as well as the Java recommended getSomeProperty/setSomeProperty style but it recommends that you never use public properties in your class interfaces. In my mind, the main advantage to having the get/set function language feature is that you can start out with public properties and later change them to accessors methods without breaking the calling code. The reason we don't recommend that you have public properties in java is that there is no language feature that allows you to later add accessor methods without breaking the calling code. In Java, the lessor of two evils is to have you always create them up front. I see no reason to live with the same evil in AS3. However, this is minor nit and now that you've read my explanation here, you can ignore the recommendation. :)

I highly recommend this book. If you have the least bit of experience with design patterns and are now coding in AS3, just get this book. If you are totally new to the concept of design patterns, then you may want to get the HeadFirst book AND this book.

"Excellent, but a few quibbles"
Not to rehash the many other good reviews, I'll keep this short. This is an excellent book that opened my eyes in many ways; I am a beginning OOP programmer with quite a bit of procedural experience. This book is a great bridge.

However, do beware the code typos: there are a lot of them and it can slow comprehension. It knocked this down from 5 to 4 stars for me; simply compiling and running the code would have caught most of these and I find it sloppy.

Also, in my newbie opinion, this book talks the talk but does not walk the walk when it comes to advocating composition over inheritance. It says to favor composition, but in many of the examples, perhaps to make them shorter, extension is used instead. For example, I think a complex object should almost always *contain* its graphic component-- sprite or movieclip-- not extend and therefore *be* a graphic component. But maybe I am, in my newbieness, too doctrinaire on this point.

"Great for migration to AS3 and into using DesignPatterns"
This is well written. It appeals to more than one need. If I could I would down grade the rating to 3 stars after I got deeper into doing examples and dealing with the and incorrect and missing files at the download site. See details below.

For those who are Actionscript OO programmers that want to get into the Design Patterns the first two chapters will lead you there quickly. However you will want to read them again after experimenting with the design patters presented in chapters 3 - 12. At least a lot more clicked for me doing it that way. I actually compiled all the examples for the many chapters I read (and hand typed some for experience) using the mxmlc compiler. So you can do these without Flash CS3 if you must.

The design patterns presented in chapters 3-12 all have very useful Actionscript examples using AS3. So you can apply the examples to your projects. As well you will see how new functionality of AS3 is applied. For example it uses regular expressions in the decorator pattern FileReader example.

The final section of the book Chapter 13-16 show new important changes to using Actionscript 3 th at you need to unlearn from AS2 such as Events, Data Communications, the new EX4 for XML and regular expressions.

Digital files unfortunately at author's site are not perfect. Also I found a few minor typos such as DecoratorExample2 as the constructor to the DecoratorExample class. As well as incorrect files where the Decorator FileReader example files were repeated for the Decorator Example Shapes.

There are also a few code typos in the text. Minor but still. Such as page 121 the class should import and extend AbstractReaderDecorator but the code was printed as ReaderDecorator. Another example is page 147. There is an undefined variable _object.

Another problem is chapter 10 download files are not all provided at the download site. The first 1/2 of chapter is reasonably explained but the game example is extensive, weakly explained and NO DOWNLOAD FILES. Only the brave could follow it.

It looks the author was cleaning up code for the excellent presentation and missed a few in editing. Copy and paste of code might have prevented that. A coder with experience in debugging can spot and correct these quickly.

Peachpit makes it a mystery for feedback to get errata input and digital files corrections. Correct that Peachpit and improve quality using your readers as free input!

Despite the few typos and digital file errors, the book is currently (June 2007) the only choice for those wanting a fast track from AS2 and into AS3 with patterns.

"Build flexible and adaptive applications"
Building websites and web animations with Adobe Flash and ActionScript is only the tip of the iceberg when it comes to what you can create with the Flash and ActionScript combination. When you are working on a complex project such as a desktop application, you need to consider design and architecture. This book by Joey Lott and Danny Patterson will take you through the steps for building a flexible and adaptive application. As you can tell from the topic, the reader needs to be an advanced user who has a solid background in programming and experience with object-oriented ActionScript.

The book begins with an introduction to application design principles and follows with a discussion of the most proven design patterns for building flexible and adaptive applications. First, the authors discuss Polymorphism and how important programming to an interface is to application design. Next, the authors use an example project to teach the Model View Controller pattern. The sample project is an analog and digital clock model which demonstrates how changing the model from analog to digital does not affect the application due to the flexibility of the design. The next pattern the authors discuss is the Singleton design pattern that can be used to limit a class to one global instance, such as the state of the mouse cursor.

One task that many applications need to perform is to access a remote resource such as an external image file or to use an object that is not immediately available. The authors discuss the two most common proxy patterns used for this situation; Remote and Virtual. The two sample projects they use are an image loader and search proxy. Another common task is dealing with a collection of data and the authors discuss the Iterator pattern which can read data without endangering the data structure. Another frequent task is to deal with hierarchical data such as a file system. The authors use a file and directory system as a sample project to demonstrate how to use the Composite pattern. Many times, Flash applications are based on reusable components and the authors discuss how to use the Command and Memento patterns to build a sample game. They round out the book with a few advanced ActionScript topics such as events, sending and loading data, E4X and regular expressions.

Joey Lott is an author of several books and Senior Software Architect at Schematic. Danny Patterson is an author of several books and articles. He is a Senior Flash Architect at Schematic and a Flash/Flex consultant.

"Simple implementation examples for the OO minded developer"
If you are familiar with Object Oriented programming, this book will show you how to implement design patterns in Actionscript 3. The examples are clear and concise.

I highly recommend you have at least a moderate skill level with Actionscript 3 before approaching this book, however- if you can't skim the code and understand it without having to look up the functions they are using, then it will be a frustrating read.

 

Buy Cheap Software Now!
  Advanced ActionScript 3 with Design Patterns

List Price : $49.99
Our Price : from $27.50




Special offer for you..find the cheapest!
fantastic_shopping from FL, United States offers this stuff for:
Price : $27.50
Usually ships in 1-2 business days
sbd- from IN, United States offers this stuff for:
Price : $29.92
Usually ships in 1-2 business days
bookrackrh from SC, United States offers this stuff for:
Price : $31.48
Usually ships in 1-2 business days
Amazon.com offers this stuff with condition New, new for:
Price : $31.49
Usually ships in 24 hours
ebookman_com from CA, United States offers this stuff for:
Price : $31.56
Usually ships in 1-2 business days
allnewbooks from NJ, United States offers this stuff for:
Price : $32.13
Usually ships in 1-2 business days
pbshop from , United Kingdom offers this stuff for:
Price : $32.51
Usually ships in 1-2 business days
pbshopus from NJ, United States offers this stuff for:
Price : $32.51
Usually ships in 1-2 business days
thermite-media offers this stuff with condition New, new for:
Price : $33.68
Usually ships in 1-2 business days
bigrock_media from NV, United States offers this stuff for:
Price : $33.69
Usually ships in 1-2 business days
What our customer's say!

"excellent concise info on AS3", I realize the book title (and the focus and organization) is about design patterns, but I thought it was worth adding the fact that--for me at least--it's the one book I keep coming back to for great lucent coverage of really key AS3 concepts including event dispatching (and using IEventDispatcher instead). I mean, Colin's Essential AS3 is one to turn to for definitive answers on sub-atomic (and important) details... but I still keep coming back to Danny and Joey's book because it's so direct and to the point. To really learn a subject you need more than a book--but to go back over things... to get a good skeleton starter script (which doesn't have extra baggage)... and for brief clear explanations, this book really does it. It's by no means a dated book either. I just think some people might pass over this book because the title makes it sound like it just covers design patterns when, in fact, it's just a great AS3 book.

"Good Introduction to Design Patterns", If you are interested in improving your code to be more maintainable, flexible and gaining a better understanding of Object Oriented Programming (OOP) this is a good book to have. The core concepts are explained in readable language and the code examples are for the most part well-written.

I did notice one criticism of another reviewer is that the book did not address Flex UI components or MXML. Flex is certainly beyond the scope of this book and there are many excellent books on Flex 2+ that will better explain the concepts of programming in Flex. This book is about ActionScript 3 and so it mainly addresses the classes available in the flash package. That does not mean that you cannot apply the concepts from this book to a Flex application however Cairngorm and PureMVC are the patterns most Flex developers gravitate towards and so they would be a better starting point for someone interested in that development platform. For those patterns a developer would likely find the internet to be the best resource for tutorials and information however both of those design patterns are based on core concepts explained in detail in this book so it can give you greater understanding and make the learning process easier.

Even if Flex is your primary area of interest this book can help with understanding many of the underlying core concepts of programming in ActionScript 3 and given the right understanding you can create a Flex application with little or no MXML.

The section on events is worth purchasing the book. It is well-written and is one of the better if not best explanations on the subject as has been pointed out in other reviews.


"Pretty Good for a Re-hash", This book served really well as a review to some of the GOF patterns. I already understood the patterns covered, looking at the Actionscript implementations was still somewhat helpful.

I bought the book for its coverage of Actionscript events, which is really the key to creating great apps with Actionscript and Flex (WARNING: all of the examples assume you're building Flash applications, which are similar but not identical to Flex apps). And for its coverage of E4X, Actionscript 3's new XML format. Those two chapters are gems, and I wish I could have bought them in pamphlet form.

"Great Book!", Although written specifically for ActionScript this book really helped me further my understanding of design patterns and how to apply them to all my software development projects. Additionally, the the last few chapters cover some advanced ActionScript topics like E4X. Recommended for any experienced developer interested in design patterns.

"Need this in your library.", At first when I thought about buying this book I was not sure to what to expect but I did see Joey Lott's name on it and thought it had to be worth it. Well it seems that this is exactly what I have been looking for. As a developer I come across many common problems that haunt me through every application I create, from passing data throughout the application to proper encapsulation.

This is a must have for your library. I have been working with Actionscript 3.0 for close to a year now and I will now have this book close to my side at all times.

Joey Lott(who never disappoints me) and Danny Patterson give a clear comprehensive explanation of design patterns for developers. Not only do they explain them but also clean examples on how and why you would use them.

The only reason I do not give 5 stars is there is a lot of syntax errors especially in the code snippets. Since I am a little more advanced in Actionscript I was able to catch them with little effort but a novice programmer may not.




 
You might need this...

ActionScript 3.0 Cookbook: Solutions for Flash Platform and Flex Application Developers
details..
 

Essential ActionScript 3.0 (Essential) (Essential)
details..
 

Foundation Actionscript 3.0 Animation: Making Things Move!
details..
 

Programming Flex 2: The Comprehensive Guide to Creating Rich Internet Applications with Adobe Flex (Programming)
details..
 

ActionScript 3.0 Design Patterns: Object Oriented Programming Techniques (Adobe Developer Library)
details..
 
Read this reviews before You buy...

"Buy this book right now!", I have only read half way through the book and my understanding of coding theories has grown so much. The chapters in the book really break down the importance of design patterns, and even patterns you thought would be useless or complex are brought into light. More than just code the theory of coding structure is what really inspires me. I highly recommend this book especially to those that work in a team environment. You can not go wrong with this one. Hats off to Joey and Danny.

"Highly recommended.", This is quite good. Actually, as far as design patterns applied to ActionScript with Object-Oriented principals go, this is the bomb.

It's nice to see a design pattern book written using ActionScript as the targeted language. No more reading books targeted for C++, C#, or Java, and try to apply them to AS2. This is especially meanful to cases where ActionScript has no equivalent syntax.

While the book is targeted for AS3, it is equally applicable to AS2. The principals are the same.

It's also nice to finally pick up a book that calls itself "Advanced ActionScript" that indeed talks about advanced topics. Highly, highly recommended.

"Packs a lot in a small spine", This is definitely a must-read for anyone who is venturing into Flash/Flex applications, or is serious about becoming a full-time Flash Platform RIA developer.

This book is slim and, I feel, quite perfect in that I never felt overwhelmed by any chapter and never saw a hint of fluff. I really enjoy these direct topics.

"The real deal",
The design patterns movement, the beginnings of which can be traced to Gamma, Helm, Johnson and Vlissides famous Design Patterns book, has informed and changed software development, and spawned a raft of books and study groups.

That's right, people actually get together, read these books one chapter at a time, and talk about software design patterns - for fun! (I admit to being one of them). So, Joey Lott and Danny Patterson are taking on a real challenge in writing a book on this topic, and the term "advanced" in the title is well-advised.

The first chapter is not about patterns but pretty basic object oriented stuff: inheritance vs. composition, polymorphism, code conventions, design first then write unit tests first. These topics are standard fare for a book of this type, and the chapter is blessedly succinct.

The second chapter is on programming to interfaces, a fundamental idea of great importance. Lott and Patterson give one of the clearest explanations I have read of the advantages, and give a convincing argument for always programming to interfaces even when you are using inheritance. Dude! Actionscript3 has interfaces!

Then you get the chapters on patterns: Model/View/Controller, Singleton, Factory/Template, Proxy, Iterator, Composite, Decorator, Command, Memento, and State. I guarantee that after you have read these chapters and studied the code, you will understand these patterns a lot better than before, and will have ideas on how to use them.

The book is rounded out with entire chapters on Events (everything you always wanted to know but were afraid you wouldn't understand why), sending and loading data, E4X, and RegEx.

I have only a couple of minor cavils about the book. It would have been SO EASY to include the compilation command line.

/flex_sdk_2/bin/mxmlc MyProgram.as

See? Now you can compile for free! The book doesn't give you info on command line tools, but assumes you have downloaded and installed the 30-day flex compiler. And in the wonderfully worked out and fully crafted source code which you can download from the publisher's website, once again I was left scratching my head, when it said you have to set the source path to the library. Thanks very much, but tell me how?

It is not possible to have a useful book of this type without showing substantial amount of source for real projects, and fortunately, here Lott and Patterson really deliver. The projects are not on the level of usefulness of Phillip Kerman's book on Flash 8 at work, but they are complete enough to illustrate the patterns. All source is in 100 percent Actionscript 3, with no Flex component source; since the book is not about Flex I consider this to be an advantage. At any rate, this book communicates the usefulness, as well as the nuts and bolts, of some fundamental software design patterns, several of which I have already used, and others which I will use soon.

"Very good for any programmer w/ OO background", This book definitely will help programmers w/ OO background to quickly pickup design patterns in Action Script 3.0. I've applied a few of them successfully in my current Flex 2 project.

 
 
 

All the software listed in this directory are shareware and commercial software. There are no free software here. We have many utilities which run on windows, mac / macintosh, linux and unix. As one of the download directory in internet we have many software and application. All of our applications / app are downloadable for your computer. We also have shareware, demo, osx, linux, xp, windows, 95, 98, 2000, win, winfiles program file. The extension of files may vary, it can zip, exe, jpg and many more. We don't support illegal software like hack, crack and serial number. No hacking and cracking.

Online PAD Generator / Download Site / Term Of Use / Privacy Policy / Disclaimer

 
 

Copyright ? 2004-2008. Shareware Download, Files Download. All Rights Reserved.