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: 'Nemo'

We found 1,893 matches.


<< < > >>

Viewing 1-30 of 1,893 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 93664

1.

None

Topic: The Greatest Movie Soundtrack?

Posted: 07/28/08 07:15 PM

Forum: General

I'm a fan of the soundtracks to The Big Lebowski and The Crow - a lot of good bands and songs on both of them.


2.

None

Topic: Move on Object on top of another?

Posted: 09/03/07 09:03 PM

Forum: Flash

Search swapDepth().


3.

None

Topic: Viruses

Posted: 07/24/07 03:20 PM

Forum: General

No, I have it and it works fine.


4.

None

Topic: Any painless ways to die?

Posted: 07/24/07 03:18 PM

Forum: General

Spontaneously combust.


5.

None

Topic: Stick Rpg 2 When Is It Coming Out?

Posted: 07/24/07 03:00 PM

Forum: General

Why don't you go ask them?


6.

None

Topic: Rate my future gf

Posted: 07/24/07 02:59 PM

Forum: General

Definitely eleven...


7.

None

Topic: Guitar Hero 80's Version

Posted: 07/24/07 02:57 PM

Forum: General

My friend just called me because he got it. He says all of the songs are great.

I <3 the '80s


8.

None

Topic: Ps3 Got Pwned.

Posted: 07/24/07 12:46 PM

Forum: General

At 7/24/07 11:14 AM, JohnnyWang wrote: So, say that there are two restaurants. A burger-place and some proper fancy restaurant. A lot more påeople eat the burgers, does it mean they're better?

The only thing wrong with that analogy is that a burger joint and a fancy restaurant are probably not in direct competition with each other, whereas the consoles are each trying to take sales away from the other. I'm not trying to take a side here though, I'm just pointing out a fault.

I personally think the reason the PlayStation is not selling as fast is not only the price, but also the lack of PS3 only games. Most things you can get for a PS3 you can get for an Xbox, which is cheaper, and Xbox has many Xbox Only titles.


9.

None

Topic: red vs blue quotes

Posted: 07/24/07 12:38 PM

Forum: General

Why the Hell would you give CPR to someone with a bullet wound to the head!?


10.

None

Topic: flash sound

Posted: 07/24/07 10:58 AM

Forum: Flash

Intente usted esto. ¡Necesito practicar mi español!


11.

None

Topic: Why is Angry Faic so mad?

Posted: 07/24/07 01:40 AM

Forum: General

At 7/24/07 12:13 AM, CuteAndFuzzy wrote: And why is the boucning Zoloft Egg so sad?

Discuss.

Because Zoloft egg didn't take Zoloft yet?


12.

None

Topic: Should Salvia divinorum be illegal?

Posted: 07/24/07 01:39 AM

Forum: General

Well yeah, but I'm here more to emphasize the defective cultural bias of America.


13.

Resigned

Topic: Should Salvia divinorum be illegal?

Posted: 07/24/07 01:34 AM

Forum: General

If you have not heard of Salvia divinorum, it is a plant native to Oaxaca, Mexico that, when ingested, can induce a hallucinagenic effect. While it is still legal in most countries and in most states in the U.S., many politicians feel that it is a potentially dangerous drug that sould be strictly controlled. I am interested in what the Newgrounds peanut gallery thinks on this issue.

I, personally, do not think it should be illegal. Many politicians compare it to LSD. While I do think LSD is quite a dangerous psychoactive drug, there are very few similarities between the two:
1. Salvinorin A (the drug in Salvia) is all natural and comes from unprocessed leaves and is non-toxic. LSD has to be produced from ergot which is a very harmful fungus that grows on rye.
2. Tests have shown that Salvinorin consumption is neither mentally nor physically addictive, unlike LSD.
3. The effects of Salvinorin last only a few minutes and tests have shown that people feel physically and psychologically better after usage. LSD can last 12 hours and depression is a common effect.

With all of this in mind, I feel that Salvia is much less dangerous than LSD and even alcohol or tobacco. I am strongly against control of this plant and feel that conservative politicians are biased against it and are placing their own opinions over both common sense and scientific evidence.

Please share your opinion. I am interested in what the Newgrounds community thinks.


14.

None

Topic: Action script timing thing, help !!

Posted: 07/22/07 11:44 AM

Forum: Flash

Look for the setInterval or setTimeout (I think that's what it is) in the Actionscript help menu. You can trigger a timer on a frame and have them do an action after however many seconds or so you would like.


15.

None

Topic: Change frame with AS

Posted: 07/22/07 11:39 AM

Forum: Flash

Change all of your single = signs to ==, for starters. If you use one, that will set a variable. The double = is for boolean comparisons and the such.


16.

None

Topic: Hows this coming along?

Posted: 07/22/07 11:34 AM

Forum: Flash

No offense, but my suggestion is to scrap it and start on something more worthwhile. There are tons of that type of tutorial already on Newgrounds, let alone the thousands strung about the web.


17.

None

Topic: Button Actionscript Help Quck!

Posted: 07/22/07 11:32 AM

Forum: Flash

Why don't you just look in the Flash help/Actionscipt dictionary when it comes to codes less than four lines long...

on(release){
gotoAndPlay(nextScene);
}

Sigh.


18.

Goofy

Topic: Rotating MC towards mouse slowly?

Posted: 07/18/07 12:20 PM

Forum: Flash

Here's what I did:

onClipEvent (enterFrame) {
xdiff = _root._xmouse-_x;
ydiff = _root._ymouse-_y;
radAngle = Math.atan2(ydiff, xdiff);
degAngle = int(radAngle*(180/Math.PI));
distance = degAngle-_rotation;
trace(distance);
if ((distance<0 and distance>-180) or distance>180) {
_rotation -= 1;
} else if ((distance>0 and distance<=180) or distance<-180) {
_rotation += 1;
}
}

The reason doing something like this screws up is because you have a point (usually at the left most 90º point) where it goes from -180º to 180º, or something like that so you have to compensate for the huge gap. Your original code was actually much different, having 0º at the top, -90º to the left, and limiting itself to 270º as you go around clockwise, so I changed it to do the 180º/-180º thing.

As for the coding itself, I created a new variable, distance, and had that equal to the difference between the angle your mouse creates and the angle the object does. Then, depending upon where the breaks in angles are, I had to add an extra measurment when determining which way to go. For example, if you want the thing to rotate clockwise the distance has to be between 0º and 180º. However, if your object is pointing straight down and the mouse is almost straight up, but a bit to the left, the variable for distance will end up being less than -180º because of the break. So, just throw in an extra statment to allow it to turn in that condition. Well, I'm sure you'll figure it out.


19.

None

Topic: Creating multiple movie clips.

Posted: 05/22/07 09:29 PM

Forum: Flash

When you use the attachMovie command you can add a variable to the "new name" parameter of the new movie clip. For instance:

circNum = 1;
attachMove("circle", "newcircle"+circNum, circNum);

What that will do is load a new movie clip onto the stage (a duplicate from your library, of course) which, in this case, will have the name newcircle1, because the circNum vaiable is 1 and added onto the name. Also, note that I have the depth of the clip also set to the "circNum" variable, so this would also have a depth of 1.

Now, if you wanted to make multiple copies of this, I suggest using a loop of some type:

for(circNum = 1; circNum <= 5; circNum++){
attachMove("circle", "newcircle"+circNum, circNum);
}

And that will make 5 circles, named "newcircle1" through "newcircle5".

When you want to call one of these dynamically named objects, you need just call an object's specific name or use array notation. For instance, if you wanted to move all of those previously made circles a bit to the right, you would use a script like this:

for(num = 1; num <= 5; num++){
_root["newcircle"+num]._x += 5;
}

You use square brackets, similar to calling an index in an array, when you call dynamic objects through _root, or anything else for that matter. It takes some practice, but I hope this helps.


20.

None

Topic: i just need to know

Posted: 05/22/07 09:19 PM

Forum: Flash

At 5/22/07 08:34 PM, RaidenSM wrote: ANY HELP ON GETTING ME A FLASH SYSTEM FREE thx

Use the Internet?


21.

None

Topic: Anyone want to buy my computer?

Posted: 04/15/07 07:37 PM

Forum: General

At 4/15/07 07:33 PM, poisoned-soul777 wrote: Lol feedback will help get it sold man. I wouldn't buy if i had the money cuz you don't have any feedback so i don't know if your trustworthy.

This is the first thing I am selling on Ebay so I don't have any feedback...


22.

None

Topic: Anyone want to buy my computer?

Posted: 04/15/07 07:16 PM

Forum: General

Ebay Link

Advertising plug!

I've already had two scammers attempt to work they lack of skill on me. Ebay sucks...


23.

None

Topic: Not offensive right?

Posted: 01/25/07 10:23 PM

Forum: Flash

Since when did something being offensive ever stop it from being created?


24.

None

Topic: Exmortis 3 in Production!

Posted: 01/12/07 12:17 AM

Forum: Flash

That alpha was there back in late August I think. Hopefully it will be good.


25.

None

Topic: Multiplayer?

Posted: 12/22/06 11:55 PM

Forum: Flash

At 12/22/06 05:05 AM, KingKoala wrote: Search up FoxServer, they offer trial software that allows your computer to act as a server. You'll have to take some tutorials I think, but it's a good option for realtime multiplayer.

Here is what I think you were talking about:

http://www.smartfoxserver.com/


26.

None

Topic: Salvia divinorum.

Posted: 12/22/06 11:38 PM

Forum: General

Fun times.


27.

None

Topic: Um... Photoshop Me?

Posted: 12/22/06 11:31 PM

Forum: General

Aww you know how to spell, that's cute.


28.

None

Topic: song size too big!!

Posted: 12/22/06 07:16 PM

Forum: Flash

What kind of file is it?


29.

None

Topic: Username Lockdown?

Posted: 11/07/06 10:30 PM

Forum: NG News

I think you should just give us a 30 day deadline or something to change names. If that be the case then, can we take dibs on the names that inactive users have?


30.

None

Topic: Official 5 Years Since 9/11 Thread

Posted: 09/11/06 12:35 AM

Forum: General

I think there is an emo in this thread...


All times are Eastern Standard Time (GMT -5) | Current Time: 07:42 AM

<< < > >>

Viewing 1-30 of 1,893 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 93664