Any web designers who know action script

Status
Not open for further replies.

tintin

Newbie
Joined
Sep 29, 2008
Posts
9
Hey i am trying to get my actionscript 2.0 to snap to one in every 12 frames. so on the timeline if i stop on frame 2-6 i want the flash doc to play back to frame 1 and if i drop it on frames 7-11 i want it to play to frame 12.
here is my action script

stop ();

this.onPress = function() {
origValue = this._currentframe;
origMouse = _root._xmouse;

this.onMouseMove = function() {
relVal = _root._xmouse - origMouse;
relVal = relVal / 15;
relVal = Math.round(relVal);
newFrame = origValue - relVal;
this.gotoAndStop (newFrame) ;


}
};
this.onRelease = this.onReleaseOutside = function() {
this.onMouseMove = null;

};

please help
 
Read our AFF credit card guides and start earning more points now.

AFF Supporters can remove this and all advertisements

Status
Not open for further replies.

Become an AFF member!

Join Australian Frequent Flyer (AFF) for free and unlock insider tips, exclusive deals, and global meetups with 65,000+ frequent flyers.

AFF members can also access our Frequent Flyer Training courses, and upgrade to Fast-track your way to expert traveller status and unlock even more exclusive discounts!

AFF forum abbreviations

Wondering about Y, J or any of the other abbreviations used on our forum?

Check out our guide to common AFF acronyms & abbreviations.
Back
Top