BBGamelib.flash.wrap.BBFlashMovieImp.gotoAndPlay C# (CSharp) Method

gotoAndPlay() public method

public gotoAndPlay ( int start, int end ) : void
start int
end int
return void
		public void gotoAndPlay(int start, int end){
			Stop();
			startFrame = start;
			endFrame = end;
			Play();
		}

Same methods

BBFlashMovieImp::gotoAndPlay ( int start, int end, Action callback ) : void
BBFlashMovieImp::gotoAndPlay ( string start, string end ) : void
BBFlashMovieImp::gotoAndPlay ( string start, string end, Action callback ) : void