You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!

Author Search Results: 'Mr-Chainsaw'

We found 699 matches.


<< < > >>

Viewing 1-30 of 699 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91624

1.

Angry

Topic: Why are you alive?

Posted: 06/21/09 01:23 AM

Forum: General

If judgement day was tomorrow, why should you be spared? In 100 words or less, explain why you deserve to live....


2.

Elated

Topic: Text search is back!!!

Posted: 06/21/09 01:18 AM

Forum: General

Only joking.

It'll totally be back after the weekend though.


3.

None

Topic: A fast way to get rid of a body

Posted: 05/06/09 05:28 PM

Forum: General

At 5/6/09 05:26 PM, Barry-Fanilow wrote: Let's talk about dead body disposal

I hear the best thing to do is feed them to pigs.


4.

Kissing

Topic: Life in the 3000s

Posted: 04/24/09 10:41 PM

Forum: General

At 4/24/09 10:37 PM, thelittleemo wrote: I meant water that we can drink. Well I guess you can drink sea water but that generally ends up with you being sick.

If only there was some way to make it drinkable!


5.

None

Topic: Life in the 3000s

Posted: 04/24/09 10:35 PM

Forum: General

At 4/24/09 10:32 PM, thelittleemo wrote: I think that there will probably be a WW3 over resources such as water.

You're probably right. Seeing as water is short supply, being that about 2/3 of out planet is covered in water.


6.

None

Topic: Life in the 3000s

Posted: 04/24/09 10:31 PM

Forum: General

I heard we'll all live underwater.


7.

None

Topic: Another "Major Update"...?

Posted: 04/24/09 10:25 PM

Forum: General

Well apart from the Art & Lit portals NG is switching to widescreen soon*, which will fuck me right over.

1024 X 768 'TIL I DIE!!

* Soon = soon by NG standards, which could mean days, weeks or years =P

8.

Kissing

Topic: How quickly can I learn flash?

Posted: 04/24/09 10:22 PM

Forum: Flash

At 4/24/09 10:19 PM, knugen wrote: There are so many factors involved it's not actually possible to give a definite answer.

Methinks you need to read my previous post homeslice! Holla!


9.

None

Topic: How quickly can I learn flash?

Posted: 04/24/09 10:16 PM

Forum: Flash

At 4/24/09 10:03 PM, X-TERRORIST-X wrote: Let's say I spend an hour a day learning, how long would it take?

17 days.

That's a definitive answer. There's no other criteria to consider (such as natural ability, intelligence, what you're actually learning, how you define "learned" and "decent" etc). An hour day will see you mastering Flash in 17 days.


10.

None

Topic: Setup for CS3?

Posted: 04/24/09 10:10 PM

Forum: Flash

At 4/24/09 10:05 PM, Rikasu wrote: My CS4 got messed up in a terrible licensing malfunction

Contact Adobe with your purchase information and they should be able to resend you the information needed to reactivate your product.


11.

None

Topic: Pico Day Preloader

Posted: 04/24/09 10:08 PM

Forum: NG News

At 4/24/09 09:53 PM, Joelasticot wrote: I'm curious if Adobe put in anything to prevent this fucking mess

AFAIK, no they haven't. As good as Flash is, there's still a lot of bugs and things not working as you'd expect. You could always code back to coding in the timeline rather than coding in external .as files. One thing I've learned about Flash is that there's no right or wrong way to work; as long it all compiles and it does what you you want it to do, you've done it right!


12.

None

Topic: Need help with simple flash

Posted: 04/24/09 10:02 PM

Forum: Flash

You need a variable to detect whether the button is pressed or not.

var buttonOneDown:Boolean = true;
var buttonTwoDown:Boolean = false;

buttonOne.addEventListener(MouseEvent.CLICK, oneClicked);
buttonTwo.addEventListener(MouseEvent.CLICK, twoClicked);

function oneClicked (e:MouseEvent):void{
if(!buttonOneDown){
buttonOne.gotoAndStop("Down");
buttonTwo.gotoAndStop("Up");
buttonTwoDown = false;
buttonOneDown = true;
}
}

functiontwoClicked (e:MouseEvent):void{
if(!buttonTwoeDown){
buttoTwo.gotoAndStop("Down");
buttonOne.gotoAndStop("Up");
buttonOneDown = false;
buttonTwoDown = true;
}
}

Code is AS3, untested but should work. If you're working in AS2 should be fairly straight forward to convert.


13.

None

Topic: How quickly can I learn flash?

Posted: 04/24/09 09:56 PM

Forum: Flash

At 4/24/09 09:48 PM, X-TERRORIST-X wrote: How long do you think it would take to learn enough to make a decent movie?

How long is a piece of string?

The hours you spend per day learning, the quicker you'll pick it up... Also, Adobe Flash CS4 is the newest and best version.


14.

None

Topic: The Anti-Joke Thread

Posted: 04/24/09 09:39 PM

Forum: General

Yo Mamma's so fat, the British Geological Survey hired her to test out their Seismographs.

(In addition to being fat, she also has a PHD in Geological Science).


15.

None

Topic: Help!

Posted: 04/24/09 09:37 PM

Forum: General

At 4/24/09 09:31 PM, SuperMarioBrosS wrote: At least the waste is fucking disposed of properly.

What by being buried?

And if nuclear weapons don't pollute

I didn't say they didn't, you implied they didn't be saying that instead of polluting nuclear weapons we should have nuclear power plants.

Also, I'm well aware of the atrocities committed in Japan (I linked to an article about Hiroshima in my first post). My point is that since the end of WWII and all during the Cold War nuclear missiles have used as a deterrent, rather than as an actual weapon, therefore they don't actually pollute.


16.

None

Topic: The Anti-Joke Thread

Posted: 04/24/09 09:30 PM

Forum: General

A BLACK MAN and a HOMOSEXUAL walk into a bar.

They order their drinks politely, drink them peacefully and then leave without bothering anyone.


17.

None

Topic: Pico Day Preloader

Posted: 04/24/09 09:27 PM

Forum: NG News

At 4/24/09 09:13 PM, Joelasticot wrote: Is there any way to export everything that's "Exported for Actionscript" in the second frame, AFTER the preloader has kicked in, and that doesn't involve putting everything from your library into a movie clip (which would cause constructor problems)? I'm about to go postal :D

When you assign classes/linkages uncheck the box that says "export in first frame". Also, I guess your problem is that you're using coding from an external class file. Rather than having multiple frames assign everything to classes so you can add things dynamically:

playBTN.addEventListener(MouseEvent.CLIC K, clicked);

function clicked (e:MouseEvent):void{
stage.removeChild(PRELOADER);
stage.addChild(MENUSCREEN);
}

ETC.


18.

Kissing

Topic: Help!

Posted: 04/24/09 09:21 PM

Forum: General

At 4/24/09 09:05 PM, SuperMarioBrosS wrote: There is a indirect meaning in that 'use a different pronoun' phrase that you failed to pick up.

Enlighten me then. Last time I checked "her" is a perfect example of a pronoun.

Also I have contributed (check my first post in the thread) and my contribution did not contradict itself:

Nuclear weapons pollute the environment by radiation.
The uranium and the other elements used can be put into making electricity.

Nuclear power plants produce waste, genius. Seeing as most nuclear waste is buried, making the surrounding land an infertile desert, it's hard to see why you disapprove nuclear weapons (which are mainly used a deterrent and therefore don't pollute) but approve nuclear power stations (which do pollute).


19.

None

Topic: Your preferred internet browser?

Posted: 04/24/09 08:56 PM

Forum: General

Internet Explorer 6.

Because PNG'S SHOULD NOT be transparent.


20.

None

Topic: Help!

Posted: 04/24/09 08:55 PM

Forum: General

At 4/24/09 08:50 PM, SuperMarioBrosS wrote: Do you ever wonder what sneaky damage nuclear weapons cause other than massive destruction?

You can replace 'nuclear weapons' with some pronoun to maintain the suspense.

Do you ever wonder what sneaky damage her cause other than massive destruction?

Yep, replacing 'nuclear weapons' with the pronoun 'her' makes perfect sense.


22.

None

Topic: Help!

Posted: 04/24/09 08:48 PM

Forum: General

At 4/24/09 08:44 PM, ImaSmartass2 wrote: C. Nuclear weapons kill large numbers of people when used.

STOP THE PRESSES!!

WEAPONS KILL PEOPLE!!!


23.

None

Topic: Pico Day Preloader

Posted: 04/24/09 08:46 PM

Forum: NG News

At 4/24/09 08:22 PM, TomFulp wrote: Is anyone doing an AS3 Pico Day submission? If so, let me know if you need us to whip up an AS3 version, or if you can fix that up yourself.

ALSO

All the PRELOADERS are available in AS3 format... All you need to do is swap out the graphics with the Pico Day ones. Instead you assume no one will use AS3. NG should be up to date and note two years behind...


25.

Kissing

Topic: Pico Day Preloader

Posted: 04/24/09 08:39 PM

Forum: NG News

At 4/24/09 08:32 PM, Rammer wrote: that's really funny. how about you upload a picture every time you post because they're all so funny.

Hmm....

Pico Day Preloader


26.

None

Topic: Pico Day Preloader

Posted: 04/24/09 08:31 PM

Forum: NG News

At 4/24/09 08:29 PM, BananaBreadMuffin wrote:
At 4/24/09 08:22 PM, TomFulp wrote: This file will work with AS1 or AS2.
HEY GLAYUL GAYMER, AKSHUNSKRIPT THWEE POINT OH

WAT NOW??!?!?!


27.

None

Topic: Pico Day Preloader

Posted: 04/24/09 08:29 PM

Forum: NG News

At 4/24/09 08:22 PM, TomFulp wrote: Ok I HOPE I got this working correctly

TOM FULP: Fountain of Confidence!

You'll want to align this movie clip towards the bottom right of your workspace

WHA???????????

Bottom right? Surely you mean top left as that's (0,0). Symbols (i.e. MCs) should always be aligned to the top left, Tom. (0,0) is a constant, (stage.stageWidth, stage.stageHeight) is not.

Also the lack of AS3 preloader makes me sad. NG should do more to promote the latest version of AS.


28.

None

Topic: Official Mod Myths Thread

Posted: 04/24/09 08:22 PM

Forum: General

This screengrab was taken before the redesign and is 100% accurate!

FACT!!!

Official Mod Myths Thread


29.

None

Topic: Daily thought for intelligent peeps

Posted: 04/24/09 08:10 PM

Forum: General

At 4/24/09 08:06 PM, Crabba22 wrote: ever noticed how it is an online forum and grammer is totally forgotten.

No, you're wrong.

If you can't spell grammar and you can't be bothered to hold down the shift key when pressing I then how can we take you seriously?

If you don't follow basic grammatical rules how do you ever hope to construct a coherent argument?


30.

None

Topic: Newgrounds Writer's Portal?

Posted: 04/17/09 10:19 PM

Forum: Where is / How to?

At 4/17/09 10:12 PM, Zerok wrote: but delays are not impossible.

I'd say delays are probable =P

Also, is that a fact it'll come out after the art portal? I was under the impression that they'd be launched together.


All times are Eastern Standard Time (GMT -5) | Current Time: 04:30 AM

<< < > >>

Viewing 1-30 of 699 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91624