Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Fade To Black...



yep. pretty much as the title says. how do you fade a scene to black?

i thought about just creating a big black rectangle on the top layer which starts at 0% alpha and then tween it to 100% but that didn't work lol.

so anyway. little help? thanks.

-db-



FlashKit > Flash Help > Flash Newbies
Posted on: 03-01-2005, 06:31 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Fade To Black
Alright, i know how to do almost everything in my movies now... but does anyone know how to fade the screen to black?

Fade to white would work too...

Fade To Black
How do i fade to black or fade to white in flash MX? Thanx!

Fade To Black
I have all of one week of Flash under my belt. I'm so happy with the progress I've made so far, but please excuse me if this is a dumb question...

For the sake of convenience, let's say my Flash project consists of two main pages - Photos and Writings. Each page has a button to get to the other. The pages look quite different, and to avoid the abrupt change, I'd like to fade the current page to black before moving to the next. The thing is, you might be in any of a hundred different states of Photos when you click to go to Writings - you may be looking at the dog, you may be scrolling through the index, etc. I can't see creating a seperate fade for each state.

Instead, I came up with a Fader movieclip. It consists of ten frames of a full-screen black rectangle tweening from completely transparent to completely opaque. I even clicked the Export for ActionScript checkbox and everything.

I then make the following modification to my Writings button...


on(release) {
_root.attachMovie("Fader", "TempFader", 1); //Like I have ANY idea what the _root means
gotoAndPlay("Writings");
}

When I test it, the following two bad things occur:

1. The fade starts fine(!), but almost immediately, the Writings page loads up and continues to black. Makes sense I guess, Writings started running only a few milliseconds after Fader. Oops.

2. The fade just keeps looping. Infinitely. I can actually navigate Writings, but the fade loop never ends. Grr.


Okay, at least I can fix #2, I think. I add the following to the first frame of Writings...

_root.removeMovieClip("TempFader");

Absolutely no effect.


I'm close, aren't I? Gimme a hint. I'd appreciate any help.

Thanks!

Fade To Black
I have an animated logo that I want to end by having the entire thing fade to a black screen. How would I go about doing this?

any positive feedback is greatly appreciated

Thank you

How To Do Fade In To Black?
i want to fade in and out like the flash on the top of this page.

how do you do this?

http://www.authenticstyle.co.uk/#work

do i just make the background colour of my flash file to black before doing the alpha fades?

also, if i want to do other types of fade ins other than using alpha, is there any tutorials out there?

Fade Black To Transparent?
I want to create a fade that is 100% black to 100% transparent over a graphic. How do I do this in Flash MX?

Fade Movieclip Out (black)
I realise theres a lot of topics about this but I cant find or work how to do it even though ive looked at lots of topics, so I thought Id ask. I hope this is ok

I have 5 clips I need to fade out at a certain time on the timeline. So I want to fade them out at the same time to black and then unload them (I know how to unload them) But I dont understand how to use the alpha actionscript to fade out the clips.

How Do I Fade To Black In A Slideshow?
It's been years since I've used Flash, so I'm a bit rusty. But I am trying to use the slideshow presentation template and do transitions between the slides, but I'm not getting the results I want.

I'm putting in the preset behaviors for fade in and out, and what I get is a crossfade. What I want is a fade to black, and a fade up from black (a dip to black), and not a crossfade. Is there a simple scripting way to do this that I can put on the presentation (master) slide? If been playing with setInterval to delay the transition but I can't get it to work. Thanks.

Fade To Black Effect, How It's Done?
Hello!

I was wondering if anyone knew how to achieve this fade to black effect that FI uses on their website: http://www.fantasy-interactive.com/

So I don't mean fading only the alpha to zero. It's kind of what Fuses brightoffset does when fading an image with white background.

sumo

[MX04] Make Black Fade In/out
Hello!

I was wondering if there is a way to make a black square fade in when you press a button on the keyboard (like b), then fade out when you press a different button (like v). I would want to be able to add this actionscript to different slides so that I can just press b and v whenever I want so I can black out the screen then get everything back

Thanks

Fade Movieclip Colour White Into Black..
How can I fade a movieclip colour white into black with action script? already thanks for your reaction!

Black&White To Color Fade - Image Problem
In a previous post, (see here ) I asked about fading an image from black&white to color with a mouseover...I got that...now, on rollover, the images of some of the mc's changed improperly. (SEE ATTACHED FILE)

1st pic - Rollover is PERFECT. All should look like this
2nd and 3rd - seems like the color image is moving...but when I checked it, it was perfectly flush with the black and white.

Nooo idea why this is happening...please help.

IMM

Fade ENTIRE Screen To White/black With Actionscript?
Hi,

Is there a way to fade the entire screen to black or white and then fade into another frame using actionscript?

Francesco

thanks.

Fade In Fade Out Fade To Black
ok been trying to work this one out for a while I have a pre loading animation and need to fade the sound in then fade the sound out again at the end of the intro.

I need help with this one!!!


cheers
stickygoblin

My Fade Out / Fade In Script. Fade Out Works, Why Not Fade In? Any Ideas?
Hello all,
Hopefully this is just a simple problem with my code.

I have a container on the stage. When the loaded clip gets to the last frame it triggers the decreaseAlpha() function on the root level. This fades the current container out and works fine.

However I also want it to load the next clip(which it does) and fade that clip in. This doesn't work. It doesnt' fade in, can anyone point me in the right direction?

Thanks!!



Code:
function decreaseAlpha(boxName, clipName){
boxName.onEnterFrame = function(){
if(boxName._alpha > 0){
boxName._alpha -= 15;
}if(boxName._alpha < 5){
delete boxName.onEnterFrame;
increaseAlpha(boxName, clipName);
}
}
}
function increaseAlpha(boxName, clipName){
loadMovie(clipName, boxName);
boxName._alpha = 0;
boxName.onEnterFrame = function(){
if(boxName._alpha < 100){
boxName._alpha += 15;
}if(boxName._alpha == 100){
delete subboxName.onEnterFrame;
}
}
}

My Fade Out / Fade In Script. Fade Out Works, Why Not Fade In? Any Ideas?
Hello all,
Hopefully this is just a simple problem with my code.

I have a container on the stage. When the loaded clip gets to the last frame it triggers the decreaseAlpha() function on the root level. This fades the current container out and works fine.

However I also want it to load the next clip(which it does) and fade that clip in. This doesn't work. It doesnt' fade in, can anyone point me in the right direction?

Thanks!!


Code:
function decreaseAlpha(boxName, clipName){
boxName.onEnterFrame = function(){
if(boxName._alpha > 0){
boxName._alpha -= 15;
}if(boxName._alpha < 5){
delete boxName.onEnterFrame;
increaseAlpha(boxName, clipName);
}
}
}
function increaseAlpha(boxName, clipName){
loadMovie(clipName, boxName);
boxName._alpha = 0;
boxName.onEnterFrame = function(){
if(boxName._alpha < 100){
boxName._alpha += 15;
}if(boxName._alpha == 100){
delete subboxName.onEnterFrame;
}
}
}

Alpha Fade In, Tint Fade In And Then Fade Out
Just wondering, do u guys usually use actionscript to do alpha and tint fade? or just use the propeties tween control?

i heard that using actionscript will be better as it will not lag if the user's computer is slow....

here is to get a better idea what i'm trying to achieve using tweening
http://h-y-p-h-e-n-s.net/main.swf

To Alpha fade in, white tint fade in and then fade out white tint to original state.


I knoww how to script the alpha fade in but i have problem with the tint fade. I also have read through every line of http://actionscript.org/tutorials/ad...de/index.shtml
but i just don't know how to go about implementing it to my case.

i will really appreciate it if u can help enlighten me

Alpha Fade In, Tint Fade In And Then Fade Out
Just wondering, do u guys usually use actionscript to do alpha and tint fade? or just use the propeties tween control?

i heard that using actionscript will be better as it will not lag if the user's computer is slow....

here is to get a better idea what i'm trying to achieve using tweening
http://h-y-p-h-e-n-s.net/main.swf

To Alpha fade in, white tint fade in and then fade out white tint to original state.


I knoww how to script the alpha fade in but i have problem with the tint fade. I also have read through every line of http://actionscript.org/tutorials/ad...de/index.shtml
but i just don't know how to go about implementing it to my case.

i will really appreciate it if u can help enlighten me

Alpha Fade In, Tint Fade In And Then Fade Out
Last edited by PixelSense : 2004-02-01 at 01:54.
























Just wondering, do u guys usually use actionscript to do alpha and tint fade? or just use the propeties tween control?

i heard that using actionscript will be better as it will not lag if the user's computer is slow....

here is to get a better idea what i'm trying to achieve using tweening
http://h-y-p-h-e-n-s.net/main.swf

To Alpha fade in, white tint fade in and then fade out white tint to original state.


I knoww how to script the alpha fade in but i have problem with the tint fade. I also have read through every line of http://actionscript.org/tutorials/ad...de/index.shtml
but i just don't know how to go about implementing it to my case.

i will really appreciate it if u can help enlighten me

Black Box
Flash ver 5
We have constructed a UK map which has 4 different layovers (all on the same layer but off of the movie display area) they are set to appear at certain coordinates upon click on the corresponding button one at a time (also on the same layer). Each of the layovers has lines where regions have been made in to buttons - these change the url to show results in an I-frame.
We have put a mask above the layer with all of this on to stop the layovers appearing.

The problem is that when we include it in our page the flash appears as a black bow until it is hovered at which time it appears and all works fine. If we run the flash in a page by itself it appears to be OK, we only get the black box when we include it in a table which we need to do on the page!

Any ideas!


See the file at:

http://www27.brinkster.com/staging/map.fla

Black Dot
hi,

i wonder if someone knows the meaning of a black dot on the envelope next to a post (see attached image) is the bearer of such dots (me) in some kind of as.org trouble?.

thanks, jevans

Red Or Black?
Alright for a very simple project I am building a money balance reporter. The idea is to have the current balance be in red if the balance is below $0. And black if it is greater than zero. For a brief moment I had it working and I swear I didn't change the code but I must have because now it isn't working. Can anyone help me out?

ActionScript Code:
myBalance = new LoadVars();
myBalance.load("currBalance.txt");

myBalance.onLoad = function(){

redOrBlack = new Color(_root.currBal); //<-- function that sets currBal to currBalance and decides whether you are in the red or black.

if(this.currBalance < 0){

redOrBlack.setRGB(0xFF0000);

}else{

redOrBlack.setRGB(0x000000);

}
_root.currBal.htmlText = "<b>" + this.currBalance + "</b>";

}




Cheers

Actionscript To Load Random External Movie, Fade In, Wait, Fade Out, Repeat
Hello,
I'm trying to construct some AS3 that will load a random one of several external swf files, fade the instance in, wait 5 seconds, fade the instance out, and load a new random movie (it can be the same one; I don't want to get too complicated at this point).
I could do this with no problem using older methods, but the client insists this is written in 3.
Please help; I'm at my wits end!

Newbie Question - Fade In Fade Out While Trning On And Turning Off A Music Loop
Hello everyone,
This is what I want to accomplish. I want to make my music loop fade in when turning on and fade out while turning off. I'm attaching the .fla of what I have now.

Currently the music loop stops abruptly when the pause button is clicked and starts suddenly when the play button is clicked. I want to smooth this action out and make it fade in when play button clicked fade out when pause button clicked. Hope you got my point.

I have added my sample .fla to show how have I added the music loop and the buttons.

Have this chunk of action script in it to load the music loop and play it infinitely.


PHP Code:



mySound = new Sound();
mySound.attachSound("myloop");
mySound.start("0", "999");




This bit on the puse button with an instance name pauseBTN

PHP Code:



on (release) {
    mySound.stop();
    playing = false;
    playBTN._visible = true;
    pauseBTN._visible = false;
}




and this bit on to the play button with an instance name playBTN


PHP Code:



on (release) {
    if (playing != true) {
        mySound.start(0, 999);
        playing = true;
        playBTN._visible = false;
        pauseBTN._visible = true;
    }
}




Please find my attachment here:
Thanks in advance

Multiple Fade In Fade Out Events On Different Sentences From A Text File?
Hi there

i've just learned to use flash to produce a flash doc that displays the tibetan mind training slogans. they're basically 59 sentences: be a child of illusion, always maintain a joyful state of mind etc etc.

anyway, i'm wondering if anyone knows how i can make it easier to achieve this. at present i've done it by creating individual fade in fade out events along a time line. but it strikes me that it should be possible to create just one fade in, fade out event and get flash to apply this event to all subsequent sentences. even better would be if i could just get flash to pull each sentence from a plain text file. does anyone know how to do this? maybe actionscript can do this. then it would be easy to create a flash file for learning anything from vocabulary to history quotes!

you can view it here:
http://www.geocities.com/tamsin_dev...saverfinal7.swf

here's the flash file
http://www.geocities.com/tamsin_dev...saverfinal7.fla

also, how can introduce a random element into this, so that any of the 59 slogans will be picked.

if you need any further info please contact me at tamsin_devas@yahoo.co.uk i can send you the slogan source files as well if you want.

eventually i want to create a screen saver.

thanks for any help you can provide. i'll write your name in tibetan if you want.

tamsin

AS2 - Refine My Code...it Sucks : Six Clips Fade. Rollover One...other Fade Out
So I have six movie clips. When you rollover one I want the other five to fade out. this code that I did works but it has a potential to break with quick strokes. Any help would be great thanks. I also have a button surrounding the six clips that fade all back up. The reason for that is while they are going from clip to clip i dont want them to fade in a out.

------Here is a link of what im trying to acheiving.------
http://www.stellamccartney.com/us/en/beauty/

Thanks alot everyone.

------And here is my code-------

import mx.transitions.Tween;
import mx.transitions.easing.*;

function fadeOut(mc) {
var begin = 100;
var end = 25;
var time = .1;
var myTween:Tween = new Tween(mc, "_alpha", Regular.easeOut, begin , end , time , true);
}

function fadeIn(mc) {
var begin = 25;
var end = 100;
var time = .1;
var myTween:Tween = new Tween(mc, "_alpha", Regular.easeIn, begin , end , time , true);
}

btnOff.onRollOver = function() {
if (by1._alpha != "100") {
fadeIn(by1);
}
if (by2._alpha != "100") {
fadeIn(by2);
}
if (by3._alpha != "100") {
fadeIn(by3);
}
if (by4._alpha != "100") {
fadeIn(by4);
}
if (by5._alpha != "100") {
fadeIn(by5);
}
if (by6._alpha != "100") {
fadeIn(by6);
}
};

by1.onRollOver = function() {
if (by1._alpha != "100") {
fadeIn(by1);
}
if (by2._alpha != "25") {
fadeOut(by2);
}
if (by3._alpha != "25") {
fadeOut(by3);
}
if (by4._alpha != "25") {
fadeOut(by4);
}
if (by5._alpha != "25") {
fadeOut(by5);
}
if (by6._alpha != "25") {
fadeOut(by6);
}
};

by2.onRollOver = function() {
if (by2._alpha != "100") {
fadeIn(by2);
}
if (by1._alpha != "25") {
fadeOut(by1);
}
if (by3._alpha != "25") {
fadeOut(by3);
}
if (by4._alpha != "25") {
fadeOut(by4);
}
if (by5._alpha != "25") {
fadeOut(by5);
}
if (by6._alpha != "25") {
fadeOut(by6);
}
};

by3.onRollOver = function() {
if (by3._alpha != "100") {
fadeIn(by3);
}
if (by1._alpha != "25") {
fadeOut(by1);
}
if (by2._alpha != "25") {
fadeOut(by2);
}
if (by4._alpha != "25") {
fadeOut(by4);
}
if (by5._alpha != "25") {
fadeOut(by5);
}
if (by6._alpha != "25") {
fadeOut(by6);
}
};

by4.onRollOver = function() {
if (by4._alpha != "100") {
fadeIn(by4);
}
if (by1._alpha != "25") {
fadeOut(by1);
}
if (by2._alpha != "25") {
fadeOut(by2);
}
if (by3._alpha != "25") {
fadeOut(by3);
}
if (by5._alpha != "25") {
fadeOut(by5);
}
if (by6._alpha != "25") {
fadeOut(by6);
}
};

by5.onRollOver = function() {
if (by5._alpha != "100") {
fadeIn(by5);
}
if (by1._alpha != "25") {
fadeOut(by1);
}
if (by2._alpha != "25") {
fadeOut(by2);
}
if (by3._alpha != "25") {
fadeOut(by3);
}
if (by4._alpha != "25") {
fadeOut(by4);
}
if (by6._alpha != "25") {
fadeOut(by6);
}
};

by6.onRollOver = function() {
if (by6._alpha != "100") {
fadeIn(by6);
}
if (by1._alpha != "25") {
fadeOut(by1);
}
if (by2._alpha != "25") {
fadeOut(by2);
}
if (by3._alpha != "25") {
fadeOut(by3);
}
if (by4._alpha != "25") {
fadeOut(by4);
}
if (by5._alpha != "25") {
fadeOut(by5);
}
};

Black Curser Help
I know im being thick but can someone HELP!
I have a black bg with an input text box and I cant see the flashing curser cuz its black too. How can I change the colour of the curser?
Thanx Ste

Why Does This Print Black?
I am using the below code to make a pie chart differnt colors. But, when I print it comes out black. At first I thought it was just the printer but I have tryed in on a number of differnt printers: Color and black/white. And it always comes out black. Any ideas?? thanks

function setHue(rgb) {
cFace = new Color(circle.bg);
cFace.setRGB(rgb);
cSide = new Color(mcSide.bg);
cSide.setRGB(rgb);
}

Strange Black Box
hi there

so i decided to not cheat and make a flash animation in flash , not in firestarter or swish or whatever. All was going smooth - my guess work was getting me through it!!!

now when i click 'control' -> 'play' it seems fine. The shapes come in nicely and all is good (it only has simple fade in/out effects with a bit of rotation)

so thats groovy.

my next scene involves a line of text starting off the screen with an alpha of 0% - it moves and fades into position on screen. It does the movement but it has grown some hideous black and white lines around it!!!

here is a screen capture while i was doing a 'control' -> 'play' to test it:

http://www.geekvault.com/dodgyblackbox.gif

also

i published the flash movie to see it bare in the player and it looked awful - all of the fading was missing etc. - so i checked the obvious thing the 'publish settings' checked that everything was set to max quality, re published and it still looked crap and it had no effects. i managed to export an avi and that did keep the effects.

any secret 'make my animation crap' buttons i may have accidently pressed?

thanks very much for your help,

Stuart

Black Background
Document size: 800 x 600
Source: *.fla
Output: Projector File *.exe

Is there a way to keep the size of the document at 800x600 and have the rest of the entire screen as a black background.
Please advise.

katmai

Black And White?
everytime a make a movie it is comming out in black and white...is there something im doing wrong??....looks ok when i export it....thanks

Black And White
I just want to know is...
how i can trace a bit map? (Black and white draw)
and get a good result
Thank you!

How To Get Rid Of These Black Lines?
www.the7thinfo.com
Click on the link and you will see that the flash doc is not fitting a 100% in the Browser.. i know that there is a Html Code for it to Fit entirely in de Browser.
my Question is That if anyone knows the Html code.. i have forgotten it.

i am a newbie at this pls help

thanks in advance.

Am I On Some Black List?
I see all these questions being answerd but everytime i have one nobody ever answers it. who did i piss off?

MC Printing Black...
Hello,

I have an MC I'd like to print, and use the following bit of code to do so:


Code:
printbtn.onRelease = function() {
var my_pj:PrintJob = new PrintJob();
if (my_pj.start()) {
if (my_pj.addPage("comptxt", {xMin:0, xMax:600, yMin:0, yMax:600}, null, 1)) {
}
if (pageAdded) {
my_pj.send();
}
delete my_pj;
}
}
That works well enough, except I'm having a hard time understanding a couple of things about the code itself. Can anyone explain this bit:


Code:
{xMin:0, xMax:600, yMin:0, yMax:600}, null, 1)
and how I can define the size of my mc?

Another question is, when I do print something, my result is a black square, where I'd like to see the contents of my MC on a white (transparent) background.

Can anyone offer some suggestions and insight?

Thanks
-
Phil

Black Box Of Doom. HELP
Hey guys,

I am a digital artist mostly print work trying to build an online portfolio. I am adding images and cant get above 11 with out the whole animation slowing down ( almost like the frame rate is dropping) and a black box appearing on slide 12 ( or any other slide after 11) during the fade in effect.

Any ideas!!???

www.andrewdeihl.com/new.fla

Thanks!~
Andrew

[F8] Black And White
I would like a button that could turn the game black and white,
but I am new to saturation and could use some help
any ideas?
on (press){
//code
}

Black And White
Is there a way of turning a color photo to black and white through the color object or through a tween without having to do it in photoshop

.FLV Alpha Is Black
Here it is:

exported a .FLV with alpha channel.
It use to work in both IE6 and FF but then it stopped working in IE.
I downloaded Flash 9 player for IE.
now there is a black outline where the alpha channel should be.
the video and sound both play.

has anyone ran into this?

By the way it works great in FF.

any help would be great.

Get Rid Of The Black When The Flv Stop
how can i get rid of the black part
when the flv stop playing?

Black And White ?
Hi to all

i need to transform a colorized BitmapData into Black and White (2 colors only)

I tried look around on web, documentation and this site before to post here.

I made a simple script AS3 like this (but the result is not so good):


ActionScript Code:
for (var i:uint = 0; i<myBitmapData.width; i++) {
    for (var j:uint = 0; j<myBitmapData.height; j++) {
        if (myBitmapData.getPixel(i,j)>32768)
            {myBitmapData.setPixel(i,j,0xFFFFFF);}
        else
            {myBitmapData.setPixel(i,j,0x000000);}           
    }
}

It process every single pixel and set to white if greater than 32768 (8000 Esadecimal) and black if lower than.

Is a correct approach ? Exist other faster and better tecniques ?
like colorTransform or applyFilter or something else ?
Can anyone give me a tip or help ?

Thanks in advance

Mouse Over Is Black In IE7
If you view the small ad on top of left navigation at this site:
http://www.exploreli.com/entertainme...lguide/dining/
and mouse over the 21 Main Steak House ad in FireFox
it displays as a larger pop out. But in IE browsers that mouse
over pop out is a black box wherever a button would be (
closed button & invisible button to go to ad site).

Can anyone tell me if this is an issue with the flash file or
the javascript that places the ad on the page?

Black Screen In IE
Hi there, dont know if any of you can help, but I am having a problem with a black screen on load up in Internet Explorer. Basically the whole screen is Black for about 40 seconds when you first load the site, no loading bar etc, just a black page. The file is quite big and as a result should take time to load, this I know, however.... When viewed in Firefox or Navigator the screen loads up in elements, you get the loading message etc, anyone know why this is happening? Once the page has been viewed once, and is in the cache the problem is still there, it just loads allot quicker, (5 seconds.) Sorry if this subject has been covered before. You can check out the site at www.donnyshow.co.uk/DONNYSHOW/home.html and see for yourself.

FLV And Exe Files Going Black
I can get the FLV files to play as long as I don't tell the projector files to play full screen. If I do, as soon as it hits the first FLV file the projector file goes black and when I hit escape the file has quit running. The script that I have tried for full screen is as follows...
flash.system.fscommand("fullscreen", "true")
and
fscommand("fullscreen", "true")

The script I have for my two instances of FLV files (i resized them) is as follows:
import fl.video.*;

// Video component instance name
var flvControl = display;
var flvSource = "rel-wdb019sr-022_x.flv";
var flvControl2 = display2;
var flvSource2 = "Wedding2.flv";
// Loop the video when it completes
function completeHandler(event:VideoEvent):void
{
flvControl.seek(0);
flvControl.play()
flvControl2.seek(0);
flvControl2.play()
}
flvControl.addEventListener(VideoEvent.COMPLETE, completeHandler);
flvControl2.addEventListener(VideoEvent.COMPLETE, completeHandler);

// Set video
flvControl.source = flvSource;
flvControl2.source = flvSource2;

Does anybody have any advice?

Print Gets Black
http://www.deltaofsweden.com/beta/

When i try to print out my site it gets all black and wierd. Whats wrong?

/ Daniel

Fading To Black
I'm making a scene where all my layers have to fade to black. After they're faded, a red screen quickly fades in and fades out to black again. I'm not sure how this can be accomplished, because when I use timeline effects, the screen fades to white. Does anyone know if this can be accomplished with actionscript? Or any solution will helpfull. Thanks in advance.

Tom

Black And White
Is it possible with AS to desaturate an image and then have it return to color on rollover?

I'd like to take the image loop made by scotty

http://www.kirupa.com/forum/showthread.php?t=90881

and have the images start out black and white then turn to color when you rollover.

I'm guessing that no, you can't do this with AS, but I couldn't think how else to do this.

Thanks,
-b

Black And White
any tutorials or source file to turn images black and white and then back to original color via AS ? thanks ..

Black Stroke
Hello,
i want a black stroke that ( in flash ) that fils the hole page, in 1024, 1152, 1280 and all other resolutions, how i do this?

Copyright © 2005-08 www.BigResource.com, All rights reserved