List of useful ActionScript components to re-use in Flex projects
Post by efox | Date: 2008-09-20
Looking for components that can re-use in your Flex projects? Below you can find some useful resources:
- http://www.sephiroth.it/file_detail.php?id=148
- SlideShow Components
- http://code.google.com/p/flexlib/wiki/ComponentList
- HSlider and VSlider
- ScrollableArrowMenu
- SuperTabBar
- ButtonScrollingCanvas
- DragScrollingCanvas
- http://orangeflash.eu/?page_id=85
- Papervision 3D-engine with good perfomance Flex – downloads
- http://code.google.com/p/as3-rpclib/ – Remote Procedurre Call (RPC) handling AMF0 (Flash Remoting MX), XML-RPC, JSON-RPC.
- http://blog.je2050.de/imageprocessing-library/ – image processing in AS3
- http://www.quietlyscheming.com/blog/components/ – set of components like:
- Animated DragTile Component 0.1
- Fisheye Component v0.3
- Flickr Roulette
- Interactive Calendar
- IPE Controls
- Landscape Zoomer
- RandomWalk component
- http://www.stretchmedia.ca/blog/index.cfm/Flex-2-Components
- DualSlider
- Flex Chart Range Selector
Libraries
ZIP andd other Packign formats
- FZip - http://codeazur.com.br/lab/fzip/
- AS3 Zip Library Release - http://www.nochump.com/blog/?p=15
Etc
- Distortion Effects – (demo)
- SpringGraph Flex Component
- SimpleFlvWriter.as – AS3 Class to Create FLV’s
- FZip – unpacking zip archives on fly
Click here to read this article...
Tags: actionscript components Flex projects
FZip - a useful Actionscript 3 zip library to process standard ZIP compressed files
Post by efox | Date: 2008-09-13
FZip is a cute little Actionscript 3 class library enables you to load standard ZIP archives and extract contained files while the archive is still loading, modifying, and creating standard ZIP archives. It parses ZIP archives progressively, allowing access to contained files while the archive is loading.
FZip is released under OSI approved zlib/libpng license.
List of ActionScript 3D engines for Flash developers
Post by efox | Date: 2008-09-09
I don't know why the Flash plugin is non-open source, but we can found many perfect open source projects. the following is a list of Open Source realtime 3D engine for Flash in actionscript. I love open source!
An open source 3D engine for the Flash platform. It is written and maintained by a small core team, and contributed to by its ever-growing community.

Click here to read this article...
Tags: actionscript 3D engine developer Open source
Implement custom events in ActionScript 3.0
Post by efox | Date: 2008-09-08
In ActionScript 3.0 you can now create your own Events that extends the Event class.
package.events
{
public class CustomEvent extends Event
{
public static const CUSTOM_TYPE:String = "customType";
public var customProp:String;
public function CustomEvent( type:String, cp:String, bubbles:Boolean, cancelable:Boolean )
{
super( type, bubbles, cancelable )
customProp = cp;
}
}
}
This can be used like: dispatchEvent( new CustomEvent( CustomEvent.CUSTOM_TYPE, "myProp", true ) ); It works fine until you need to re-dispatch the event, If you do re-dispatch the event like below:
myDispatcher.addEventListener( CustomEvent.CUSTOM_TYPE, onCustomEvent );
private function onCustomEvent( event:CustomEvent ):void
{
dispatchEvent( event );
}
the event is cast back to the type Event. To solve this you need to override the clone method inside your custom event class. This will keep your event as its original type.
Click here to read this article...
Tags: custom events actionscript







