(try setting it as a movie clip instead of a graphic) that might work...
ok.... one way to do an alpha diffusion... is a tween:
start at one frame with alpha as either 0 or 100 and F6 to another frame (to copy it) and set alpha = 100 or 0 respectively.
the other way is action script.
only two frames needed, and a loop.
"UH Oh! A LOOP!" don't sweat it... it's easy.
frame 1 of 2 contains just the object, no code.
frame 2 of 2 contains object, and:
ActionScript Code:
Object._alpha++; //++ to fade in or -- to fade out
if (Object._alpha = 100) { //100 if fading in, 0 if fading out
gotoAndPlay(insert place to go here); //can be scene, frame...etc.
} else {
gotoAndPlay(frame1of2); //the first of the two frames can be label... or number
}
any questions?