Cargando…

ActionScript developer's guide to Robotlegs /

Robotlegs is a standout among the ActionScript 3 development frameworks available today. With it, Flash, Flex, and AIR developers can create well-architected, testable, and flexible Rich Internet Applications--fast. This concise guide shows you how the light footprint and focused scope of this open...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Hooks, Joel
Otros Autores: Fallow, Lindsey
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Sebastopol, CA : O'Reilly, ©2011.
Edición:1st ed.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ia 4500
001 OR_ocn757519318
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 111018s2011 caua o 000 0 eng d
010 |a  2011275847 
040 |a UMI  |b eng  |e pn  |c UMI  |d CUS  |d COO  |d OCLCQ  |d DEBSZ  |d C6I  |d WAU  |d YDXCP  |d OCLCF  |d EBLCP  |d N$T  |d TEFOD  |d AU@  |d TEFOD  |d OCLCQ  |d FEM  |d OCLCQ  |d BRL  |d CEF  |d WYU  |d UAB  |d UKAHL  |d VT2  |d OCLCQ  |d INARC  |d OCLCO  |d OCLCQ 
019 |a 775301769  |a 880748053  |a 968063377  |a 969091562  |a 1062924276  |a 1103250281  |a 1129366006  |a 1153053170  |a 1192351927  |a 1240523332  |a 1244213498 
020 |a 9781449315849  |q (electronic bk.) 
020 |a 1449315844  |q (electronic bk.) 
020 |a 9781449315290  |q (electronic bk.) 
020 |a 1449315291  |q (electronic bk.) 
020 |z 9781449308902  |q (pbk.) 
020 |z 1449308902  |q (pbk.) 
029 1 |a AU@  |b 000052893302 
029 1 |a DEBSZ  |b 367965348 
029 1 |a DEBSZ  |b 431038201 
029 1 |a AU@  |b 000055775453 
035 |a (OCoLC)757519318  |z (OCoLC)775301769  |z (OCoLC)880748053  |z (OCoLC)968063377  |z (OCoLC)969091562  |z (OCoLC)1062924276  |z (OCoLC)1103250281  |z (OCoLC)1129366006  |z (OCoLC)1153053170  |z (OCoLC)1192351927  |z (OCoLC)1240523332  |z (OCoLC)1244213498 
037 |a CL0500000115  |b Safari Books Online 
037 |a 269B7295-FF25-45E5-86B3-C72D2A47A5BA  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.76.A65  |b H66 2011eb 
072 7 |a COM  |x 087000  |2 bisacsh 
072 7 |a COM  |x 034000  |2 bisacsh 
072 7 |a COM  |x 060130  |2 bisacsh 
072 7 |a COM  |x 060150  |2 bisacsh 
082 0 4 |a 005.1  |2 23 
049 |a UAMI 
100 1 |a Hooks, Joel. 
245 1 0 |a ActionScript developer's guide to Robotlegs /  |c Joel Hooks and Stray (Lindsey Fallow). 
250 |a 1st ed. 
260 |a Sebastopol, CA :  |b O'Reilly,  |c ©2011. 
300 |a 1 online resource (xii, 122 pages) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file  |2 rda 
588 0 |a Print version record. 
505 0 |a Table of Contents; Preface; Robotlegs: Something a little bit special; Who this book is for; Who this book is not for; Conventions used in this book; Using code examples; Safari® Books Online; How to contact us; Acknowledgments; Chapter 1. Robotlegs is a lightweight framework for ActionScript 3; What does Robotlegs actually do?; Robotlegs is a communication-and-cooperation framework; Direct conversation; Passing messages; Robotlegs helps with direct conversations and message passing; Robotlegs makes use of three object-oriented architectural patterns; Do you need a framework at all? 
505 8 |a Reasons to use a frameworkConsistency; Common understanding brings easier collaboration; Peer-reviewed solutions; A well-tested skeleton; Less code to write; Reasons not to use a framework; Framework learning curve; Terminology confusion; Performance tradeoffs; Framework coupling; 'Black box' code is hard to debug; Robotlegs aims to amp up the pros and minimize the cons; Less boilerplate code is a good thing ... ; Chapter 2. The Robotlegs dream ... ; 80% of the problems can be solved with 20% of the API; Coding for Robotlegs shouldn't tie you to the framework. 
505 8 |a Robotlegs aims to enable and not dictateMost AS3 applications benefit from the MVCS approach; Testing, testing! (We test, and we make it easy for you to test); Some final things every Robotlegs cadet should know; Chapter 3. Anatomy of a Robotlegs application; Joel's Personal Kanban; Lindz's Mosaic Design Tool; How a Robotlegs application gets things done; Architecture begins with Events and Commands; Getting to grips with Robotlegs architecture; The 'context' is the heart of your Robotlegs application; Your models and services are 'Actors' in your app. 
505 8 |a The MediatorMap provides a way to join your views to your app layerRobotlegs mediators are bridges, not view controllers; The CommandMap makes things happen; The shared event dispatcher joins everything together; ... and it goes a little something like this (event flow); User stories as implemented in Robotlegs; Personal Kanban example: Moving a task from 'backlog' to 'doing'; Mosaic Design Tool example: Saving a design; The same but different; All of this is possible because of the Robotlegs Injector; Chapter 4. Automated Dependency Injection. 
505 8 |a So, what exactly is Automated Dependency Injection?A dependency is just a requirement to use another object; You can fulfil a dependency in three different ways; You already use Dependency Injection; There are different ways to inject dependencies; Statics and globals make code rigid, brittle, hard to test, and prone to memory leaks; Locator patterns push extra responsibilities on your classes; Automated DI gets around the need to 'pass the parcel', but keeps code flexible; How does Robotlegs Injection work?; Automated DI is a handshake; You can specify an injection point in three ways. 
520 |a Robotlegs is a standout among the ActionScript 3 development frameworks available today. With it, Flash, Flex, and AIR developers can create well-architected, testable, and flexible Rich Internet Applications--fast. This concise guide shows you how the light footprint and focused scope of this open source framework not only solves your immediate coding problems, it helps you gain insight into AS3 architecture on a much deeper level. The authors provide a walkthrough of specific features in two applications they've written in Robotlegs, complete with code for each application as a whole. You'll l. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Application software  |x Development. 
650 0 |a Web site development. 
650 0 |a ActionScript (Computer program language) 
650 6 |a Logiciels d'application  |x Développement. 
650 6 |a Sites Web  |x Développement. 
650 6 |a ActionScript (Langage de programmation) 
650 7 |a COMPUTERS  |x Digital Media  |x General.  |2 bisacsh 
650 7 |a COMPUTERS  |x Interactive & Multimedia.  |2 bisacsh 
650 7 |a COMPUTERS  |x Web  |x Site Design.  |2 bisacsh 
650 7 |a COMPUTERS  |x Web  |x User Generated Content.  |2 bisacsh 
650 7 |a ActionScript (Computer program language)  |2 fast  |0 (OCoLC)fst00796237 
650 7 |a Application software  |x Development.  |2 fast  |0 (OCoLC)fst00811707 
650 7 |a Web site development.  |2 fast  |0 (OCoLC)fst01173243 
655 7 |a Handbooks and manuals.  |2 fast  |0 (OCoLC)fst01423877 
700 1 |a Fallow, Lindsey. 
776 0 8 |i Print version:  |a Hooks, Joel.  |t Actionscript developer's guide to Robotlegs.  |b 1st ed.  |d Sebastopol, CA : O'Reilly, ©2011  |z 9781449308902  |w (OCoLC)741540515 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781449311193/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26903773 
938 |a Askews and Holts Library Services  |b ASKH  |n AH26903269 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL769356 
938 |a YBP Library Services  |b YANK  |n 7486358 
938 |a Internet Archive  |b INAR  |n actionscriptdeve0000hook 
994 |a 92  |b IZTAP