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,181 matches.


<< < > >>

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

1.

None

Topic: gotoAndStop not working!

Posted: 10/03/09 04:58 PM

Forum: Flash

Your not and you are, the way yourcode works is that everyframe that you press down the Down key it goes to play frame 2, making it looked paused


2.

None

Topic: Coding Issue..

Posted: 07/29/09 10:51 AM

Forum: Flash

Because now your script says if right key is pressed and the control key is not being pressed.

You need to set up some type of variable so flash knows that it's just been released.


3.

None

Topic: Omfg :(

Posted: 04/25/09 12:37 PM

Forum: Flash

did you change the AS to AS2? It could just be a simple mistake


4.

None

Topic: School help, flash buttons

Posted: 03/27/09 10:26 PM

Forum: Flash

make it so when the second is rolled over the actionscript goes

_root.firstbutton._visible = false;

or if you want to go for the same effect at a different level, after they both slide on make them switch to the same layer, then when you roll over one make it have the top most level.
swapDepth


5.

None

Topic: What's wrong with this?

Posted: 03/27/09 10:21 PM

Forum: Flash

unless he reaches 722.5 exactly he is not going to restart, make it about 10-15 pixels big, or make it >722.5 . that should fix your problem


6.

None

Topic: Xbox Awards, Overlooked Gems

Posted: 03/04/09 10:15 PM

Forum: NG News

I know where i put all of my votes.
I wonder if it can win all 4 awards...


7.

None

Topic: Comment on this model?

Posted: 02/25/09 10:56 PM

Forum: Flash

A bit too clean, and a bit too square, also i don't really like the transition of the torso and legs.
Other than that though, it's a solid start.


8.

None

Topic: just going to mak eporn from now on

Posted: 02/24/09 10:08 PM

Forum: Flash

I think your going about this all wrong. You don't have to make a flash about porn. You just have to put the word "Hentai" in the title. As soon as that word appears all the spammers 5 it and it will get through.

Caution, if you do this you too will become a spammer :3

That or practice, either way works


9.

None

Topic: Robot names

Posted: 02/24/09 10:05 PM

Forum: Flash

Bender is a cool robot name, i think you should use Bender as your name


10.

None

Topic: Left 4 Dead Collab?

Posted: 02/23/09 11:56 PM

Forum: Flash

Sorry, you need a BA (Batting Average (average of your top 3 flash's)) of at least 3.5 and you don't have any content on here.

To get around this if you pm an admin and prove to him that you are committed and have the abilities to support a collab it might be worth it.


11.

None

Topic: the little cross thing

Posted: 02/23/09 09:35 PM

Forum: Flash

for the record it's called a shape flag

I think it's been a while

12.

None

Topic: Rate my Lip Sync ^_^

Posted: 02/21/09 11:58 PM

Forum: Flash

I like it but it would look a lot better if you put in some transition frames between different mouthes. (teeth partly showing, or mouth partly open)


13.

None

Topic: Flash technology

Posted: 02/21/09 11:54 PM

Forum: Flash

I have a small wacom fun and i love it. I haven't used it in any of my flash's but i still like to draw with it


14.

None

Topic: Military Rts Flash Idea

Posted: 02/20/09 09:54 PM

Forum: Flash

with no flash's on Newgrounds it's hard to see how serious you are.

Post something like an example pic of the game, or maybe some AI examples.
To get attention you have to show that you are willing to commit and are serious


15.

None

Topic: Drag 'n' Drop question

Posted: 02/12/09 10:40 PM

Forum: Flash

you could do a

if(!key.isDown(1)){
drag = false;
}

type of thing


16.

None

Topic: Platformer or Top view game?

Posted: 02/12/09 10:37 PM

Forum: Flash

this survival horror is sounding more and more like nazi zombie from COD5


17.

None

Topic: Tablet, is it important?

Posted: 01/29/09 12:52 PM

Forum: Flash

At 1/29/09 12:49 PM, fluffkomix wrote: i can draw better with a mouse then i can on paper.

That's the real question, if you practice enough with the mouse you will be fine. But if you want your paper drawing skills to be transfered to flash get a tablet.


18.

None

Topic: flash help

Posted: 01/29/09 12:05 PM

Forum: Flash

An easy way around this is to put musci streaming in a movie clip then put the movie clip in the first frame.


19.

None

Topic: Sprite movement fucked up

Posted: 01/26/09 05:37 PM

Forum: Flash

At 1/26/09 05:21 PM, gintasdx wrote: I got some movements probs with Delphi. I am creating space shooter,but dont know how to make enemy wave movements like in classic side scrolling shooters. Anybody know how to it using X an Y axis with Sin,Cos and Rad formulas?

Although you should have made your own topic, i'll try to help anyways.
Rotation is usually pretty wierd. On AS:Main theres a couple topics in Intermediate that should help you
heres one of them
Good luck


20.

None

Topic: Grappling hook question

Posted: 01/25/09 02:08 AM

Forum: Flash

When i played it i found that if i got the guy into the swinging animation he would jump down about as much as his height, then he would keep moving left or right if i pressed them. Posting the code would help bunches.


21.

None

Topic: Child of Fulp Collab

Posted: 01/12/09 10:23 PM

Forum: Flash

Does the menu and preloader have to be in AS3 or AS2, i don't think you mentioned that, or i just missed it.


22.

None

Topic: help with movment animations

Posted: 01/07/09 09:03 PM

Forum: Flash

At 1/7/09 07:16 PM, zenfasterxd wrote: okai so im using this code :
but i want it to gotoAndPlay(3); when i'm not pressing anything. how do i do that?

2 ways

Way 1

onClipEvent(load){
speed=5; stop();
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)){
_x+=speed; gotoAndStop(1);
}
else if (Key.isDown(Key.LEFT)){
_x-=speed; gotoAndStop(2);
}else{
gotoAndPlay(3);
}
}

Way 2

onClipEvent(load){
speed=5; stop();
}
onClipEvent (enterFrame) {
if (Key.isDown(Key.RIGHT)){
_x+=speed; gotoAndStop(1);
}
 if (Key.isDown(Key.LEFT)){
_x-=speed; gotoAndStop(2);
}
if (!Key.isDown(Key.LEFT) && (!Key.isDown(Key.RIGHT))){
gotoAndPlay(3);
}

23.

None

Topic: I am an animator, but shit artiste.

Posted: 01/07/09 08:54 PM

Forum: Flash

weren't you guys listening he doesn't draw sticks, he traces everything


24.

None

Topic: MC Instances, can't do anything?

Posted: 12/29/08 03:49 PM

Forum: Flash

did you try ?

_root.bob

25.

None

Topic: New Platformer, Got some questions.

Posted: 12/19/08 07:58 PM

Forum: Flash

try this, have it trace (grav) and trouble shoot from there

it would help you a lot more if you found the error.

Also try making grav always 4 (doesn't get any bigger) just for testing


26.

None

Topic: New Platformer, Got some questions.

Posted: 12/19/08 06:57 PM

Forum: Flash

in the else grav becomes 0 and then the character falls by grav (0);
redeclare grav being 4 or don't make grav 0


27.

None

Topic: Actionscript Platformer Problem

Posted: 12/16/08 09:18 PM

Forum: Flash

try this

while(_root.ground.hitTest(_x,_y-x,true)){
_y --;
}

x can be from -2 to 2. you may not need it (0) but it sometime messes up the jumping script so by changing x it can make jumping work again.

It's so simple, and amazingly effective


28.

None

Topic: Platformer problem

Posted: 12/15/08 11:52 PM

Forum: Flash

It's hard to replace a V-cam. I've tried and failed.

To fix your V-Cam problem use this code instead

onClipEvent(enterFrame){
_y += (_root.guy._y-_y)/4;
_x += (_root.guy._x-_x)/4;
}

29.

None

Topic: SoC engine preview!

Posted: 12/07/08 11:24 PM

Forum: Flash

reload and shoot need to e 2 different buttons, also

The game physics just piss me off, i don't care how "realistic" your trying to be, this game is as efficient as shooting a wall. I think the only way to beat it is to have made it.


30.

None

Topic: rush jam rpg

Posted: 12/07/08 08:23 PM

Forum: Flash

i think i know exactly what type of plot you need

Amazing endless adventure plot

someone continue

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

<< < > >>

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