HTML/CSS Service

Showcase

1 comment0 views
1 Star2 Stars

Flex Player Designs Gallery

Category: Resources    |    368 views    |    1 Comment

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

Share/Save/Bookmark

 

Exception Handling with Flex

Category: Flex Examples, flex tutorials    |    16,966 views    |    2 Comments

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);
}
}

Read more…

Share/Save/Bookmark

 

Creating a simple image gallery with the Flex TileList control

Category: Flex Examples    |    19,170 views    |    2 Comments

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>

Read more…

Share/Save/Bookmark