flash previous frame
flash previous frame
- Started
- Last post
- 6 Responses
- Krimzen
is there a way in flash to make a button that would go to whatever the last frame the user was on before they went to their current frame? danke
- jevad0
here's something even better:
- atomica0
thats amazing, the things you learn from others questions....
- unformatted0
too bad it doesn't work in moz, only ie
- jevad0
true dat
- unfittoprint0
button.onRelease = function(){
if (_currentframe>1) {
gotoAndStop(_currentframe-1);
}
}
- autonoma0
It's working perfectly fine in my Mozilla.