Be a Supporter!
Response to: Unit Converter Posted January 25th, 2006 in General

At 1/25/06 08:56 PM, JeremysFilms wrote: Does anyone know where I can find that Celcious/Farenheight/Kelvin unit converter flash? I tried searching but with no luck. A link would be nice :].

Thanks in advance.

Whoops, sorry for the terrible spellings of Celcius and Farenheit.

Unit Converter Posted January 25th, 2006 in General

Does anyone know where I can find that Celcious/Farenheight/Kelvin unit converter flash? I tried searching but with no luck. A link would be nice :].

Thanks in advance.

Response to: Marvel Comics: Marvel Civil War Posted January 24th, 2006 in General

At 1/23/06 06:31 PM, DarthChaos wrote: Who do you think will lead the " I don't care what the government says, I'm not revealing my secret identity" side and the "The government is right, i'll reveal my secret identity. It is please insert secret identity here " side

I think the side against the government( please refer to as side 1) will be lead by Spider-Man and the agree with the government side (side 2) will be lead by either Captain America or Iron Man.

Please Reply!!!!!0.

Hi MAX!!
Question, do you even have flash? I mean this is a flash website...

And by the way, I stopped reading your post at the word government.

Response to: Newgrounds Unfinished Swfs Thread Posted January 21st, 2006 in Game Development

At 1/21/06 11:01 PM, Neashir wrote: meh , got a little bored and started this. spent 30 minutes on it, got tired, and went to mcdonald's.

How could that of possibly taken you 30 minutes?!

Response to: In need of an artist Posted January 20th, 2006 in Game Development

-Cherries- is doing it with me!

Response to: In need of an artist Posted January 20th, 2006 in Game Development

At 1/20/06 11:14 PM, ConAir wrote: Its overhead? so the drawings would be all squishy and undetailed?

Well not exactly. You'd have to hear my idea.. contact me.

In need of an artist Posted January 20th, 2006 in Game Development

I have a game idea that I would like to use, but I'm not too good at art in flash, and it takes me way too long to make good art. I can't give out what the game is in public, since I don't want anyone to steal the idea and make it before me, but I can tell you that it will be an overhead action game.

If you are interested in doing art for the game, please contact me and I will tell you in detail about the game, what it's about, how it's played, etc.

You may contact me through any of the following ways:
AIM - Pizzalover17 | MSN - jeremysfilms@gmail.com | EMAIL - flashforms@yahoo.com

Please don't ask what the game is about in this thread, if you read what I said, you'd know that I don't want to tell the public about it.

Response to: How Change _xscale Posted January 19th, 2006 in Game Development

NG auto broke some of the lines, so just make sure you bring broken lines in the middle of codes back to one line!

Response to: How Change _xscale Posted January 19th, 2006 in Game Development

At 1/19/06 07:41 PM, Jareddeitch wrote: What I am mainly trying to do is make a preloader bar, so I needed the xscale thing, but I can't do it, but thanks for the actionscript.

So is the AS for the preloader on the frame? I'd just put this code on the loading bar movie clip:

onClipEvent(enterFrame){
this._xscale = _root.getBytesLoaded()/_root.getBytesTotal
()*100;
if(_root.getBytesLoaded()>=_root.getBytesT
otal()){
_root.play();
}
}

Then put this code on the frame on the main timeline where the preloader is:

stop();

Response to: How Change _xscale Posted January 19th, 2006 in Game Development

You can only apply actionscript to a Movie Clip, Frame, or Button. In this case, only a movieclip or button.
So use this on the MC or button:

onClipEvent(load){
this._xscale = #
}

Change # to a number representing the percent of the object's xscale

Example:
50 is half the normal scale of x
200 is double
100 is normal

Stolen Flash Posted January 15th, 2006 in Game Development

I can't believe it! Some asshole stole Starogre's flash >:[
http://www.newground..m/portal/view/289632

He even says that his website is gamefaqs in his profile!

Response to: Some PHP help? Posted January 10th, 2006 in Programming

Thanks much!

Some PHP help? Posted January 10th, 2006 in Programming

(FOR THE FORMAT CODES IN THIS POST, I CHANGED THE <'S AND >'S TO {'S AND }'S SO THEY WOULDN'T AFFECT THIS BBS POST)

I'm trying to make it so that when someone posts something it changes all < to ['s and > to ]'s Then I want it to change [b] to {b} and I have all different things I want to be changed, here's the problem though, I tried str_ireplace() but it doesn't actually change it unless I echo out the post with the str_ireplace. Like this:
echo str_ireplace('[b]','{b}',$post);
Here's my whole code without the HTML for each table it makes (and I'm using a flat-file):

<?php
header("Location: http://jeremysfilms.com");

$newpost = //HTML is here but I took it out for this post
$_POST['post']
//HTML is here but I took it out for this post
;
str_ireplace('<','[',$newpost);
str_ireplace('>',']',$newpost);
str_ireplace('[b]','{b}',$newpost);
str_ireplace('[i]','{i}',$newpost);
str_ireplace('[u]','{u}',$newpost);
str_ireplace('[font size="','{font size="',$newpost);
str_ireplace('[font color="','{font color="',$newpost);
str_ireplace('[/b]','{/b}',$newpost);
str_ireplace('[/i]','{/i}',$newpost);
str_ireplace('[/u]','{/u}',$newpost);
str_ireplace('[/font]','{/font}',$newpost)
;

$fp = fopen('updates.txt','w');
fwrite($fp,$newpost);
fclose($fp);

?>

Also, this script is NOT for making a forum, it's for something else.. but what this is for isn't really important.

If someone could help me out, I'd really appreciate it!
Thanks in advanced!

Response to: Html Help Posted January 7th, 2006 in Programming

At 1/7/06 11:16 PM, GamesCool wrote: A simple google search would have done the trick.

http://www.mediacoll..imit-characters.html

Heh, but I didn't know what to look up :p

Html Help Posted January 7th, 2006 in Programming

How can I set a textarea's maximum amount of characters? I can use maxlength with a text field, but not with a textarea. Please help.

Response to: Help with email attachments Posted January 7th, 2006 in Programming

Never mind, I got someone to help me out and he helped me out. Thanks anyway!

Response to: Help with email attachments Posted January 7th, 2006 in Programming

At 1/7/06 03:55 PM, JeremysFilms wrote: I'd like to show my whole PHP codes but I don't want to make them public.
If someone would help me over AIM or MSN, that would be great, or if there is another way?

I said that.
Please read next time.

Response to: Question about using Flat-Files Posted January 7th, 2006 in Programming

At 1/7/06 05:01 PM, Afro_Ninja wrote: put it in a directory that only other files on your server can access, like in the root

Would you go on AIM for a bit, Shawn?

Response to: Question about using Flat-Files Posted January 7th, 2006 in Programming

At 1/7/06 05:01 PM, Afro_Ninja wrote: put it in a directory that only other files on your server can access, like in the root

I had put it in the root before, and someone still hacked it all.

Question about using Flat-Files Posted January 7th, 2006 in Programming

If I use a Flat File like a txt file or an html file instead of a database and it's used for polls and shoutboxes, etc. couldn't anyone edit it to whatever they want if it's read/write permissions are set to world (6).

Response to: I Neeed Helpp Plz ! Posted January 7th, 2006 in Game Development

Please don't waste NG's storage space with such useless posts.

Help with email attachments Posted January 7th, 2006 in Programming

Hello, I set up a form that you fill out along with pick a file to upload and it will send an email attachment. Everything works great except for when I try to test the attached file for certain things like it's file type and its dimensions and its file size. I'd like to show my whole PHP codes but I don't want to make them public.
If someone would help me over AIM or MSN, that would be great, or if there is another way?

Response to: Question about ytmnd Posted January 7th, 2006 in General

At 1/7/06 11:56 AM, The_Strong_Negro wrote: Does any one know where I can find the shortened sound files of songs, or where I can find them .

Why'd you ask the same question twice?
...
Anyway, you should be posting this in the ytmnd forum.. but here's the answer:

MAKE IT YOURSELF! Take the song, and then download a sound editing program and trim it. Then change it to mp3 so you don't be like the ytmnd n00bs who keep sounds at wav. And a WAV file could be 30megs while an mp3 could be only like 300kilobytes!
So make sure to convert to mp3!

Response to: My music teacher strangled me!!! Posted January 6th, 2006 in General

At 1/6/06 05:10 PM, smpinc wrote:
Looks like he better start running.. she's a woman.. (mrs. reimer)
who the hell is that? your mom? :)

Nope, it's actually our teacher ;)

Response to: My music teacher strangled me!!! Posted January 6th, 2006 in General

At 1/6/06 05:07 PM, smpinc wrote:
At 1/6/06 05:06 PM, psycho-squirrel wrote: you should report your teacher. strangling a student to prove that a scarf can be used as a weapon is stupid and against the law.
THE PEOPLE ON THIS SITE ARE SO F***** STUPID!!!!!

Would this include you? If not, then your being a hypocrite :p

And why bother to post?

Response to: My music teacher strangled me!!! Posted January 6th, 2006 in General

At 1/6/06 05:05 PM, LinkSssilvermane wrote: If the teacher in question is female...

she's got the fetish-hots for you, pal. Run.

Looks like he better start running.. she's a woman.. (mrs. reimer)

Response to: My music teacher strangled me!!! Posted January 6th, 2006 in General

XD I'm in his music class, I was right next to him today when it happened, it was hilarious! But I kinda felt bad for him.

Response to: how to sound gay without using a l Posted January 6th, 2006 in General

At 1/6/06 04:46 PM, MurplePunky wrote: Or start humming 'I will survive'.

I did that too :D

Response to: how to sound gay without using a l Posted January 6th, 2006 in General

At 1/6/06 04:45 PM, DanPaladin wrote: you gotta say these outloud in your normal voice for them to be absolutely fantastic. it is the only way.

I did :D

Response to: how to sound gay without using a l Posted January 6th, 2006 in General

XD HAHAHA!! Nice