Latest Flex Player Designs Gallery
Welcome to CSSHOOK, a free galleries of Website Designs, Logo Designs, Application Designs, Menu Designs, Footer Designs, Art Designs, Business Cards and Free Resources.
- Its purpose is to showcase designers’ work and to act as a small portal to the CSS design community.
- If you are “in need of inspiration”, you have come to the right place.
We encourage people to create beautiful original sites based on CSS technology. Promoting best sites is our main goal for maintaining a community where quality is the most important criteria.


Flex Player Gallery Link
A common hurdle a developer may face is dealing with exceptions in BlazeDS. When an exception is thrown in Java, how do we handle this in flex? Here is a simple and flexible approach inspired by Scott Morgan.
1. Create a Java Class that extends RuntimeException.
package com.flexpasta.exception;
public class FlexException extends RuntimeException
{
public FlexException(String message)
{
super(message);
}
}
Continue reading ‘Exception Handling with Flex’
Flex Photo gallery in Flex using the TileList control, Image control, and the PopUpManager class.
Full code after the jump.
View MXML
<?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"layout="vertical"verticalAlign="middle"
backgroundColor="white">
<mx:Style>
Continue reading 'Creating a simple image gallery with the Flex TileList control'
The current version is 10,0,12,36.
What is new?
3D effects
Custom filters
Advanced text support
Drawing API
Hardware acceleration
Dynamic sound generation
File upload and download APIs
Continue reading ‘Flash Player 10 Released’
A Flex application can consist of MXML files, ActionScript classes, SWF files, and SWC files.
The Flex compiler transforms the main MXML file and its children into a single ActionScript class linking in all the reference-imported classes. Once the transformation is complete, the end result is a single SWF file that can be deployed on the server.
Every time you make changes to your application, a new SWF file is generated. You may find it more convenient to remove the reusable components and compile those into SWC files, which can be included in a library path for your application.