Guest User

Untitled

a guest
Jun 21st, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. function fade_in(evt:MouseEvent) {
  2. stop();
  3. if(this.currentFrame == 1 || this.currentFrame == 10) {
  4. this.gotoAndPlay(1);
  5. } else {
  6. gotoAndStop(10);
  7. }
  8. }
  9. function fade_out(evt:MouseEvent) {
  10. stop();
  11. if(this.currentFrame == 10) {
  12. this.gotoAndPlay(10);
  13. } else {
  14. gotoAndStop(1);
  15. }
  16. }
Add Comment
Please, Sign In to add comment