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

We found 198 matches.


<< < > >>

Viewing 1-30 of 198 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7

1.

None

Topic: Newgrounds "Holidays"

Posted: 07/08/09 02:03 PM

Forum: Where is / How to?

Is there a list or something of the "holidays" on Newgrounds, such as Pico, Madness, and Clock Day?


2.

None

Topic: For the last time... VCam...

Posted: 06/21/09 02:11 PM

Forum: Flash

I've read so many tutorials, and they don't make sense... So, how do you make a VCam work?

By the way, it's for a game, so the camera is centered around the character so you can actually walk through a level or something.


3.

None

Topic: Sound convert (MP3 > .wav) ?

Posted: 03/29/09 08:00 PM

Forum: Flash

Hello there, I need sum help plz. I need to convert a sound file (MP3) to a .wav... any suggestions for sites?


4.

None

Topic: Need A .swf Conversion...that Works

Posted: 03/02/09 01:47 PM

Forum: Flash

I hope this is the right place... Anyway, I felt like uploading some of my epic masterpieces to Youtube, I guess. I created an account, whatever, but when I uploaded it, it said the .swf file wasn't supported or something. I've tried a few sites to convert them, but no luck.


5.

None

Topic: Convert SWF > fla's?

Posted: 02/26/09 06:57 PM

Forum: Flash

Okay, it sounds way too... risky, even though I don't have ANY intentions of stealing, but, you just can't trust people. Nevermind then!


6.

None

Topic: Convert SWF > fla's?

Posted: 02/26/09 06:43 PM

Forum: Flash

Well, there are three reasons for this...

1. If you lost, or the .fla of your Flash got deleted, corrupted, etc., then you can no longer work on it.

2. People can steal someone else's Flash

And 3., my sorta reason, is to just take a Flash, and look at the AS and stuff, just curious. But I'm sure that's hard to believe, there are too many Flash thieves nowadays.


7.

None

Topic: Convert SWF > fla's?

Posted: 02/26/09 06:31 PM

Forum: Flash

Just wanna know a way to convert a .SWF into a .fla.


8.

None

Topic: Make a MC goto a frame with a key

Posted: 02/21/09 02:55 PM

Forum: Flash

At 2/21/09 02:35 PM, Jereminion wrote: onClipEvent(enterFrame){
if(_root.hero.hitTest(_root.enemy) && Key.isDown(87)) {
_root.enemy.gotoAndStop(2);
}
}

Actually, what if I wanted to use Space or something? When you use space, up, down, etc., it follows a different format, and I can't get it right.


9.

Happy

Topic: Make a MC goto a frame with a key

Posted: 02/21/09 02:52 PM

Forum: Flash

Thanks so much, it WORKS!!


10.

Angry

Topic: Make a MC goto a frame with a key

Posted: 02/21/09 02:32 PM

Forum: Flash

(ACTIONSCRIPT 2.0!!!)

I'm having serious trouble with this. I want it so...

When you hit a certain key, while in contact with the enemy, that the enemy MC goes to and stops at their dying animation.

onClipEvent(load){
if(_root.hero.hitTest(_root.enemy)) {
if(Key.isDown(87)){
_root.enemy.gotoAndStop(2);
}

This is miserably failing. I don't get it, everytime I export, it says you need to close the onClipEvent with a }. So I add one, and then it says that that screws it up. I dunno.


11.

None

Topic: Crappy Var/score Problem (as2)

Posted: 02/17/09 08:21 PM

Forum: Flash

Yesh. As always, I've freaking having trouble with a var thingy. Here's the lowdown:

You control a guy. Okay.
You lose HP as you touch enemies. Hmmmm
The HP total is a dynamic text, with the var name HP
This in the player's actions:

onClipEvent (enterFrame) {
if (_root.hero.hitTest(enemy)) {
_root.HP--;
}
}

I may want to add... the text in the HP box is 100, and the player's instance name and the enemy's instance name are both correct.


12.

None

Topic: Crystal clear audio in flash?

Posted: 02/17/09 08:19 PM

Forum: Flash

Here's an idea...

Open the library, right click > properties or sound... then uncheck "Use imported MP3 quality", then set the bit rate really high. Only problem, is it'll eat the memory quick.


13.

Shouting

Topic: Crappy Var/score/math Problem (as2)

Posted: 02/17/09 07:49 PM

Forum: Where is / How to?

Yesh. As always, I've freaking having trouble with a var thingy. Here's the lowdown:

You control a guy. Okay.
You lose HP as you touch enemies. Hmmmm
The HP total is a dynamic text, with the var name HP
This in the player's actions:

<code>onClipEvent (enterFrame) {
if (_root.hero.hitTest(enemy)) {
_root.HP--;
}
}</code>

I may want to add... the text in the HP box is 100, and the player's instance name and the enemy's instance name are both correct.


14.

None

Topic: Anyway to get past the .gif crap?

Posted: 02/16/09 02:58 PM

Forum: Where is / How to?

At 2/16/09 02:54 PM, simon wrote: Flash and Photoshop are your friends.

I don't have Photoshop here, how would I do this in Flash?


15.

Angry

Topic: Anyway to get past the .gif crap?

Posted: 02/16/09 02:42 PM

Forum: Where is / How to?

I'm having a hard time making a .gif icon for a Flash I want to submit. Every time I do it, the color sucks. Okay, that's normal. I can slightly improve it, but with this icon, it just sucks, the transparency goes away, and looks like garbage.

Anyway to make it look decent? And why do the icons have to be gifs? Their so much trouble!


16.

None

Topic: Quick Keycode Question

Posted: 02/09/09 08:24 PM

Forum: Flash

At 2/9/09 08:19 PM, knugen wrote: if(Key.isDown(87)){

You almost got it :)

That's weird, I tried it after I posted, and it didn't work, so I just copied it, but it worked... I know that's exactly what I set it to...

Anyways, thanks.


17.

None

Topic: Where do I post sound packs?

Posted: 02/09/09 08:19 PM

Forum: Where is / How to?

Make a soundboard in Flash?


18.

None

Topic: Quick Keycode Question

Posted: 02/09/09 08:17 PM

Forum: Flash

I remember having trouble with this a while ago, so here I go.

So okay, I want a second MC being controlled by W,A,S,D.

So:

onClipEvent(enterFrame){
if(Key.isDown(Key.87)){
this._y -= 3;

But that doesn't work... (87=W)

onClipEvent(enterFrame){
if(Key.isDown(Key.(87)){
this._y -= 3;

And this didn't either. Anyone know the *correct* way?


19.

None

Topic: Anti Cheat Code For Mouse Avoiders?

Posted: 02/08/09 05:45 PM

Forum: Flash

At 2/8/09 05:36 PM, fluffkomix wrote: ......has anyone even read my first post? i'm pretty sure it would work.

Well, I could try it, not sure if this method is basically what your saying, but anyway, I'll put a really small 0% alpha MC into the cursor MC. Set the maze's actions so if that MC touches the maze, I goto the fail frame.

But the question is, will it work?


20.

None

Topic: Anti Cheat Code For Mouse Avoiders?

Posted: 02/08/09 04:57 PM

Forum: Flash

I already took the right click menu away. But that isn't going to change anything... you can still right click and go around/through stuff.


21.

None

Topic: Anti Cheat Code For Mouse Avoiders?

Posted: 02/08/09 04:53 PM

Forum: Flash

At 2/8/09 04:48 PM, Saza wrote: if(Key.isDown(2)){
gotoAndStop("gameover")
}

Something like that i think

Tried it, didn't work. Are ya sure 2 is right click?

Actionscript 2.0, by the way.


22.

None

Topic: Anti Cheat Code For Mouse Avoiders?

Posted: 02/08/09 04:38 PM

Forum: Flash

I've looked and searched many tutorials, and can't find it. I just need a link to a tutorial, or a code, that makes it so people can't cheat in a mouse avoider (disabling right click or something)...

Help plz!


23.

None

Topic: Frame Change Code?

Posted: 02/07/09 08:37 PM

Forum: Flash

Sorry, if it helps, I'm using Actionscript 2.0.


24.

None

Topic: Frame Change Code?

Posted: 02/07/09 08:35 PM

Forum: Flash

I'm making a game, and I made the framerate low. For this certain animation, it looks like crap with a low framerate. Is there like some kind of frame code that allows you to when you enter the certain frame, it changes the framerate?

Something like this? :

onClipEvent (enterFrame){
set.FPS == 30;
}

I dunno, something like that. Any ideas?


26.

None

Topic: Rage's gift to you: Abusive reviews

Posted: 01/22/09 07:15 PM

Forum: Where is / How to?


28.

None

Topic: Rage's gift to you: Abusive reviews

Posted: 01/20/09 07:02 PM

Forum: Where is / How to?


29.

None

Topic: Wi/Ht? level up! Lounge

Posted: 01/19/09 12:30 PM

Forum: Where is / How to?

Level 14... AND DEITY WHISTLE BABY


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

<< < > >>

Viewing 1-30 of 198 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7