Advertisement
Advertisement
| 07.22.2008 at 06:30AM PDT, ID: 23585004 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: |
function fadeIn(whichPhoto) {
whichPhoto._quality = "LOW";
var tw = new mx.transitions.Tween(whichPhoto, "_alpha", mx.transitions.easing.Regular.easeOut, 0, 100, 0.5, true);
tw.onMotionFinished = function() {
whichPhoto._quality = "BEST";
};
}
|