Be a Supporter!
Response to: Big project - need coder Posted December 21st, 2009 in Game Development

At 12/21/09 03:36 PM, PowerSource wrote:
IF someone would steal your idea, then it would probably be some guy that will make the game so bad that it will get blammed/low score. guys with skillz (over 4.00 pointers) are too famous to take the risk of getting stamped as a thief.

get my point?

I see what you mean, but anything posted on the web is seen everywhere, not just NG.

Response to: As Help Posted December 21st, 2009 in Game Development

At 12/21/09 09:41 PM, toxicdevil93 wrote: I am making a button, and I want to click it, and go from scene 2, to scene 1, if I do

on (release) {
gotoAndPlay(1)
}

It brings me to the start of the scene, I want it to bring me to the start of the movie, how do I do this?

MAIN TIMELINE:

mybutton.onRelease = function(){
     gotoAndPlay("scene_name", 1);
}
Response to: Leo's As4 Questions Thread Posted December 21st, 2009 in Game Development

OMG if they come out with AS4 I will disembowel myself.

Response to: Big project - need coder Posted December 21st, 2009 in Game Development

At 12/21/09 03:04 PM, TheRadicalOne wrote:
How often do ideas get stolen anyway? I could understand if they got your art or music and ran with it, but an idea?

One good idea can be a franchise (i.e. google, newgrounds, youtube, call of duty, left4dead)

Response to: random number within range AS help Posted December 21st, 2009 in Game Development

Here's what I use:

function randRange(min:Number, max:Number):Number {
	var randomNum:Number = Math.floor(Math.random()*(max-min+1))+min;
	return randomNum;
}
var randX:Number = randRange(10, 470); // returns 211