you can produce this effect in Actionscript (AS1.0)
make the image a movieclip and give it an instance name -
clip1, add a main timeline script -
Color.prototype.setBrightOffset = function(offset){
var trans = new Object();
trans.rb = trans.gb = trans.bb = offset;
this.setTransform(trans);
}
MovieClip.prototype.setBrightness = function(offset){
var c = new Color (this);
c.setBrightOffset(offset);
};
iv = 255;
clip1.setBrightness(iv);
function fader(){
iv < 0 ? clearInterval(bright) : iv -= 5;
clip1.setBrightness(iv);
};
bright = setInterval(fader,10);
hth
[quoted text, click to view] "Paycheck" <webforumsuser@macromedia.com> wrote in message
news:cadd1c$22c$1@forums.macromedia.com...
> Hi all I am wondering if anyone can explain or help me code this effect as
seen
> here on this
http://www.ronmacphoto.com/# When you click on one fo the
images
> in teh scroll bar you will see the image burn in from white to the true
colors.
> I ahve been trying to re-create this effect with the brightness tween but
> still am unable to get the overall effect as dramatic.
>
> The effect takes a picture and when the image comes in it burns in from a
> bright white to a soft even fade to the true colors. I would be gratefull
to
> anyone who could either explain the process or help me with an FLA that I
could
> break down.
>
> Again the web site up top ronmac.com will show an example of it.
>
> Thank you in advance.
>
> JM
>