Book description
Well before Ajax and Microsoft's Windows Presentation Foundation hit the scene, Macromedia offered the first method for building web pages with the responsiveness and functionality of desktop programs with its Flash-based "Rich Internet Applications". Now, new owner Adobe is taking Flash and its powerful capabilities beyond the Web and making it a full-fledged development environment.
Rather than focus on theory, the ActionScript 3.0 Cookbook concentrates on the practical application of ActionScript, with more than 300 solutions you can use to solve a wide range of common coding dilemmas. You'll find recipes that show you how to:
- Detect the user's Flash Player version or their operating system
- Build custom classes
- Format dates and currency types
- Work with strings
- Build user interface components
- Work with audio and video
- Make remote procedure calls using Flash Remoting and web services
- Load, send, and search XML data
- And much, much more ...
Each code recipe presents the Problem, Solution, and Discussion of how you can use it in other ways or personalize it for your own needs, and why it works. You can quickly locate the recipe that most closely matches your situation and get the solution without reading the whole book to understand the underlying code. Solutions progress from short recipes for small problems to more complex scripts for thornier riddles, and the discussions offer a deeper analysis for resolving similar issues in the future, along with possible design choices and ramifications. You'll even learn how to link modular ActionScript pieces together to create rock-solid solutions for Flex 2 and Flash applications.
When you're not sure how ActionScript 3.0 works or how to approach a specific programming dilemma, you can simply pick up the book, flip to the relevant recipe(s), and quickly find the solution you're looking for.
Adobe Developer Library is a co-publishing partnership between O'Reilly Media and Adobe Systems, Inc. and is designed to produce the number one information resources for developers who use Adobe technologies. Created in 2006, the Adobe Developer Library is the official source for comprehensive learning solutions to help developers create expressive and interactive web applications that can reach virtually anyone on any platform. With top-notch books and innovative online resources covering the latest in rich Internet application development, the Adobe Developer Library offers expert training and in-depth resources, straight from the source.
Table of contents
- A Note Regarding Supplemental Files
- Preface
-
1. ActionScript Basics
- Introduction
- Creating an ActionScript Project
- Customizing the Properties of an Application
- Where to Place ActionScript Code
- How to Trace a Message
- Handling Events
- Responding to Mouse and Key Events
- Using Mathematical Operators
- Checking Equality or Comparing Values
- Performing Actions Conditionally
- Performing Complex Conditional Testing
- Repeating an Operation Many Times
- Repeating a Task over Time
- Creating Reusable Code
- Generalizing a Method to Enhance Reusability
- Exiting a Method
- Obtaining the Result of a Method
- Handling Errors
- 2. Custom Classes
-
3. Runtime Environment
- Introduction
- Detecting the Player Version
- Detecting the Operating System
- Checking the Player Type
- Checking the System Language
- Detecting Display Settings
- Scaling the Movie
- Changing the Alignment
- Hiding the Flash Player’s Menu Items
- Detecting the Device’s Audio Capabilities
- Detecting the Device’s Video Capabilities
- Prompting the User to Change Player Settings
- Dealing with System Security
-
4. Numbers and Math
- Introduction
- Representing Numbers in Different Bases
- Converting Between Different Number Systems
- Rounding Numbers
- Inserting Leading or Trailing Zeros or Spaces
- Formatting Numbers for Display Without a Mask
- Formatting Currency Amounts
- Generating a Random Number
- Simulating a Coin Toss
- Simulating Dice
- Simulating Playing Cards
- Generating a Unique Number
- Converting Angle Measurements
- Calculating the Distance Between Two Points
- Determining Points Along a Circle
- Converting Between Units of Measurement
-
5. Arrays
- Introduction
- Adding Elements to the Start or End of an Array
- Looping Through an Array
- Searching for Matching Elements in an Array
- Removing Elements
- Inserting Elements in the Middle of an Array
- Converting a String to an Array
- Converting an Array to a String
- Creating a Separate Copy of an Array
- Storing Complex or Multidimensional Data
- Sorting or Reversing an Array
- Implementing a Custom Sort
- Randomizing the Elements of an Array
- Getting the Minimum or Maximum Element
- Comparing Arrays
- Creating an Associative Array
- Reading Elements of an Associative Array
-
6. Display List
- Introduction
- Adding an Item to the Display List
- Removing an Item from the Display List
- Moving Objects Forward and Backward
- Creating Custom Visual Classes
- Creating Simple Buttons
- Loading External Images at Runtime
- Loading and Interacting with External Movies
- Creating Mouse Interactions
- Dragging and Dropping Objects with the Mouse
-
7. Drawing and Masking
- Introduction
- Setting a Line Style
- Setting Gradient Line Styles
- Drawing a Line
- Drawing a Curve
- Drawing an Arc
- Drawing a Rectangle
- Drawing a Circle
- Drawing an Ellipse
- Drawing a Triangle
- Drawing Regular Polygons
- Drawing a Star
- Filling a Shape with a Solid or Translucent Color
- Filling a Shape with a Gradient
- Filling a Shape with a Bitmap
- Scripting Masks
-
8. Bitmaps
- Introduction
- Creating a BitmapData Object
- Adding a Bitmap to the Display List
- Drawing a Display Object to a Bitmap
- Loading an External Image into a Bitmap
- Manipulating Pixels
- Creating Rectangular Fills
- Creating a Flood Fill
- Copying Pixels
- Copying Channels
- Creating Noise
- Creating Perlin Noise
- Using Threshold
- Applying a Filter to a Bitmap
- Dissolving Between Two Bitmaps
- Scrolling a Bitmap
-
9. Text
- Introduction
- Creating an Outline Around a Text Field
- Creating a Background for a Text Field
- Making a User Input Field
- Making a Password Input Field
- Filtering Text Input
- Setting a Field’s Maximum Length
- Displaying Text
- Displaying HTML-Formatted Text
- Condensing Whitespace
- Sizing Text Fields to Fit Contents
- Scrolling Text Programmatically
- Responding to Scroll Events
- Formatting Text
- Formatting User-Input Text
- Formatting a Portion of Existing Text
- Setting a Text Field’s Font
- Embedding Fonts
- Creating Text that Can Be Rotated
- Displaying Unicode Text
- Assigning Focus to a Text Field
- Selecting Text with ActionScript
- Setting the Insertion Point in a Text Field
- Responding When Text Is Selected or Deselected
- Responding to User Text Entry
- Adding a Hyperlink to Text
- Calling ActionScript from Hyperlinks
- Working with Advanced Text Layout
- Applying Advanced Anti-Aliasing
- Replacing Text
- Retrieving a List of System Fonts
- 10. Filters and Transforms
- 11. Programmatic Animation
-
12. Strings
- Introduction
- Joining Strings
- Using Quotes and Apostrophes in Strings
- Inserting Special Whitespace Characters
- Searching for a Substring
- Extracting a Substring
- Parsing a String into Words
- Removing and Replacing Characters and Words
- Retrieving One Character at a Time
- Converting Case
- Trimming Whitespace
- Reversing a String by Word or by Character
- Converting Between Strings and Unicode or ASCII
- 13. Regular Expressions
-
14. Dates and Times
- Introduction
- Finding the Current Date and Time
- Retrieving the Date Values
- Retrieving the Day or Month Name
- Formatting the Date and Time
- Formatting Seconds or Milliseconds as Minutes and Seconds
- Converting Between DMYHMSM and Epoch Milliseconds
- Using Timers
- Calculating Elapsed Time or Intervals Between Dates
- Parsing a Date from a String
-
15. Programming Sound
- Introduction
- Creating a Sound Object and Loading a Sound
- Starting and Stopping a Sound
- Setting the Buffer for a Sound
- Offsetting the Start of a Sound
- Playing a Sound Multiple Times (Looping)
- Getting the Size of a Sound File
- Reading the ID3 Tag of a Sound File
- Find Out When a Sound Finishes Playing
- Tracking the Progress of a Playing Sound
- Pausing and Restarting a Sound
- Reading the Level of a Sound
- Stopping All Sounds
- Reading the Sound Spectrum
- Changing the Volume or Pan of a Sound
- Creating a Sound Application
-
16. Video
- Introduction
- Loading and Playing Back Video
- Controlling Video Sound
- Reading Playback Time
- Reading Video Duration
- Controlling Playback Time
- Scaling Video
- Managing and Monitoring Buffering and Loading
- Listening for Cue Points
- Applying Filters to Video
- Pausing and Resuming Video
- Stopping Video
- Scrubbing Video
- Clearing the Video Display
- Determining User Bandwidth
- 17. Storing Persistent Data
- 18. Communicating with Other Movies
- 19. Sending and Loading Data
-
20. XML
- Introduction
- Understanding XML Structure (Reading and Writing XML)
- Creating an XML Object
- Adding Elements to an XML Object
- Adding Text Nodes to an XML Object
- Adding Attributes to an XML Element
- Reading Elements in an XML Tree
- Finding Elements by Name
- Reading Text Nodes and Their Values
- Reading an Element’s Attributes
- Removing Elements, Text Nodes, and Attributes
- Loading XML
- Loading XML from Different Domains
- Sending XML
- Searching XML
- Using HTML and Special Characters in XML
- 21. Web Services and Flash Remoting
- 22. Building Integrated Applications
- 23. File Management
- 24. Socket Programming
- 1. Unicode Escape Sequences for Latin 1 Characters
- Index
- About the Authors
- Copyright
Product information
- Title: ActionScript 3.0 Cookbook
- Author(s):
- Release date: October 2006
- Publisher(s): O'Reilly Media, Inc.
- ISBN: 9780596526955
You might also like
book
Radar Trends to Watch: September 2023
Read about the latest developments on O'Reilly Media's Radar.
book
Networking Fundamentals
Become well-versed with basic networking concepts such as routing, switching, and subnetting, and prepare for the …
book
Cooking for Geeks, 2nd Edition
Why do we cook the way we do? Are you the innovative type, used to expressing …
book
Everyday Enterprise Architecture: Sense-making, Strategy, Structures, and Solutions
Discover what needs to happen in enterprise-architecture practice—and not just its outcomes, but also the activities …