Hi,
I couldn't update my other message but have made some real progress. All I need to do is get this code to work. It writes frames backward from 40 to 31 and repeats until release. The only problem is that it stops on frame 39 and stays there. It looks logical to me.
on (release) {
stop ();
}
on (press) {
if (_currentframe>30<40) {
i--;
}
if (_currentframe == 30) {
gotoAndPlay (39);
}
}
on (release) {
stop ();
}
Any thoughts appreciated !!