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: 'Afro-Ninja'

We found 12,283 matches.


<< < > >>

Viewing 6,181-6,210 of 12,283 matches. 1103205 | 206 | 207 | 208 | 209309410

6,181.

None

Topic: Concerts You Want To Go To...

Posted: 06/12/05 10:18 PM

Forum: General

I'm still crossing my fingers for SOAD in Ohio : /


6,182.

None

Topic: if I...

Posted: 06/12/05 10:03 PM

Forum: Flash

porn slideshows are lame. Just forget about it

there's a lot of them because the whistle wasn't always around...


6,183.

None

Topic: Prove your Smash Bros Ability

Posted: 06/12/05 09:07 PM

Forum: General

At 6/12/05 09:06 PM, unowned wrote: P.S. if you disagree that Sheik is the best character in the game I'll to come to your house and beat you with said character.
Rofl said character...

Is that why the leading guy in the nation dominates with marth? :p


6,184.

None

Topic: Prove your Smash Bros Ability

Posted: 06/12/05 09:00 PM

Forum: General

At 6/12/05 08:52 PM, Jercurpac wrote: Good stuff, I used to be amazing at that game, but I stopped playing for a while and when I tried to get back into it I realized how far everyone who kept playing had progressed past me. Isn't there some weird slide-dodge that you can combo out of that someone discovered and you need to know how to do to be competitive now?

It's called the wave-dash

You jump and immediately air dodge down and to the right or left, and you'll slide across the screen. It's tricky to pull off, especially in the middle of a fight. It's easiest to do it with luigi.

I don't use it.. I've fought people that do though, and it didn't really help them.

I did however see an amazing feat.. if you lay a bomb with samus and wave dash into right when it goes off, it'll shoot you to the other side of the screen


6,185.

None

Topic: Advertising on a website.

Posted: 06/12/05 08:43 PM

Forum: General

Sign up with google's adsense program.

.. you want to put ads on your site, right?


6,186.

None

Topic: Prove your Smash Bros Ability

Posted: 06/12/05 08:41 PM

Forum: General

Bump, for people who didn't get to see this


6,188.

None

Topic: I'll rate your " I'll rate" topic..

Posted: 06/12/05 08:13 PM

Forum: General

At 6/12/05 08:11 PM, OsAmARaMa wrote: I give this topic a 8.17/10.00

I rate your rating as a 9/10

...

But seriously guys, fucking enough already. Quit trying to whore replies to your threads


6,189.

None

Topic: liljim is an affiliate

Posted: 06/12/05 07:33 PM

Forum: General

He's an admin, and can change his color to whatever he wants. Site affiliates are blue


6,190.

None

Topic: My second "professional" site

Posted: 06/12/05 02:10 PM

Forum: Programming

At 6/12/05 01:54 PM, BulletProof57 wrote: set it a background image if the div, and use background-repeat: repeat-x (i think)

It is. it's just that the div doesn't know automatically how long to extend itself... the image is a 35x15 jpg that gets repeated vertically. Here's the css class for the div that does it

div.left{

position:relative;

width:35px;
height:700px;

background-image: url(graphics/bar_left.jpg);
background-repeat: repeat-y;
background-position: top right;

float:left;

}


6,191.

None

Topic: Arrays into arrays?

Posted: 06/12/05 01:15 PM

Forum: Flash

If you need to put arrays into arrays chances are you're better off just using objects. Easier to read if you ask me

function House(inColor, inSize){
this.color = inColor;
this.size = inSize;

this.toString=function(){
trace("This house is "+color + " and is " + size);
}
}

myAry = new Array();

myAry[0] = new House("red", "2 bedroom");
myAry[1] = new House("blue", "2 bedroom");
myAry[2] = new House("yellow", "4 bedroom");

for(i=0; i<myAry.length; i++)
{
myAry[i].toString();
}


6,192.

None

Topic: My second "professional" site

Posted: 06/12/05 01:09 PM

Forum: Programming

I guess I should point out my one problem...

as you can see the bottom of the page doesn't look correct. That because each of the black side bars lies within it's own div. once the page is built I can cut the divs off at where they need to be, but that could be different for every page... does anyone know a dynamic way of doing this? Maybe with javascript I can read the length of the page and assign the div heights accordingly?


6,193.

None

Topic: My second "professional" site

Posted: 06/12/05 01:07 PM

Forum: Programming

Ok I'm back again, and I've learned quite a bit since last time.

This time I'm doing it for real. A guy from school wants to pay me to create a website about his golf tour group. This time around I used all divs linked to a stylesheet, with absolutely no instances of the style="" attribute.

I also did my best to make the site appear correctly in 1024x768 and 800x600 in both IE and firefox.

Also ran both pages through the w3c validator and they passed

Comments, criticisms, suggestions?

www.afro-ninja.com/nsr/kk


6,194.

None

Topic: Hey Im New Here

Posted: 06/12/05 12:26 PM

Forum: General

No "I'm new" topics please


6,195.

None

Topic: Mail box option proposal

Posted: 06/12/05 11:54 AM

Forum: General

At 6/12/05 11:50 AM, The_Forcer wrote: I have a proposal, and I want to see who supports it, and maybe contacts the administrators for it.
stuff
Anyway, will somebody support the idea?

This has been suggested too many thousands of times. Email and AIM work just fine, they're no more personal than a "private message." And if someone doesn't give out their AIM or email it's because they don't want to be contacted, simple as that


6,196.

None

Topic: newgrounds prom after party !!!

Posted: 06/12/05 11:44 AM

Forum: General

I hate you all


6,197.

None

Topic: Mysql And Time In The Db

Posted: 06/12/05 11:37 AM

Forum: Programming

Quick question here, while we're on the topic..

in my database class we work with ms sql. And to retrieve the time we say

SELECT SYSDATE FROM DUAL;

it seems NOW is the equivalent of SYSDATE maybe, but am I thinking right?


6,198.

None

Topic: Help with Random Images & Variables

Posted: 06/12/05 01:07 AM

Forum: Flash

you pretty much have it right.

let's say you wanted your movieclip to stop at a random frame between 1 and 10

first store it in a variable

_root.randNumb = random(9)+1

This number will always be stored under _root.randNumb, and you can change it when necessary

Then for your clip

onClipEvent(load){
gotoAndStop(_root.randNumb)
}

or however you want to do it


6,199.

None

Topic: Do it today!

Posted: 06/12/05 12:17 AM

Forum: General

Do I get anything special for acting in the next ten minutes?


6,200.

None

Topic: flash serial

Posted: 06/11/05 10:39 PM

Forum: Flash

Wow that was almost convincing. No discussion of piracy in the forums


6,201.

None

Topic: serial #

Posted: 06/11/05 10:37 PM

Forum: Flash

No discussion of piracy on the forums


6,202.

None

Topic: newgrounds prom after party !!!

Posted: 06/11/05 10:35 PM

Forum: General

At 6/11/05 09:48 PM, Kitten_the_VG_Addict wrote: *a little drunk, but not as drunk as last time* ohhhhh....*dunks her head into the keg and almost falls halfway in*

Wow, I've never heard of an open-top keg


6,203.

None

Topic: I'm better than you

Posted: 06/11/05 10:23 PM

Forum: General

Yes and now you're banned : /


6,204.

None

Topic: Best author on Newgrounds?

Posted: 06/11/05 02:00 PM

Forum: General

This is why we list "favorite authors" in our profiles


6,205.

None

Topic: Cream of the Crop [colab]

Posted: 06/11/05 01:53 PM

Forum: Flash

At 6/11/05 01:26 AM, magma_26 wrote:
I've already taken to mind demension and fps issues, it can be done with the proper scripting.

Not really. Only if all fps's are divisible by the same number. If you have a 12 fps and a 24 fps entry, yeah, you can mess with that. But if you have a 20 fps and a 24 fps entry, how do you plan on changing the framerate mid-movie?


6,207.

None

Topic: "Voice of Truth" Song Collab

Posted: 06/10/05 08:33 PM

Forum: Flash

Do you plan to follow through with any of these?

Might I suggest just working on flash yourself for a while, and not worry about collabs or teams? I don't undertand how you can organize and assemble a collab when you haven't even made any flash


6,208.

None

Topic: Alert Boxes

Posted: 06/10/05 08:13 PM

Forum: Programming


6,209.

None

Topic: As: Main

Posted: 06/10/05 03:08 PM

Forum: Flash

Hmm. it would be awesome if we had an official tutorial section, not where the tutorials are done in flash but are presented on a newgrounds webpage...


6,210.

None

Topic: ani1 kno flashs

Posted: 06/10/05 03:00 PM

Forum: Flash

Ignore and move on, ignore and move on


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

<< < > >>

Viewing 6,181-6,210 of 12,283 matches. 1103205 | 206 | 207 | 208 | 209309410