Preview mode: Common | Row form

The ColorMatrixFilter class lets you apply a 4 x 5 matrix transformation on the RGBA color and alpha values of every pixel in the input image to produce a result with a new set of RGBA color and alpha values.  You can apply the filter to any display object (that is, objects that inherit from the DisplayObject class), such as MovieClip, SimpleButton, TextField, and Video objects, as well as to BitmapData objects. Here is the example to adjusting brightness of a picture.

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="
http://www.adobe.com/2006/mxml" layout="vertical"
 creationComplete="transformImage()"   verticalScrollPolicy="off" horizontalScrollPolicy="off">
 <mx:Script>
  <![CDATA[
  

    [Bindable]
    [Embed(source="images/demo.jpg")]
    private var demoImage:Class;
   

click here to see more...

Tags: Flex ColorMatrixFilter brightness

Categorize:Flex | Link | Comment: 0 | Read times: 48

32 fashion textures for scrapbooking

32 fashion textures for scrapbooking

 

Tags: fashion textures scrapbooking

Categorize:Resources | Link | Comment: 1 | Read times: 95

List of cool Photoshop text effects tutorials

Are you an photoshop designer looking for more tutorials to sharpen your skills?  if you’re looking for more information on the topic of text effect, the following resources shows some beautiful, high-quality Adobe Photoshop text effects tutorials I have collected.

Smooth Glass Type

Learn how to create a translucent glass type text effect.

click here to see more...

Tags: collection Photoshop text effects tutorials

Categorize:Resources | Link | Comment: 2 | Read times: 197

Create cool color transition button in Flex

In this article I want to shows how to create color transition button by fading the background color of an element in Flex .  In order to make the button more attractive, I added some effects like drop shadow, bevel and glow.

//colorAnimaton.as
package com.foxarc
{

import mx.effects.AnimateProperty;
import com.foxarc.instance.colorAnimationInstance;
import mx.effects.IEffectInstance; 

click here to see more...

Tags: Flex color transition button

Categorize:Flex | Link | Comment: 0 | Read times: 295