PhotoDune

Posts by Mott

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

House
Rock

Fav. Bands:

Coldplay
Guns n Roses
Led Zeppelin

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

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.

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

I love the beach one, btw are the stars falling :o

Or it’s the earth rotating super fast?

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

Congrats :)

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

Btw, the syntax to use the class is :

TintColor.addTint (TARGET, COLORCODE( ex. 0xFFFFFF ), ALPHAVALUE);

after you imported it of course.

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

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.

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

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.

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

Thats like WAYYYYYYY too cool :D thanks alot for sharing.

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

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.

63 posts
  • Bought between 10 and 49 items
  • Has been a member for 5-6 years
  • Sold between 1 000 and 5 000 dollars
Mott says

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

by
by
by
by
by