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

We found 236 matches.


<< < > >>

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

1.

None

Topic: As : Number Through Number

Posted: 08/22/08 07:31 AM

Forum: Flash

oh, and I'm aware of using

if ( num < 10 && num > 5) { num = 5,6,7,8,9 or 10;}

just hoping theres a way to indicate the inbetween numbers easier


2.

None

Topic: As : Number Through Number

Posted: 08/22/08 07:26 AM

Forum: Flash

Just wondering, in Actionscript, how would you indicate a number through a number, for example

if(number == 5 through 10){ your number is 5,6,7,8,9 or 10;}


3.

None

Topic: TAB button highlighting

Posted: 08/11/08 07:19 AM

Forum: Flash

At 8/11/08 05:45 AM, Moonkey wrote: There is an easier way,

tabChildren = false;

on the main timeline.

Just what I was looking for, thanks a bunch


4.

None

Topic: TAB button highlighting

Posted: 08/11/08 05:33 AM

Forum: Flash

Most of us know that when hitting the tab key, you see an outline of buttons in the .swf. Is there a simpler way of defeating this (for games that use hidden buttons) than just using MC's instead of buttons, and putting in the whole

event(mouseDown){
if(hitTest(x/y mouse);
}

Just wondering if there might be a simpler way, or if theres an option when exporting or something along those lines


5.

None

Topic: using 'for' and 'attachMovie' ?

Posted: 08/10/08 03:55 PM

Forum: Flash

At 8/8/08 05:42 AM, Shadow181 wrote: hmmm... let me check, been a while since i done AS2...

Your problem would be the depth. I think you'd want something along the lines of "this.getNextHighestDepth()".

figure anything out :P ??

I've kept cracking at it but just can't seem to get it..


6.

None

Topic: using 'for' and 'attachMovie' ?

Posted: 08/08/08 05:35 AM

Forum: Flash

At 8/8/08 05:30 AM, Shadow181 wrote: one of two problems...
1. (which is most likely) the for statement, you put in ",", they should be ";"s.
2. if not that, i isnt declared(just put "var i = 1" inplace of "i =1").

Woot, thanks man, that did fix the problem of the script errors, but it is still replacing the movie clip with each new one it calles...any ideas ?


7.

None

Topic: using 'for' and 'attachMovie' ?

Posted: 08/08/08 05:23 AM

Forum: Flash

I am trying to get my attachMovie command to attach multiples of the same clip from the library, but not replace one another, I have tried the following type of script

onClipEvent(enterFrame){
if(_root.event == true){
for(i=1,i<5,i++){
this.attachMovie("linkagename", ["newName"+i], 1);
}
}
}

I have rarely used the 'for' script, so I don't think this is written right as flash is giving me errors, could some one help with this one please & great thanks!


8.

None

Topic: Scripting-Roundin g Down/Remainders

Posted: 08/06/08 05:34 AM

Forum: Flash

At 8/6/08 05:19 AM, GustTheASGuy wrote: result = Math.floor (num / div);
remainder = num % div;

OH!! Math.floor.....thats the exact script I was looking for, never had used it before, THANK you guys very very much for all the help, I have got it now.

Gust, really appreciated!


9.

None

Topic: Scripting-Roundin g Down/Remainders

Posted: 08/06/08 05:32 AM

Forum: Flash

At 8/6/08 05:10 AM, hesselbom wrote: Use the modulo operation.

var mags:Number = 2;
var mag_size:Number = 30;
var ammo:Number = 75;

var remainder:Number = ammo % (mags * mag_size);

trace(remainder);

I understand the remainder script using Modulo, but the problem is I cannot set the number of mags, I want the script to do that by dividing the total ammo by the mag_size, but without giving too many mags by rounding up.

This is where I'm at

magcapacity = 12;
ammo = 30 <-- though this will vary with a different script
mags = ( ammo / magcapacity );
remaining = ammo % ( mags * magcapacity);

but this does not work because obviously 30/12 does not give a whole number for the remainder script to sort it out, and using Math.round will round it up, also giving me the wrong numbers


10.

None

Topic: Scripting-Roundin g Down/Remainders

Posted: 08/06/08 05:02 AM

Forum: Flash

At 8/6/08 04:49 AM, Alpharius120 wrote: why don't you subtract the number of ammo required for the clip (ex. 30) from the total ammo (ex. 75) so you have the equation 75-30=45 and have the ending number be the remaining bullets?

I'm not sure you understand what I'm after, but thats my fauly, I left out that I want it so if you have enough bullets to fill a magazine, it will give you a magazine, so if the mag requires 30, and I have 45 remaining, that doesn't work since I'd want 75 ammo total into 2 mags of 30, with a remaining 15 bullets that fit, but don't fill, the last mag


11.

None

Topic: Scripting-Roundin g Down/Remainders

Posted: 08/06/08 04:49 AM

Forum: Flash

"Using Math.round(30/6) rounds it up to 3"

I meant to say 30 / 12 rounds to 3, not 30 / 6


12.

None

Topic: Scripting-Roundin g Down/Remainders

Posted: 08/06/08 04:45 AM

Forum: Flash

with Actionscript, I'm having trouble finding the code to round down numbers, and use remainders.

for ex -

I want 30 / 12 to give me an outcome of 2 with a remainder of 6, where both the 2 and the 6 will each become a new variable. Using Math.round(30/6) rounds it up to 3, and just doing it normally gives me 2.5.

my purpose -

I'm trying to devise a code that takes total ammo, puts it into magazines, and if it doesn't fit the magazines equally, it will have left over bullets for the last magazine.

Any help would be appreciate I'm stumped on this one


13.

None

Topic: Html Window Sizing ?

Posted: 07/29/08 03:14 AM

Forum: Programming

At 7/28/08 07:45 PM, smulse wrote: Thanks, Google.

Heh, thanks. I will look into this


14.

None

Topic: Html Window Sizing ?

Posted: 07/28/08 07:23 PM

Forum: Programming

Firsly, I appologize if this has been covered, I had a hard time finding this topic when I was searching.

My Question -

I am new to HTML, and was wondering, when openning a new window, how do you size it to your specifications? For example - say I want to open a new window with an image, but I want it to fit the image specs. and not be able to scroll. I have a feeling this is very easy, but like I said, I'm new / haven't been able to find this myself.

Thanks.


15.

None

Topic: Voice Actors - Tactical Assassin 2

Posted: 12/26/07 05:59 AM

Forum: General

I need a professional, clean microphone'd voice actor to read briefings and perform cutscene voice overs for my next game, Tactical Assassin 2 (the first can be found on newgrounds)

If you are interested, send an clean and clear audio clip of you saying the following in the voice you think would suit a tactical commander reading off briefings :

"This is your briefing. Eliminate your target fast and do not alert any civilians"

send your demos to sy_mon51@hotmail.com

Thanks a ton fellas :)


16.

None

Topic: Line-in through Speakers?

Posted: 12/06/06 03:51 PM

Forum: Audio

I think that's probably whats happening, because when I go to check options in my master volume thing, it doesn't have LINE-IN through playback, only under recording. So i'm pretty much screwed then?
Going to need a new soundcard I assume...


17.

None

Topic: Line-in through Speakers?

Posted: 12/06/06 03:13 AM

Forum: Audio

Hey I'm having trouble playing what I have plugged into my LINE IN input on my computer through my computer speakers. I have a DJ mixer plugged in, and I can record what it plays with various progams, but I do not hear the sound coming through the speakers in real-time, only when I play what has already been recorded.
I assume I should automatically hear the sound from my computer speakers naturally...PLEASE HELP! THANK YOU

-Simon


18.

None

Topic: Best of December Winners!

Posted: 01/12/06 01:37 AM

Forum: NG News

Hey, thanks tons for the votes! Congrats to everyone.

I'll be the first to admit, Tactical Assassin was a simple game ( animation and script wise ) but that's only due to the fact that I desperately wanted to finish a project and submit it, s'been a while. Tactical Assassin 2 will be a lot better, so hopefully you guys will enjoy that. Thanks again, especially the one-punch machine gun - NegativeONE.


19.

None

Topic: Ascii code?

Posted: 12/16/05 04:12 PM

Forum: Programming

Hey thanks for that, but NegativeONE gave me a good method already.
*THIS TOPIC MAY NOW DIE*


20.

None

Topic: Ascii code?

Posted: 12/16/05 03:43 PM

Forum: Programming

Hey NG, can some one please tell me how to get the Ascii codes given to letters in Flash MX? You know what I mean...should look something like this (if on a MC) :

onClipEvent (enterFrame) {
if (Key.isDown()) {
trace(get.Ascii);
}
}

Help would be appreciated :D


21.

None

Topic: The"Complain about movies"topic

Posted: 10/24/03 12:16 AM

Forum: General

ya i agree, that whole fight was just plain great, the only good stuff of the movie really was the action sequences, specially the highway stuff, the first time i saw it i couldnt close my mouth, was just amazing, i dont kno maybe slow mo car crashes and being a millimeter away from death with flashy explosions and gunfire just turns me on....


22.

Happy

Topic: The"Complain about movies"topic

Posted: 10/22/03 10:41 PM

Forum: General

i pretty much agree with every1 , and i couldnt 'not' agree with ne1 because we all have our tastes and opinions, but yes, couldnt agree more, trinity was off, very off in reloaded...and personally, i dont think she should win actress of the year either, she took the 'calm and over-confident yet tough' sorta character too far and made it just wierd...great movie non-the-less, cant wait to see kill bill v1, and the run down =D

i appreciate your reviews for those movies , was wonderin if they'd be worth my 15$


23.

None

Topic: The"Complain about movies"topic

Posted: 10/20/03 10:22 PM

Forum: General

chainsaw massacre thign is way less sickass mofo'd then house of a 1000 corpses, havent u see ntaht movie :|


24.

None

Topic: The"Complain about movies"topic

Posted: 10/20/03 12:24 AM

Forum: General

At 10/19/03 09:59 PM, whitewackwrapper wrote: house of a thousand corpses GAY MOVIE also Jeepers Creepers 2 SUX BALLS but dream catchers is good altho a lil confusing

i agree Ho1000C's is sooooooo ghey! i hated it ,worst acting, no story, random shit violence, rob shouldn't direct!


25.

None

Topic: RALF DEAD!? NO!!!!

Posted: 10/19/03 05:31 PM

Forum: General


Okay, I know who you're talking about now. I can't believe someone so sick would be such a good animator. So does that mean you were friends with him? I never talked to him personally, but I did enjoy a couple of his flash movies.

ya i talked to him alot, i had a feeling he was different but not SOOOO messed up, and for those of u who dont kno him, he made that his pride movie


26.

None

Topic: RALF DEAD!? NO!!!!

Posted: 10/19/03 05:09 PM

Forum: General

ok, i explained it somewat in the first post, but heres a bit more detail:

Ralf sweeney is that animator that makes DBZ style stick movies, hes good no doubt,but a sick man, and is rude to every1, i heard he commited suicide, but i say its bullshit and a cry for attention, but if its true i could care less, he was nice to me, he understood me as he said, but him i will never understand, a very strange soul indeed


27.

None

Topic: The"Complain about movies"topic

Posted: 10/19/03 05:06 PM

Forum: General

I agree, that part is wikt! that whole movie rocks, my fav parts r the freeway scenes =D

Another movie -

Snatch
A+++++
This was great, amazing plot and story, everything reflects something ! its insane, very entertaining, if u can make out what the people r saying ;) some craaaaazy accents, but still, a great movie!


28.

None

Topic: The"Complain about movies"topic

Posted: 10/19/03 04:49 PM

Forum: General

matrix - reloaded

A++++++++
First time around, i didn't close my mouth, this was amazing, great effects and all, nice action, people say its overdone, how can u over-do ACTION!? not too many of my friends r fans of it, but i love it, i recomend u check'er out


29.

None

Topic: RALF DEAD!? NO!!!!

Posted: 10/19/03 04:42 PM

Forum: General

uh...no...im not jokin at all, he is seriously trying to make people believe this shit...


30.

None

Topic: RALF DEAD!? NO!!!!

Posted: 10/19/03 04:35 PM

Forum: General

s'fine, cmon ppl reply, ralf is trying to turn our calm nice flash community into a drama


All times are Eastern Daylight Time (GMT -4) | Current Time: 05:04 PM

<< < > >>

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