The Enchanted Cave 2
Delve into a strange cave with a seemingly endless supply of treasure, strategically choos
4.38 / 5.00 36,385 ViewsGhostbusters B.I.P.
COMPLETE edition of the interactive "choose next panel" comic
4.07 / 5.00 13,902 ViewsAt 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.
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);
}
OMG if they come out with AS4 I will disembowel myself.
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)
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