Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I make an imported photo fading to white? 1

Status
Not open for further replies.

itais

Programmer
Jul 3, 2003
4
CL
I know it must be very easy, but I realy tried and tried and couldn't find a solution.
I tried to brak it apart - doesn't work.
I tried to convert it to symbol - doesn't work.

Anyone knows what's the trick?

Thanks,
Itai
 
1 way

place a white rectangle over the photo. convert it to a movie clip and fade it in.



_______________________________________
You know you're old if you can remember when bacon, eggs and sunshine were good for you
 
Well, I tried it and it still doesn't work...
Can you explain the procedure in more details?
Anyone has more ideas?

thanks,
Itai
 
place the white rectangle over the photo

make it a movie clip (F8) and give it an instance name of clip say

add to main timeline

clip._alpha = 0;
fadephoto = setInterval(fade,100);
function fade(){
clip._alpha += 2;
if (clip._alpha >=99){
clearInterval(fadephoto);
}
}

_______________________________________
You know you're old if you can remember when bacon, eggs and sunshine were good for you
 
well.. i make would make a tween animation with the photo and then set to white. I don't know how big ur photo is ..maybe with big files it's not a good idea.

or u fade-in a white area as a tween over the photo

::::::::::::::::::::::::::::::::::::
:::::::::: 55-Studio.com :::::::::::
::::::::::::::::::::::::::::::::::::
 
motion tween the photo and tint it to 'white' on the last keyframe?
i like the ol' billwatson technique though.....
fading with style ;)
cheers
paul
 
Thanks, guys, it worked best with the Graphic Symbol. I've used the Alfa Effect (0%) to Fade it into White.
Thanks again,
Itai
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top