flash effect?
flash effect?
- Started
- Last post
- 23 Responses
- ********0
BS, you can do it in Flash just fine: onClipEvent (load) {
dir = 0;
speed = 6;
original._alpha = 0;
this.onRollOver = function() {
dir = 1;
};
this.onRollOut = function() {
dir = -1;
};
useHandCursor = false;
}
onClipEvent (enterFrame) {
temp = original._alpha+speed*dir;
original._alpha = Math.min(100, Math.max(temp, 0));
}you can tweak that code
- leftwave0
i've tried all the methods that everyone suggested and it seems the easiest method which results in the smallest file size is to just import a blurred PNG from photoshop. thanks for all the advice!
- embarko0
?