ActionScript

AS3 Quickie – Frame Label Events

With Flash Player 11.3 and above, the ability to listen for a frame label event is now included in the runtimes. For example; if you have a MovieClip symbol with a certain set of animation within it, and you have a number of frame labels defined upon the symbol’s timeline… you can now listen for …

AS3 Quickie – Frame Label Events Read More »

AS3 Quickie – Native Mouse Cursors

We’re looking all the way back to Flash Player 10.2 for a peek at native mouse cursor support! This feature allows us to use bitmap based mouse cursors that run at the OS level rather than inside the display list in Flash Player. Huge performance gains! [kml_flashembed publishmethod=”static” fversion=”10.2.0″ movie=”/wp-content/uploads/2012/07/NativeCursor.swf” width=”550″ height=”400″ targetclass=”flashmovie” play=”true” loop=”true” …

AS3 Quickie – Native Mouse Cursors Read More »

AS3 Quickie – Mouse Lock and Relative Mouse Coordinates

Another great feature in Flash Player 11.2 is the combination of the mouseLock boolean in flash.display.Stage along with the ability to read movementX and movementY from MouseEvent.MOUSE_MOVE. When used within Flash Player, we must be in fullscreen for mouse lock to be enabled and the relative mouse coordinates made available. The primary focus of this …

AS3 Quickie – Mouse Lock and Relative Mouse Coordinates Read More »

AS3 Quickie – Monitor Throttle Events

One of the great new features introduced with Flash Player 11.2 is the ability to detect when the runtime throttles, pauses, or resumes normal activity through the flash.events.ThrottleEvent class. This is useful for saving state, or pulling back our activity when a throttle is detected. What does the throttle actually do? Well, if you have …

AS3 Quickie – Monitor Throttle Events Read More »

“Genie” – Automated UI Tester for Adobe ActionScript

Did you think that Brackets was the only open-source-star Adobe has been working on? What many people fail to realize is that the Flash technology side of things is under heavy, HEAVY development; new versions of the runtimes, expanded operating system support, incredible ActionScript improvements, major tooling updates, and projects like Monocle, SWF Investigator, Starling, …

“Genie” – Automated UI Tester for Adobe ActionScript Read More »

AS3 Quickie – Removing the right-click menu from Flash content

One of the great new features introduced with Flash Player 11.2 is the ability to intercept the right-click from a user’s mouse. A simple MouseEvent listener can be added to the Stage or any object which extends flash.display.InteractiveObject. Not only does this have the effect of completely removing the right-click menu from Flash content, but …

AS3 Quickie – Removing the right-click menu from Flash content Read More »

Getting Started with ActionScript

ActionScript is an object-oriented programming language that has a wide reach on the web, the desktop, mobile devices, and beyond. If you want to be able to hit many targets with one code base, ActionScript is a great way to do so; it also lets you build a variety of application types, from 2D and …

Getting Started with ActionScript Read More »