Fading A Jpg In MX
How do you fade out a jpg in MX?
I have been trying to do it with tweens and I'm stuck.
FlashKit > Flash Help > Flash Newbies
Posted on: 05-08-2003, 10:23 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Fading And Reverse Fading Text
I'm so new to this it's sick. But I figure I can take a few days and learn as much as I can. I'm building a website wherein I'll have a splash page before entering the main contents of the site.
I'm using Flash 5. On the splash page I want to know how to create a text object that appears in a 'reverse fade' fashion. I imagine a 'reverse fade' function can be done with any object or graphic - I've seen it on these awesome websites listed at FK.
I don't know if I'm evening asking this question right. I'm able to use CoffeeCup Firestarter and make things appear and fade easily (duh - who couldn't with that program) but can't view the code the Firestarter program produces in order to learn how it happened.
Appreciate any help someone could give me.
Thanks,
Jeff
Fading In And Fading Out With Multiple Photos
Can someone please tell me how I can do a fade in fade out on photos? I am wanting to have about 6 photos and each photo is suppose to fade into another. I have searched Google for this but got nowhere. Thanks in advance.
Alpha Fading Not Fading
Hi im designing a flash intro/header for a website although the alpha fading effects im using show up and work perfectly while viewing the animation in flash mx when exported to .swf the fades do not take place at all. Any suggestions as to what the problem might be the main animation is in a movie clip (ive done this laods of tiems before and it works).
Fading In, Fading Out, Resize...
hi there... because no one reacted on my previous topics i decided to start all over again... this time i actionscripted the whole thing... let me discribe 'the thing' and 'the problem'. happy reading
The thing is a kind of photogallery ( i know that there already are a lot of gallery, but i wanted to make one myself...). I want to let photo's to fade in and to resize when loaded en to fade out when loading another one... fading in and resizing isn't to difficult... but sometimes it won't fade in and won't resize... i really don't get it. This only happens 1 out of 10 times. But when i try to intergrate the fade out it goes wrong 50% of the time... who can help me??
actionscript:
Code:
_root.finished = 100;
time = 0;
foto = new Array("foto6.jpg", "foto1.jpg", "foto2.jpg", "foto3.jpg", "foto4.jpg", "foto5.jpg");
current = 0;
function checkfadein(){
if(_level2._alpha = 0.000000000){
fadein = setInterval(fadeIn, 60);
} else
_level2._alpha = 0.000000000;
fadein = setInterval(fadeIn, 60);
}
function resizepic(){
_root.finished = 0;
_level2._alpha = 0.000000000;
checkfadein();
_level2._y = 100;
_level2._x = 100;
_level2._yscale = 20;
_level2._xscale = 20;
}
function fadeIn() {
_root.fade = "fading in";
_root.finished = 0;
_level2._alpha += 10.00000000;
if (_level2._alpha>=95) {
_root.finished = 100;
_root.fade = "faded in";
clearInterval(fadein);
}
}
function fadeOut() {
_root.fade = "fading out";
_root.finished = 0;
_level2._alpha -= 10.0000000000;
if (_level2._alpha <= 5) {
_root.fade = "faded out";
clearInterval(fadeout);
}
}
function preload() {
loadMovieNum("zwolle/"+dir, 2);
_level2._y = 500;
attachMovie("loader", "loader", 1001);
loader._y = 150;
loader._x = 300;
loaded = 0;
total = 100000;
this.onEnterFrame = function() {
total = _level2.getBytesTotal();
loaded = _level2.getBytesLoaded();
percent = (loaded/total)*100;
loader.txtpercent = Math.round(percent)+"%";
loader.balk._xscale = percent;
if (loaded>=total) {
removeMovieClip("loader");
resizepic();
delete this.onEnterFrame;
}
};
}
function changepic() {
_root.finished = 0;
if (current<foto.length-1) {
current++;
} else {
current = 0;
}
dir = foto[current];
//fadeout = setInterval(fadeOut, 60);
preload();
}
stop();
i also attached the fla... when you use it... make a folder with the name "zwolle" and put some .jpgs in the folder with the name foto1.jpg, foto2.jpg... foto6.jpg
i would really appreciate any kind of help please...
Picture Fading In/ Fading Help
Hey gang I am trying to get a picture to fade in on my intro. And for the life of me cant get it done. I am have adjusting the easing but that seems to have no effect. I just have images popping up essentially I just can get them to start from a point where they are invisible, how do I do it?
Fading In, Fading Out, Resize...
hi there... because no one reacted on my previous topics i decided to start all over again... this time i actionscripted the whole thing... let me discribe 'the thing' and 'the problem'. happy reading
The thing is a kind of photogallery ( i know that there already are a lot of gallery, but i wanted to make one myself...). I want to let photo's to fade in and to resize when loaded en to fade out when loading another one... fading in and resizing isn't to difficult... but sometimes it won't fade in and won't resize... i really don't get it. This only happens 1 out of 10 times. But when i try to intergrate the fade out it goes wrong 50% of the time... who can help me??
actionscript:
Code:
_root.finished = 100;
time = 0;
foto = new Array("foto6.jpg", "foto1.jpg", "foto2.jpg", "foto3.jpg", "foto4.jpg", "foto5.jpg");
current = 0;
function checkfadein(){
if(_level2._alpha = 0.000000000){
fadein = setInterval(fadeIn, 60);
} else
_level2._alpha = 0.000000000;
fadein = setInterval(fadeIn, 60);
}
function resizepic(){
_root.finished = 0;
_level2._alpha = 0.000000000;
checkfadein();
_level2._y = 100;
_level2._x = 100;
_level2._yscale = 20;
_level2._xscale = 20;
}
function fadeIn() {
_root.fade = "fading in";
_root.finished = 0;
_level2._alpha += 10.00000000;
if (_level2._alpha>=95) {
_root.finished = 100;
_root.fade = "faded in";
clearInterval(fadein);
}
}
function fadeOut() {
_root.fade = "fading out";
_root.finished = 0;
_level2._alpha -= 10.0000000000;
if (_level2._alpha <= 5) {
_root.fade = "faded out";
clearInterval(fadeout);
}
}
function preload() {
loadMovieNum("zwolle/"+dir, 2);
_level2._y = 500;
attachMovie("loader", "loader", 1001);
loader._y = 150;
loader._x = 300;
loaded = 0;
total = 100000;
this.onEnterFrame = function() {
total = _level2.getBytesTotal();
loaded = _level2.getBytesLoaded();
percent = (loaded/total)*100;
loader.txtpercent = Math.round(percent)+"%";
loader.balk._xscale = percent;
if (loaded>=total) {
removeMovieClip("loader");
resizepic();
delete this.onEnterFrame;
}
};
}
function changepic() {
_root.finished = 0;
if (current<foto.length-1) {
current++;
} else {
current = 0;
}
dir = foto[current];
//fadeout = setInterval(fadeOut, 60);
preload();
}
stop();
i also attached the fla... when you use it... make a folder with the name "zwolle" and put some .jpgs in the folder with the name foto1.jpg, foto2.jpg... foto6.jpg
i would really appreciate any kind of help please...
Color Burn Using SetTransform. Can Burn Fading In But How Do You Burn Fading Out ? :)
I have found out how to burn multiple movie clips using this code:
PHP Code:
MovieClip.prototype.fadeIn = function() {
var t = 0;
var ease = 25;
var myColor = new Color(this);
var cto = myColor.getTransform();
myColor.setTransform({ra:100, rb:255, ga:100, gb:255, ba:100, bb:255, aa:100, ab:0});
var cWhite = myColor.getTransform();
this._alpha = 0;
this.onEnterFrame = function() {
this._alpha += 10;
if (this._alpha>100) {
this._alpha = 100;
t++;
for (var c in cWhite) {
cWhite[c] += (cto[c]-cWhite[c])/ease;
}
myColor.setTransform(cWhite);
if (t>400) {
myColor.setTransform(cto);
delete this.onEnterFrame;
}
}
};
};
pic1.fadeIn();
pic2.fadeIn();
This burns/fades in... however i need a similar function to burn/fade out...
If anyone can help me that would be great
Many Thanks
Fading?
How do I make text fade in or out?
Fading
Hello all!
Hmm, posted this in the correct section but nobody replied! Thought I'd try here seeing as though this is where the people are!
Quite a simple one this (I imagine!), but then I am new to this music lark. How can I get a song to fade in at a certain frame and fade out at another?!
Figured it be quicker asking you lot than messing around with flash for ages!
Cheers!
telekin:
__________________________________________________ __________
Fading Between Jpg's
Help!!
I'm a photographer building my on-line gallery with simple 'goto frame number' actions.
I would like to play around with fading from one image to another and can't seem to find out how to do if it can be done?
Any help would be appreciated !
Thanks
Ernie
Fading ?
hi, how do i fade out a txt.
ex: black txt to white (white background)
im a newbe and dont know much about flash.
i have a guidebook but it st*nks.
pls help me.
Help On Fading
got couple of questions:
1. how to make a mask that can cover a pic to make the pic blur, in other words, how to make a see through mask and use on a pic?
2. how to make a video frame or a pic frame to fade out at the end of play and call an other frame to start play? Please help!
Fading In And Out
I'm new to Flash but learning things fairly quickly.....now my question is......if I wanted to create a intro page and I want to fade things in and out....what is hte best method to use to do this? any suggestions will be greatly appreciated
Fading
Hi
I'm having a few problems trying to work out how to get an image to fade. What I want to do is have a button where an image fades in when the user rolls over it and then on the mouseout state I want the image to fade out again. Is this possible to do without too much complicated actionscript? I'm using MX.
Thanks
Fading In And Out
hey im working on making my website pretty much flash based, and ive got a lot of nice tricks ive mearned from other peoples sites and such. One thing i cant figure out how to do is make a picture fade in or fade out, and i was wondering if maybe someone could point me to a tutorial or explain how. I have Flash MX incase you need to know.
thank you
Fading In And Out
I need help with fading objects in and out in flash MX. I found a tutorial on it and followed every step exactly, no luck. Someone help me please!
Fading
Okay, this is probably really obvious, but... I've just begun to work with MX and I can't get something to fade in. I have a word (it's a button) and I want it to fade in. How do I just make it fade in? Thanks!
Fading?
Can someone tell me the easiest and most effective/most common way a fade transition is made on either text or graphics? Thanx
Fading In And Out
Cheerz for the response to my last query about loading bars - most helpful thanks.
Ive gotta do a snazzy flash animation for college which is great, but i wanna really impress the lecturer. How do i make things fade in and out??
Im sure that with ur help guyz i can rly drop their jaws!
Laterz
Fading
this is gonna sound really dumb....but Ive just started using MX and I cant get things to fade. Any know how?
Fading
i am trying to do something very simple and have my images fade one after the other and i can't figure out how to do i. It just goes to an abrupt change i want it to fade ?
Fading In And Out
How do I fade text in and out?
I am using Flash MX, Mac OS X.
Thanks,
Kenn_Dogg3
Fading
i want to know how to make the screen fade away and fade in.
Fading
I'm using Flash MX and would like to know how I would go about Fading in and out of movie clips, or between scenes? If someone could help me out I would appreciate it!
Fading......
how do i get a scene to fade into another scene, or just to get a scene to fade to black?
Fading Help PLZ
Lets make this easy....
MAKE A BUTTON
MAKE TEXT w/ALPHA = 0
ON MOUSE OVER BUTTON
MAKE TEXT FADE IN ex: ALPHA +5 EVERY 5 FRAMES...
NOW....
CAN SOME-1 PLEASE!!!!! HELP ME DO THIS?!
Fading
hello,
i have a problem. I am using 6 different swf for my website. They are 6 different swf pages for my website. Im am loading the pages with:
loadVariablesNum();
Now. The problem is coming. I want to use a fading effect while going from the one page to another. How can I do this with the 6 different swf files?
Fading
I'm working on a website and want to do something along the lines of the box in the upper left hand corner of this site: Click Here
When you mouseover, the image darkens, then slowly fades.
I've attached what I have so far. I can get the variables to change, but it doesn't fade. I think it's going too fast to be noticed. i'm used to working with a Ti-83+ Calculator in Basic, so speed is a whole new ball game to me. How can I slow the fade down?
Fading
This may be a stupid question, but I'm new to Flash, so bear with me. I tried to make a word fade in, and I got it to work, but then when I did "test movie", instead of fading in, it just appeared. It worked fine when I just played it from the timeline though!
Fading
Is there anyone, who can tell me how the fading effect between the pictures on this site hase been done.
link
I've been searching for this effect for a while now, but I can't get it quitte right.
Fading
I've got some pics which I've converted to movie clips. What I want them to do is fade in and out with the on(rollOver)/on(rollOut) syntax. I can get them to appear easy enough with the ._alpha syntax but I cant work out how to fade tehm in and out gradually.
Any Ideas?
Fading Out
Hi all.
I'm making a movie, and I want to fade some stuff out to go on to the next scene where the view on the characters will be different. How do I do this? And is it 1 object at a time or an entire layer?
Fading out an entire layer would be best because I want EVERYTHING to disappear.....
Thanks in advance
Fading Out
Okay, I have a picture to work with. I've had help on the other one, but when I try to get it to fade, it doesn't do it. I go to where you edit it in the symbol area. I add the transition to make it fade out, but when I do, my outline fills with red, and that's it. Red is the colr I used to paint bucket the middle with. I just can't get it to fade out my picture.
Fading Between Swf
Hi!
I wan´t to make a fading effect between multiple loaded swf, so that they fading out and in over each other. Is that possible??
//Johan
Fading Out Or Fading In
Hi, I;m having a hard time learning how to fade things in and out. I looked around but nothing really work. I have flash mx. Please help me XD
Fading In And Out Of Different Swf
How can I fade a swf? What I want to do is have a button that has a pop up but the scene needs to stay in place and only fade so that you can read the pop-up.. Can someone suggest a tutorial or how to do this.. Thanks
Fading
edit : i figured it out... but
how can i get the fadign picture to move to the over side of the stage?
like
Fade 0 -------fade 2-------- fade 3------- fade 4-------- fade 5
when i do a transition it acts as one frame...
Fading In/out
Is it possible to fade in/out text and/or images and/or objects that can have ActionScript applied to them? Do I need to use any third-party tools or plug-ins? Thanks
Fading In/out
hello, im wondering if there is a way to fade from one scene to another. i've seen this in other animations and im just wondering how to fade into another scene or fade to black or what have you.
much thanks in advance!!
joel
Fading In/out
hello, im wondering if there is a way to fade from one scene to another. i've seen this in other animations and im just wondering how to fade into another scene or fade to black or from black or what have you.
much thanks in advance!!
joel
Fading
how do i fade the colors of a picture out?
Fading
Good day to all!
i've been trying to read and apply thistutorial. i don't know why i'm not getting it right. i can't get the same effect.
do i forgot something? i attached my version.
and this error also appears
**Error** Scene=Scene 1, layer=Layer 1, frame=1:Line 9: Type mismatch in assignment statement: found Number where Boolean is required.
_visible=0;
Total ActionScript Errors: 1 Reported Errors: 1
i changed this to _visible = false;. how will i know if a Boolean is required?
for those who can help thank you in advance
Fading Nav Bar
Howdy, I'm using Flash MX 2004 to create a simple navigation bar for my site.
I have 6 white text links spread accross horizontally on a black background. The links are set up and work fine, but I want to add a hover-over effect for the entire bar.
What I want to happen is when a user hovers over one link, the other 5 slowly fade to a dark-gray (in order to highlight the link being hovered, which would remain white.)
I'm trying to peck around but I'd love some hope with the scripting!
Thanks!
Fading...
Anyone know how to change the properties, or what to change for the movie at the link that I have included to make the image fade to another one instead of sliding?
http://www.layoutgalaxy.com/html/htm...er43-page1.htm
Fading One SWF Into Another?
Hi!
I'm trying to use loadmovie to bring a new SWF into the screen. Is there any way I can fade in the new SWF?
I need to use loadmovie instead of movie clips because of load time...
Thanks!
Fading
How do i fade in and out an object in a movie clip?
Swf Fading Away?
I've got a swf that I've loaded into level 10 above the main.swf file... on a main nav btn I want the level 10 swf to fade to 0 on release...
is this possible?
[F8] Fading In MC's
Hey,
I have 12 MC's on the first frame of my movie. I was wondering if it is possible to get all these clips to fade in when the movie loads?
Any ideas?
Fading Out Between Jpg's
Hello,
I am using Flash CS3 with the action script 2.0. I'm very new to this and I am creating a flash movie that has a series of photos that fade out to the new photo in line. My question is...Do I create these photos all on the same layer or do I create multiple layers. Then my next question is how do I go about making them fade. Soo really 2 questions.
Thank you for you help,
Andrea
|