Be a Supporter!
Response to: 5 Second Film Collab Posted May 27th, 2009 in Game Development

Update

I'm spending too much time on this.

The car took me half an hour... jesus I have no life.

Response to: Government Overruling Parents Posted May 27th, 2009 in Politics

Not a very hot topic I guess :3

Response to: 5 Second Film Collab Posted May 27th, 2009 in Game Development

At 5/27/09 12:45 AM, LenardNotLenny wrote: http://spamtheweb.com/ul/upload/260509/8 5346_5SecondCollab.php

I'm gonna have a really angry voice scream "sweet kiss", during the last segment. Anywho, its just an outline, but most of the sound editing is done.

Whups. Reversed the link code... sorry.

http://spamtheweb.com/ul/upload/260509/8 5346_5SecondCollab.php

Response to: 5 Second Film Collab Posted May 27th, 2009 in Game Development

http://spamtheweb.com/ul/upload/260509/8 5346_5SecondCollab.php

I'm gonna have a really angry voice scream "sweet kiss", during the last segment. Anywho, its just an outline, but most of the sound editing is done.

Response to: 5 Second Film Collab Posted May 26th, 2009 in Game Development

Put me down for a part.

Should have it done a couple days.

Do the title screens have to be a specific font?

Government Overruling Parents Posted May 26th, 2009 in Politics

: Note :

This is not for school, nor is it homework. I'm not trying to cop out of actually effort, I just want Newgrounds user's opinion on the matter.

I'm currently debating whether governments have the right to overrule parents decisions when it comes to their child. Would it be considered abuse if the child was denied needed medical care because of a religion of cultural belief? I can only find a sprinkling of articles and points that support our stance.

Can anyone help out?

Government Over Parents: Help Posted May 26th, 2009 in Politics

I'm currently debating for the Goverment's right to overrule a parents decision when it comes to their kids. I can only find a sprinkling of articles and points that support our stance.

Can anyone help us out?

Response to: Communism? -discussion Posted May 26th, 2009 in Politics

Isn't it great that we can all freely discuss our opinion on government! Too bad those silly communists can't.

oh snap

And "LordAdon", if your gonna come here preaching red, you better be able to back it up. There's no reason to have this thread if you dismiss a completely legitimate argument with, "STFU, you know nothing."

Response to: Whats a good Wacom tablet? Posted May 24th, 2009 in Game Development

At 5/24/09 12:51 AM, JKG1069 wrote:
At 5/23/09 11:48 PM, Iristorm wrote: The Bamboo is Wacom's basic but cheap tablet. The Intuos is more advanced than the Bamboo but also slightly more expensive. The Cintiq is Wacom's ultimate tablet with a built-in screen, but it costs like $2,000.

For a beginner, the Bamboo or the Intuos are good.
ok ill get a bamboo... any size preferences by u guys? like is it easier to draw with a bigger one or something?

Get the Bamboo Fun. Its only a tad more expensive, but it gives you some great starter programs to work with, and is meant more or artists. The regular Bamboo is more for people who want to handwrite on the computer, sign emails, etc.

hot daym. level 16 looks cool.
Response to: Anyone wanna spit over my track? Posted May 21st, 2009 in Audio

At 5/21/09 06:36 PM, Chronamut wrote: sure man - but post it in the Advertisements thread, ok? :)

I'm not advertising to listeners. I'm advertising to artists. That thread is just for people wanting reviews and votes, I don't want to put the track on NG yet.

Anyone wanna spit over my track? Posted May 21st, 2009 in Audio

I've just made a new backing track and regular vocals just don't sound that good over it. Anyone wanna rap?

This is the track: click

I've got lyrics, so PM me.

Response to: Can Someone Stop the Clipping? Posted May 21st, 2009 in Audio

At 5/21/09 10:57 AM, DexterPowercrush wrote: See now there's this thing called mastering.

You need to do that...

I can master just fine. It sounds fine, except the volume level's too low.

Response to: Can Someone Stop the Clipping? Posted May 20th, 2009 in Audio

At 5/20/09 09:33 PM, NeverHundred wrote: I just put a cloth over the mic. It's surprising how well that simple trick works.

I do that already. Its exporting from the actual program that's the problem, not recording the individual tracks.

Response to: Can Someone Stop the Clipping? Posted May 20th, 2009 in Audio

At 5/20/09 09:14 PM, vanguard182 wrote: have you tried using compressors?

Yes, I have.

Can Someone Stop the Clipping? Posted May 20th, 2009 in Audio

I still use garageband, and my band is about to put out a CD. All the tracks are finished, we just can't export it at a suitable volume, due to clipping.

Would someone help us out and export it through a more advanced/expensive/good program so that we can have the track at recording studio volume?

Response to: AS2 transfer to AS3 Posted May 20th, 2009 in Game Development

At 5/20/09 05:16 AM, Kirk-Cocaine wrote:
So yeah if you call you invisible buttons homeBTN, gfxBTN, forumBTN this code should work the same as your AS2.

It works! Thanks so much for your help.

Response to: AS2 transfer to AS3 Posted May 19th, 2009 in Game Development

At 5/19/09 11:53 AM, Kirk-Cocaine wrote:
Are the invisible buttons over the MovieClips changing frames yeah?

And what do you mean by changing frames?

sorry for being stupid
Response to: AS2 transfer to AS3 Posted May 19th, 2009 in Game Development

At 5/19/09 12:15 PM, Kirk-Cocaine wrote:
At 5/19/09 11:53 AM, Kirk-Cocaine wrote: Are the invisible buttons over the MovieClips changing frames yeah?
Although if they're not, you can do this, when homeBTN etc are the MovieClips you're rolling over and home etc are the MovieClips that are changing frames.

So if I give the buttons the instance names homeBTN, forumBTN, and gfxBTN, then this code functions the same way as the old code?

Response to: AS2 transfer to AS3 Posted May 19th, 2009 in Game Development

At 5/19/09 11:44 AM, LenardNotLenny wrote: I actually forgot about this code that is on the invisible button that triggers the rollout and rollover animation. Again, I'm lost transferring it to AS3

//on (rollOver) {
_root.mouse_over_home = true;
}
on (rollOut) {
_root.mouse_over_home = fstartlse;
}

So in total its this code on the main timeline

_root.home.onEnterFrame = function() {
if (mouse_over_home) {
_root.home.nextFrame();
} else {
_root.home.prevFrame();
}
};
_root.forum.onEnterFrame = function() {
if (mouse_over_forum) {
_root.forum.nextFrame();
} else {
_root.forum.prevFrame();
}
};
_root.gfx.onEnterFrame = function() {
if (mouse_over_gfx) {
_root.gfx.nextFrame();
} else {
_root.gfx.prevFrame();
}
};

And these on the invisible buttons over the art.

on (rollOver) {
_root.mouse_over_home = true;
}
on (rollOut) {
_root.mouse_over_home = fstartlse;
}
Response to: AS2 transfer to AS3 Posted May 19th, 2009 in Game Development

I actually forgot about this code that is on the invisible button that triggers the rollout and rollover animation. Again, I'm lost transferring it to AS3

//on (rollOver) {
_root.mouse_over_home = true;
}
on (rollOut) {
_root.mouse_over_home = fstartlse;
}
Response to: Frame 5 - Another Fbf Collaboration Posted May 19th, 2009 in Game Development

I have 7 submissions and 5 solo submissions with a BA of 3.96

I'd like the 3rd Retribution Beat (or whatever that hip-hop song was).

Hello btw
Response to: !-!Awesome Collab!-! Posted May 19th, 2009 in Game Development

The sad thing is... this collab is going to do great.

Response to: stupid question Posted May 19th, 2009 in Game Development

At 5/19/09 08:56 AM, milchreis wrote:
At 5/19/09 12:00 AM, Yambanshee wrote: as2 or as3?
it is as3, there'S no such event management in as2

which makes me angry

Response to: Sprites Collab Posted May 19th, 2009 in Game Development

I wonder why this hasn't been locked yet.

It seems like there have been dozens of these collabs.

Sprite TV anyone?
Response to: My mind is blank! Posted May 19th, 2009 in Game Development

At 5/19/09 09:02 AM, nathanielmilburn wrote: try drugs

that always works

Response to: AS2 transfer to AS3 Posted May 18th, 2009 in Game Development

Thanks!

AS2 transfer to AS3 Posted May 18th, 2009 in Game Development

This is the swf

This is the code (Sorry I don't know how to write in the text box format thing)

_root.home.onEnterFrame = function() {
if (mouse_over_home) {
_root.home.nextFrame();
} else {
_root.home.prevFrame();
}
};

_root.forum.onEnterFrame = function() {
if (mouse_over_forum) {
_root.forum.nextFrame();
} else {
_root.forum.prevFrame();
}
};

_root.gfx.onEnterFrame = function() {
if (mouse_over_gfx) {
_root.gfx.nextFrame();
} else {
_root.gfx.prevFrame();
}
};

I don't know how to write this code in AS3. Can anyone help?

Response to: Can anyone vrecommend a font site?? Posted May 15th, 2009 in Game Development

At 5/15/09 05:06 PM, SK8ninja wrote: Does any know a site I can use to download awesome fonts to use in flash??

Thanks.

Dafont is the best

Response to: The Dream Collab Posted May 14th, 2009 in Game Development

At 5/13/09 10:21 PM, LenardNotLenny wrote: ALL MODS ARE COMPLETE COCKS

this thread really is dead

Response to: The Dream Collab Posted May 13th, 2009 in Game Development

ALL MODS ARE COMPLETE COCKS