Newgrounds.com — Everything, By Everyone.

Checking login status…

USERNAME:

PASSWORD:

Logging in…

Logged in as:
.
Logging out…
Inbox My Account Log Out


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

We found 2,090 matches.


<< < > >>

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

1.

None

Topic: Umm Hi new guy here

Posted: 08/19/08 03:50 PM

Forum: Flash

Writers with Great amazing ideas to animators or programmers are like 10:1

Get the free trail of Adobe flash and learn yourself


2.

None

Topic: bubble popping code help

Posted: 08/18/08 07:54 PM

Forum: Flash

why did you put score++ in curly brackets?

You don't have to

3.

None

Topic: Do you go back and check?

Posted: 08/18/08 06:26 PM

Forum: General

And let my argument go to my opponent? Never, i stay with my posts until i go to sleep, or until someone else wants to use the computer.


4.

None

Topic: Happy Birthday Mogly

Posted: 08/18/08 06:18 PM

Forum: Flash

Happy Birthday Mogly

Today and only today your special

5.

None

Topic: Make a Flash ad for L'Oreal

Posted: 08/18/08 05:52 PM

Forum: Flash

V-Cam is already used.

It's a virtual camera which is very popular, might want to come up with a new name.


6.

None

Topic: bubble popping code help

Posted: 08/18/08 05:50 PM

Forum: Flash

instead of animation it floating up use action script AS to make it go up and in the movieclip of the bubble, the first frame would be the bubble and the second would be the first frame of the explosion and so on.

Heres an example i made to make it really simple
Example Fla


7.

None

Topic: bubble popping code help

Posted: 08/18/08 05:34 PM

Forum: Flash

2 ways of going about this

first - make another MC of a bubble popping, then when it's clicked, make the bubble going up MC invisible, and place the bubble popping MC at the right part

the hard part is figuring the right place to put it

second - Make the bubble going up just a bubble (first frame) and the popping in the (second rrame to whatever) then putt in some AS on the bubble

onClipEvent(load){
gotoAndStop(1);
}
onClipEvent(enterFrame){
_y -= 8

if(clicked){
gotoAndPlay(2);
}
//incomplete code, fill in the rest
}

8.

None

Topic: 9 Year old wants to be garbage man.

Posted: 08/18/08 04:59 PM

Forum: General

I've met nine year old who want to be astronauts. To me i think a kid wanting to be a garbage man is a realist. Theres money in trash.


9.

None

Topic: longest you've gone without food

Posted: 08/18/08 04:43 PM

Forum: General

About 4 days when i had my apendix removed

It was loads of fun

But only 24h when i wasn't sick

24 hour famine

10.

None

Topic: As: Main

Posted: 08/17/08 09:03 PM

Forum: Flash

At 8/17/08 09:01 PM, RiotFlash wrote: looking back, i only see the intermediate and advanced sections. no beginner ones.

Check the bottom of the previous page


11.

None

Topic: help

Posted: 08/17/08 08:57 PM

Forum: Flash

At 8/17/08 08:43 PM, biohasard wrote: i have read every tutorail on newground

BULL!!

search a subject and "tutorial" into the top search bar


12.

None

Topic: ark need skull!

Posted: 08/17/08 08:55 PM

Forum: Flash

Just google it, learn the points, and how it works, draw it until you like it on paper, then draw it on flash,

Teach a man to fish, he'll eat forever

13.

None

Topic: help

Posted: 08/17/08 08:41 PM

Forum: Flash

And don't forget Newgrounds' lovely AS:Main


14.

None

Topic: identify this flash

Posted: 08/14/08 08:46 PM

Forum: Flash

If it was on the front page, try the front page archives...


15.

None

Topic: Trouble w/ keeping sync on sounds

Posted: 08/14/08 08:33 PM

Forum: Flash

did you set your audio to stream?


16.

None

Topic: Need sprites

Posted: 08/13/08 08:59 PM

Forum: Flash

Most likely the reason flash is freezing for you is that it's too big. Go on paint and delete all the ones you won't use. making it smaller always makes flash Faster.


17.

None

Topic: Wanted: Animation Trainer

Posted: 08/13/08 08:18 PM

Forum: Flash

If you want to animate you have to learn how to draw well.

Grab some paper, a pencil, and draw whatever you see


18.

None

Topic: What's the worst torture possible?

Posted: 08/10/08 08:59 PM

Forum: General

Getting my feet tickled

Man i hate that >:(

19.

None

Topic: Backround Help

Posted: 08/10/08 05:54 PM

Forum: Flash

right click your layer, and select >add new layer , then drag it under your current layer.


20.

None

Topic: AS Platformer help.

Posted: 08/10/08 05:50 PM

Forum: Flash

What i do is that when the jump button is press I make grav like -8 then while he's in the air every frame grav ++; that way he moves up then down again.


21.

None

Topic: Random screenshot of my new project

Posted: 08/10/08 05:39 PM

Forum: Flash

Looks SEXY :P


22.

None

Topic: help making a simple platformer!!

Posted: 08/09/08 04:46 PM

Forum: Flash

Here's your formated code.
Also you only need 1 (enterFrame) event.
Here's your code with some adjustments. Make sure the Shapeflag is just under the character too

onClipEvent (load) {
	moveSpeed = 10;
}
onClipEvent (enterFrame) {
	if (Key.isDown(Key.RIGHT)) {
		this._x += moveSpeed;
	} else if (Key.isDown(Key.UP)) {
		this._y -= 0;
	} else if (Key.isDown(Key.DOWN) && !fall) {
		this._y += 0;
	} else if (Key.isDown(Key.LEFT)) {
		this._x -= moveSpeed;
	}
	if (Key.isDown(Key.SPACE) && !jumping) {
		vel_y = 36;
		jumping = true;
	}
	if (jumping == true) {
		vel_y -= 2;
		if (vel_y<=-15) {
			vel_y = -15;
		}
		this._y -= vel_y;
	}
	if (_root.ground.hitTest(this._x, this._y-2, true)) {
		vel_y = 0;
		jumping = false;
	}
	this._y += 16;
	while(_root.ground.hitTest(this._x, this._y+1, true)) {
		this._y --;
	}
	if (this.hitTest(_root.goal)) {
		this._parent.gotoAndPlay(2);
	}
}

23.

None

Topic: (Hentai)I can't take it anymore...

Posted: 08/09/08 04:37 PM

Forum: Flash

I think the worst part is they didn't even make the slideshow part, they use a template, resize crappy pictures and submit it.


24.

None

Topic: Help Needed

Posted: 08/07/08 04:32 PM

Forum: Flash

just google "Your format" to swf converter

Works almost all the time

25.

None

Topic: Happy Birthday SpamBurgerrr

Posted: 08/07/08 02:19 PM

Forum: Flash

HAPPY BIRTHDAY!

All Caps because i mean it!!

26.

None

Topic: Most satisfying thing you've eaten?

Posted: 08/06/08 10:52 PM

Forum: General

Today i had a sugar cookie, and it blew me away, it was just the right chewy and the icing was sweet but not too sweet. It was amazing...


27.

None

Topic: Stolen Game on Portal

Posted: 08/06/08 10:28 PM

Forum: General

pm wade, he'll take care of it


28.

None

Topic: im confused

Posted: 08/04/08 04:15 PM

Forum: Flash

to do this you need to think a simple as possible, then turn it into code.
As an example in the wall you could put something like:

I'm not giving cod because then you can't learn
if(player hittest (this)){
push player away;
}

or in the character put the same thing but reversed.


29.

None

Topic: How do I make the small picture?

Posted: 08/04/08 04:11 PM

Forum: Flash

create a new document that's 46x46, copy a scene you like into it, adjust it so what you want is what you see, then export it as a .gif


30.

None

Topic: Music Syncing..

Posted: 08/03/08 04:04 PM

Forum: Flash

you need to select a frame with the music in it and in the properties panel (the bottom panel) set it from event to stream. That way you can hear the music when you edit it.


All times are Eastern Daylight Time (GMT -4) | Current Time: 09:02 PM

<< < > >>

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