has ALL you need!
A community for book lovers to create their own bookshelves, share and explore books.
Sign Up for FREE!Similar books
Object-Oriented ActionScript For Flash 8 | Head First Object-Oriented Analysis and Design | Developing Rich Clients with Macromedia Flex | Advanced ActionScript 3 with Design Patterns | Programming Flex 2 |
Book Description
Book Description
Part of the Adobe Training from the Source series, the official curriculum from Adobe, developed by experienced trainers. Using project-based tutorials, this book/CD volume is designed to teach the techniques needed to create sophisticated, professional-level projects. Each book includes a CD that contains all the files used in the lessons, plus completed projects for comparison. This title covers the new development framework for Rich Internet Applications, Adobe Flex 2. In the course of the book, the reader will build several Web applications using Flex Builder and incorporating MXML and ActionScript 3.0. [강컴닷컴 제공]
Groups with this in collection
Hong Kong Adobe Flex and AIR User Group (2) |
- Book Details
- English Books
- Rating:



(4)
4 stars 
3 stars 
2 stars 
1 star 
- Paperback 624 Pages
- Edition: Pap/Cdr
- ISBN-10: 032142316X
- ISBN-13: 9780321423160
- Publisher: Adobe Press
- Pub date: Oct 20, 2006
- Dimensions: 23 cm x 19 cm x 3 cm Just how big is that?

FAQ
How does the voting work?
Find a comment helpful / unhelpful? Cast your vote. Only one vote from each person will be counted. Every hour we gather all the votes, add them up, add some magic source, and there we have the new sorting for the comments on the page of this book!I see mistakes in the book information. How can I fix it?
Under "Book details", there is a link labeled "Improve data of this book". You can use that form to send us the correct information.


Lesson 24 Using Shared Objects: Shared Objects 可以由複雜的資料結構組成(話是這樣說沒錯,但是目前的經驗是,也 只有簡單的資料型別可以,BitmapData 等大型的東西就要轉成Byte 寫進去,再自己 parse出來了)。學到的重點是使用前最好 instantiate 給它 ex. example.data.accounts = new Array();。另外就是,如果存的東西比較複雜 ex. boolean + array => example.data.accounts = {hasWork:Boolean, buyBooks:Arra ... Continue
Lesson 24 Using Shared Objects: Shared Objects 可以由複雜的資料結構組成(話是這樣說沒錯,但是目前的經驗是, 也只有簡單的資料型別可以,BitmapData 等大型的東西就要轉成Byte 寫進去,再自己 parse出來了)。學到的重點是使用前最好 instantiate 給它 ex. example.data.accounts = new Array();。另外就是,如果存的東西比較複雜 ex. boolean + array => example.data.accounts = {hasWork:Boolean, buyBooks:Array}。