A Flash Developer Resource Site

Results 1 to 11 of 11

Thread: take me back

Threaded View

  1. #7
    FK's Giant Steve_w_V's Avatar
    Join Date
    Mar 2003
    Location
    San Jose, California
    Posts
    2,113
    Ag...Easy. I'm so freakin stupid sometimes, makin things a helluva lot harder than it needs to be.
    code:
    on (press) {
    _root.onEnterFrame = function() {
    prevFrame();
    };
    }
    on(release){
    delete this.onEnterFrame
    }


    Or for the real rewind feel:
    code:
    on (press) {
    _root.onEnterFrame = function() {
    _root.gotoAndStop(_currentframe-5) //or other number
    };
    }
    on(release){
    delete this.onEnterFrame
    }


    *shoots himself*
    Last edited by Steve_w_V; 11-22-2003 at 11:26 PM.
    The other day, I bought a box of animal crackers. On the side, it said "Do Not Eat if Seal is Broken". I opened the box and sure enough...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center