- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
House
Rock
Fav. Bands:
Coldplay
Guns n Roses
Led Zeppelin
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
If you want to do it in AS2 there are gazillions of galleries in FlashDEN, i doubt you dont find one that suits your needs, take a time to search.
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
I love the beach one, btw are the stars falling 
Or it’s the earth rotating super fast?
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
Congrats 
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
Btw, the syntax to use the class is :
TintColor.addTint (TARGET, COLORCODE( ex. 0xFFFFFF ), ALPHAVALUE);
after you imported it of course.
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
Hey, i was in a “google quest” to find how to tint stuff in AS3 , and i found this so i decided to make it a class, here it is, enjoy.
package
{
import flash.display.MovieClip;
import fl.motion.Color;
import flash.geom.ColorTransform;
public class TintColor extends MovieClip
{
private static var _tintColor:Color;
private static var _target:MovieClip;
private static var _colorCode:uint;
private static var _alphaValue:Number;
public function TintColor ():void
{
// leave empty
}
public static function addTint (param1:MovieClip, param2:uint, param3:Number):void
{
_target = param1;
_colorCode = param2;
_alphaValue = param3;
_tintColor = new Color();
_tintColor.setTint (_colorCode, _alphaValue);
_target.transform.colorTransform = _tintColor;
}
}
}
Formated with Pastie : TintClass
IMPORTANT NOTE : All credits to jweeks123 for posting the original code , I only changed it to a Class.
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
Way to simple in my opinion, if you dont want to change the design, maybe you should consider adding some reflections to some components, also add some color.
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
Thats like WAYYYYYYY too cool
thanks alot for sharing.
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars
Me personally love AS3 , mainly because its more organized and the code has a more logical flow.
The thing that most makes AS3 developing really frustrating are the misleading error reports.
- Bought between 10 and 49 items
- Has been a member for 5-6 years
- Sold between 1 000 and 5 000 dollars

Im the one that clearly had a bit too much to drink 
