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

We found 363 matches.


<< < > >>

Viewing 1-30 of 363 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91113

1.

None

Topic: PHP fwrite() new line help

Posted: 07/18/08 11:27 PM

Forum: Programming

thanks


2.

None

Topic: PHP fwrite() new line help

Posted: 07/18/08 04:20 PM

Forum: Programming

I'm trying to make a parser for my files and I have a few questions.

First: I want the parser to output in this format

$array["first"]["second"]["third"]["etc."]

So for example

//My file
"Test"
{
"testKey"
{
"testVar""testValue"
}
}
//PHP

$arrays = Parse("file.txt");

echo $array["Test"]["testKey"]["testVar"];

//Returns
Test Value

Now I'm pretty sure i can do that, I've done it with Lua and theres only a few changes.

My question is can this be done easier with XML? Will I get the same result if i use either the DOM parser or expat?

And when i write this:

\"test\"\n
\"test2\"\n

to a file it returns
"test"[][]"test2"[]

in the .txt file itself. What escape characters should i use so that notepad will recognize the new lines. I mean, it doesn't really matter it just helps readability.


3.

None

Topic: Working with strings [php]

Posted: 06/30/08 07:05 PM

Forum: Programming

i would do

for($k = 0; $k < strlen($s); $k++) {
$s = str_replace("  ", " ", $s)
}

That way ther can be more than 50 spaces and it will get rid of spaces after fifty characters


4.

None

Topic: Working with strings [php]

Posted: 06/30/08 07:03 PM

Forum: Programming

Does it work?


5.

None

Topic: Help wit name animation!

Posted: 06/29/08 02:28 PM

Forum: Flash

At 6/29/08 02:20 PM, Saxodormat wrote:
At 6/29/08 02:18 PM, Wolfears2 wrote: There isn't. Animate it or gtfo.
What is gtfo?

"Get the fuck out"

Also, use a mask and tween it over the name as the crayon goes by, thats the laziest.


6.

None

Topic: Frames Per Second

Posted: 06/27/08 04:33 PM

Forum: Flash

thats what i thought.


7.

None

Topic: Weekly Actionscript Challenge #1

Posted: 06/27/08 04:00 PM

Forum: Flash

sure i'll enter :)


8.

None

Topic: Weekly Actionscript Challenge #1

Posted: 06/27/08 03:49 PM

Forum: Flash

Wow, this competition is exactly what I was just working on. This is what I have so far. Pretty much, it spawns up to 645 little peeps that will walk around randomly. I don't think they die, not yet, I think this is the version they don't die in...
http://spamtheweb.com/ul/upload/270708/5 6854_gawd.php


9.

None

Topic: Frames Per Second

Posted: 06/27/08 03:44 PM

Forum: Flash

Is there a function that returns the current Frames Per Second? It has to be really obvious but my google/as main searches got me no where. Also,I would like to know for AS 2 not AS 3.


10.

None

Topic: getURL help

Posted: 06/13/08 06:59 PM

Forum: Flash

no, i will though


11.

None

Topic: getURL help

Posted: 06/13/08 06:54 PM

Forum: Flash

At 6/13/08 06:50 PM, Archon68 wrote: I tried it in my flash and it works perfectly... try retyping it into your .fla... I know it sounds dumb but sometimes it works.

still doesn't work, also, it works find when doing "ctrl+enter" in flash and running it from there, and it works in firefox, it just doesn't work in internet explorer or safari


12.

None

Topic: getURL help

Posted: 06/13/08 06:14 PM

Forum: Flash

actually, thats not how it actually is in the script, i just made that typo when posting


13.

None

Topic: getURL help

Posted: 06/13/08 06:12 PM

Forum: Flash

hah, thanks


14.

None

Topic: getURL help

Posted: 06/13/08 06:07 PM

Forum: Flash

my get url woks fine in FF but not in IE or safari

code:

on(release) {
	getURL("htttp://www.mydomain.com/?do=ba", "_self");
}

15.

None

Topic: Safari for PC vs. Mac

Posted: 06/04/08 04:04 PM

Forum: Programming

thanks


16.

None

Topic: Safari for PC vs. Mac

Posted: 06/04/08 03:55 PM

Forum: Programming

Is the way safari handles CSS, HTML, etc. on the PC the same it handles it on a Mac? I want to make sure my site looks proper for Mac users too even though i don't have a mac ;)


17.

None

Topic: Java help

Posted: 06/04/08 03:53 PM

Forum: Programming

thanks


18.

None

Topic: Java help

Posted: 06/03/08 03:47 PM

Forum: Programming

whats the difference?


19.

None

Topic: Java help

Posted: 06/02/08 08:09 PM

Forum: Programming

I just started to learn java and wanted to know how to make the text lower case

here is my code

<script type="text/javascript">
<!--
function Run() {//put it in a function so i could use it in a button later on(as a test)
	confirm("I'm going to ask you a question");
	var Input = prompt("Hey? (Y/N)", "");
	document.write(Input.toLowerCase);
	if (Input.toLowerCase == "y") {
		alert("yup");
	}else{
		alert("nah dood");
	}
}
Run();
//-->
</script>

Returns: function toLowerCase() { [native code] }


20.

None

Topic: More hiehgt problems

Posted: 05/26/08 09:12 AM

Forum: Programming

THANK YOU SO MUCH, finally fixed :D


21.

None

Topic: More hiehgt problems

Posted: 05/25/08 09:12 PM

Forum: Programming

Now they just don't go on the same area.... look to see what i mean.


22.

None

Topic: More hiehgt problems

Posted: 05/25/08 05:05 PM

Forum: Programming

yessir


23.

None

Topic: More hiehgt problems

Posted: 05/25/08 03:37 PM

Forum: Programming

bump?


24.

None

Topic: Programming Question

Posted: 05/25/08 12:28 PM

Forum: Programming

learn both, that way you can make a website for your flash :)


25.

None

Topic: PHP include 'function' problem

Posted: 05/25/08 12:27 PM

Forum: Programming

As long as you include the function on whatever page your using it should work.

<?
//functions.php
function MyFunc(){
echo "MyFunc!";
} ?>
<? 
//index.php
include("functions.php");
MyFunc();
?>

That will display "MyFunc!" on index.php


26.

Crying

Topic: More hiehgt problems

Posted: 05/25/08 12:24 PM

Forum: Programming

actually adding the clear class didn't do anything D:


27.

None

Topic: More hiehgt problems

Posted: 05/25/08 12:12 PM

Forum: Programming

At 5/25/08 10:18 AM, smulse wrote:
At 5/24/08 08:18 PM, RIPCGeek wrote:
<div class="table_top"></div>
<div class="table"></div>
<div class="table_top"></div>
<div class="table"></div>
<div class="table_top"></div>
<div class="table"></div>

Thank you for finally giving me an answer! Also, it seems to be working fine like that, why do I need to uses classes instead?


28.

None

Topic: More hiehgt problems

Posted: 05/24/08 09:57 PM

Forum: Programming

that didn't do anything?


29.

None

Topic: More hiehgt problems

Posted: 05/24/08 08:31 PM

Forum: Programming

well no because I need the height to change, it can't be a static height.


30.

None

Topic: More hiehgt problems

Posted: 05/24/08 08:06 PM

Forum: Programming

I don't really know how to explain it, one of my columns doesn't make the content box bigger?

http://tbcrp.x10hosting.com/ex/

You can see what i'm talking about there, the CSS file is includes/css/main.css


All times are Eastern Daylight Time (GMT -4) | Current Time: 06:44 PM

<< < > >>

Viewing 1-30 of 363 matches. 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 91113