- eBay Auction Shopping Alt
- Credit Cards
- Best deals, discount prices
- Rencontre
- Casual Fashion from Uniqlo
- Jobs
- Run your car on only tap water
- Annonce auto gratuite
- Cell Phones
FLVFetcher
Download youtube and google video flv’s directly into flash.
http://www.visible-form.com/blog/flvfetcher-directly-download-youtube-and-google-flvs-into-flash/
MultiMap
From the site:
Recently I needed a HashMap for a project to map key/value pairs but in that particular case the Map required to map not just one but several values to a key. I could have used an array or object to store the values in and map that one but in practice it turned out that accessing the map looked rather messy. It would be much more elegant to have a map to that multiple values can be mapped directly. After some investigation (strangely even Java seems not to have a MultiMap included) I came up with writing my own MultiMap class, so here it is!
http://blog.hexagonstar.com/as3_multimap_class/
TextMetrics
From the site:
Have you ever needed to find out where the line breaks occur in a dynamic TextField? How about the precise x/y coordinates of a particular phrase/string along with its width & height so that you could highlight it somehow? Or maybe the width of each line of text? That’s all possible with the gs.utils.text.TextMetrics class. And to be consistent with the getTextLineMetrics() function in the TextField AS3 class, it also returns the descent, ascent, and leading values too. You must publish to Flash 8 or later for accurate results.
http://blog.greensock.com/textmetrics/
Flex Toolkit for eBay
Developers can use the Flex toolkit to build application or modules in Flash or Flex using the toolkit to interact with eBay.
http://developer.ebay.com/developercenter/flex/toolkit/
Visualizer
I dunno…create cool effects with the Visualizer class.
From the site:
Our Visualizer has been updated again. New features include remote background image loading, video dragging, continual color updates (so threshold and glow filtering colors are updated as you’re choosing respective colors), and improved usability. These features are also acompanied by a host of small tweaks and changes. Enjoy!
http://labs.bigspaceship.com/blog/?p=5
DistortImage for AS3
an updated version of the original DistortImage class for AS2, which allows you to programmatically distort images.
http://www.rubenswieringa.com/blog/distortimage
DistortImage
Distort Images programmatically in AS2.
http://sandy.media-box.net/blog/distordimage-the-way-to-distord-bitmaps-by-code.html
StateMachine
From the site:
Often finite state machines are implemented (in real projects and tutorials) as a mass of code in a single class, usually a giant switch statement hundreds or (in one instance I’ve seen) thousands of lines long. A simple switch statement is great for a simple agent with two or three states, but the more complex the agent gets, both in the number and complexity of the states, the more complex the code gets. Using a switch statement also offers very little opportunity to reuse code across different agents and different projects (other than by cutting and pasting).
The solution I’ve used in a number of projects is to implement each state as a separate class. The class will contain all the code necessary for entering, updating and exiting that state and nothing else. This way, the code for each state is separate and the agent code isn’t cluttered by it.
http://www.bigroom.co.uk/blog/finite-state-machines-for-ai-in-actionscript/
WSBackgroundPixelSkin
From the site:
WSBackgroundPixelSkin is a free Flex component for creating patterns within Flex containers such as Application, Canvas, HBox, VBox, Form etc. It based on pure CSS and ActionScript without any images. It creates pretty patterns using the powerful BitmapData classes of Flex.
http://www.websector.de/blog/2007/07/06/pimp-your-flex-app-using-wsbackgroundpixelskin/
SimpleButton
Flash has a built-in SimpleButon class…this one dispatches an ‘onReleaseOutside’ event that is available in AS2 but not AS3.