flash effect?
flash effect?
Out of context: Reply #21
- 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