360 - reverse frames

[COLOR=black][FONT=Verdana]Hi,[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]I am trying to make 360 spin of my 3d object, what I want to achieve is non stop continues spin both forward and reverse,[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]In my case, my 3D object plays continuously forward and it works good,[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]But my problem is when I try to play it continuously in reverse,[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]Currently my actions are in ActionScript 2 but I am ready to convert it to AS 3, I think its better,[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]These are my actions in AS2:[/FONT][/COLOR]
[COLOR=black][FONT=Verdana]

 [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]btn_right.onEnterFrame = function() {
 if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
  _root.images.nextFrame();[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] } else {
  _root.images.stop();
 }
 
 
};[/FONT][/COLOR]
[COLOR=black][FONT=Verdana]btn_left.onEnterFrame = function() {
 if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
  _root.images.prevFrame();[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] } else {
  _root.images.stop();
 }
};[/FONT][/COLOR]
[COLOR=black][FONT=Verdana]

[/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana] [/FONT][/COLOR]
[COLOR=black][FONT=Verdana]Please help me with this[/FONT][/COLOR]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3] [/SIZE][/FONT]