can't figure out how to have multiple endings

  • mtg131g
  • Graduate
  • Graduate
  • No Avatar
  • Joined: Jun 18, 2005
  • Posts: 238
  • Status: Offline

Post November 30th, 2007, 8:09 pm

What I am trying to do is to use a button that if the timeline is between thse numbers then go to and play this and then if it is in another part of the time line when the button is released then it needs to go here and play this.

That is what I am trying to do but i can't get the action script to work right any suggestion on how to code for this idea?
Helping people expand and explode their MLM Home-Based Businesses
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post November 30th, 2007, 8:09 pm

  • IceCold
  • Guru
  • Guru
  • User avatar
  • Joined: Nov 05, 2004
  • Posts: 1254
  • Loc: Ro
  • Status: Offline

Post December 3rd, 2007, 4:07 am

add a button on the stage, name it's instance myButton, and in a key frame on the main timeline (the button must exists in that frame), add this code:
Code: [ Select ]
myButton.onPress = function()
{
  if ( (_root._currentframe > x1) && (_root._currentframe < x2) )
  {
     _root.gotoAndPlay(frameX);
  }
  else
  if ( (_root._currentframe > y1) && (_root._currentframe < y2) )
  {
     _root.gotoAndPlay(frameY);
  }
}
  1. myButton.onPress = function()
  2. {
  3.   if ( (_root._currentframe > x1) && (_root._currentframe < x2) )
  4.   {
  5.      _root.gotoAndPlay(frameX);
  6.   }
  7.   else
  8.   if ( (_root._currentframe > y1) && (_root._currentframe < y2) )
  9.   {
  10.      _root.gotoAndPlay(frameY);
  11.   }
  12. }
“True mastery transcede any particular art. It stems from mastery of oneself - the ability, developed throgh self-discipline, to be calm, fully aware, and complety in tune with oneself and the surroundings. Then, and only then, can a person know himself. ”
  • mtg131g
  • Graduate
  • Graduate
  • No Avatar
  • Joined: Jun 18, 2005
  • Posts: 238
  • Status: Offline

Post December 3rd, 2007, 6:11 am

Thanks I'll give that a try
Helping people expand and explode their MLM Home-Based Businesses

Post Information

  • Total Posts in this topic: 3 posts
  • Users browsing this forum: No registered users and 44 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.