00:00
00:00
Newgrounds Background Image Theme

apollonx just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

The Flash 'Reg' Lounge

3,046,728 Views | 60,186 Replies
New Topic Respond to this Topic

Response to The Flash 'Reg' Lounge 2007-09-10 14:09:39


At 9/10/07 01:09 PM, Paranoia wrote:
It only maps the positive half of x ^ 0.5 :P
I mean the half below the y axis, smartarse :P Also, it's n / 0 that's undefined.

There is no part below the y axis, just either side of it. y =x^0.5 can not be negative for x or y just using real numbers. if x is negative, y is complex, if y is negative, somethings gone wrong.

Also, glaiel, nice tool. You should add some features like integration and differentation and finding the area under the curves. Also, Allow for the user to input the y= part, incase they want an equation which doesn't start with y=, for example x^2 + y^2 = r^2.

Also, you should make options to input data and have graphs and statistics made about it. I made a tool that can draw lines of best fit and calculate the correlation. You could use that if you can't be bothered to work out the maths yourself. Click to add new points

Response to The Flash 'Reg' Lounge 2007-09-10 14:15:00


At 9/10/07 02:09 PM, CybexALT wrote:
At 9/10/07 01:09 PM, Paranoia wrote:
It only maps the positive half of x ^ 0.5 :P
I mean the half below the y axis, smartarse :P Also, it's n / 0 that's undefined.
There is no part below the y axis, just either side of it. y =x^0.5 can not be negative for x or y just using real numbers. if x is negative, y is complex, if y is negative, somethings gone wrong.

My bad. I was thinking of cases like y ^ 2 - x = 0 or circle equations.

Also, since when have you been back? Gimme a hug :P


BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 15:16:14


At 9/10/07 02:09 PM, CybexALT wrote: Also, glaiel, nice tool. You should add some features like integration and differentation and finding the area under the curves. Also, Allow for the user to input the y= part, incase they want an equation which doesn't start with y=, for example x^2 + y^2 = r^2.

ya I'd love to do that, unfortunately doing an implicit curve grapher is a LOT more complicated than a function grapher.

Delta made one a while ago. Maybe I can get him to combine in my equation parser to accomplish the task.

Anyway...

Too old?

I don't feel like I'm getting too old for NG. As a developer, the internet is my home. I live at my website but NG is such a huge part of what made my website popular, and where I meet artists and other coders, and all that stuff that it's hard to imagine becoming too old for it. The community at the flash forum is much the same. We all share similar interests in developing games or animating movies, and we're all here to help each other out.

That being said, no offense to you guys here, but I wish there were a lot more... highly experienced flash developers here. Cause like, lately if I have a problem and post a help thread about it, it falls to the bottom of the page with no reply, I bump it, some noob responds "did you name your movieclips right?" or "did you remember to declare your variables right, like var x:Number = 5" etc. It doesn't help, and by the time someone actually gives a helpful answer I've already coded a work around. Mostly, not too many people here are familiar with OOP and AS3 to be helpful enough for some of the situations I've encountered lately in trying to learn AS3.

In fact, here's an unsolved AS3 problem I've been trying to find a workaround for a while. No internet sites have been helpful so far. If you do gotoAndStop on a movieclip, it doesn't load the new frame till after all the AS is executed. So I can't access clips of the next frame to tell them to go to a frame until the next frame, which would result in blips when coding a character with multiple parts and such. Any ideas?

Response to The Flash 'Reg' Lounge 2007-09-10 15:32:58


At 9/10/07 03:16 PM, Glaiel-Gamer wrote: In fact, here's an unsolved AS3 problem I've been trying to find a workaround for a while. No internet sites have been helpful so far. If you do gotoAndStop on a movieclip, it doesn't load the new frame till after all the AS is executed. So I can't access clips of the next frame to tell them to go to a frame until the next frame, which would result in blips when coding a character with multiple parts and such. Any ideas?

Well, i don't code AS3, but i've got an idea. If as3 runs frame actions after all the previous code, try putting just 'gotoAndStop(blah);' in a function and calling the function where you would say 'gotoAndStop()' originally.

eg.

function stopAction()
{
gotoAndStop();
}

stopAction();

if it calls functions along with everything else, it might work. Just an idea :D.

Too Old?

I don't think i'll ever fully stop coming to NG. Not because i want to keep up with the other ASers/animators, not because i want to watch flash and not because i want to submit flash, it's just that i owe most of my life to Ng :P. If i'd never typed in 'games' in google and found newgrounds, than i'd have never got into flash, never improoved my art, and never coded before.

Now, thanks to that, i'm acing IT, i've made a thousand odd $, and i want a career in Computer design or programming. Anyway, if i'd never seen NG, i wouldn't be who i am today :D.

Sounds corny, no?

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 15:39:28


Too old?
It's kind of a bummer to be in the older quarter of the BBS population, but as long as Luis is around, I won't worry too much about my age here.


BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 16:16:46


if it calls functions along with everything else, it might work. Just an idea :D.

no, the frames don't get updated until the end of the frame where the actions are on... i.e. after ALL actionscript

Response to The Flash 'Reg' Lounge 2007-09-10 16:25:37


I have four points in space defined by either four Objects or four MovieClips (just by using _x, _y properties... it's not important which in this case it is). these are arranged so that clockwise they read point1, point2, point3, point4... like so

1--2
| |
4--3

The problem is I want to use these points to subdivide this square (or trapezium or paralellagram or kite or other quaderlateral) into multiple squares...

1--|--2
| | |
|---|---|
| | |
4--|--3 (assuming 1 subdivision, in practice I'll be wanting somewhere between 3 and 4 subdivisions)

I'm already using a for loop to draw these subdivided squares, but what I need to know is how to work out where to place them - since I've already built the matrix transformation doohickey for my perspective engine, I need the points to place them at and as soon as I feed those in it should work. My brain seems to have blown a fuse and can't work this one out. A hand would be appreciated here.


...

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 16:30:13


Too old?

At 9/10/07 03:39 PM, NegativeONE wrote: It's kind of a bummer to be in the older quarter of the BBS population, but as long as Luis is around, I won't worry too much about my age here.

As shown by the previous post, I'm obviously showing my age if the Post Reply button looks like the New Topic one...


...

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 16:36:09


At 9/10/07 04:30 PM, KaynSlamdyke wrote: Too old?
As shown by the previous post, I'm obviously showing my age if the Post Reply button looks like the New Topic one...

priceless, I read the whole post thinking "why is this in the reg lounge and not in its own topic"

hilarity.


BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 17:06:44


Age+ Schedules

8-10 hours of school
6-8 hours of homework
20-30 hours fo work
3 hours of soccer

That's one fuck of a day, I think we were doing daily schedules not weekly lol...

I could see myself outgrowing the BBS but probably not through highschool, its such a better waste of time then T.V.
I wish I could program well enough to help Glail, I wish I could program better in general =P it's just to boring to boring to learn =D.

Dog Poisoning

Some dipshit left out meat filled with rat poison on a commonly walked dog trail near my house. Suspicion lies on a contractor because it techniqually is "privately owned land" but he bought it from the city so many people are unclear whether or not it is a free to walk trail.

My dog's a roamer we keep the door open and everyone in my neighborhood knows him... he's a chiller so he never bothers anyone. So reading the sign just makes me wonder what kind of sick fuck would deliberately poison dogs, pretty fucked up in my eyes and seeing as my dog does go out and about it also feels like its a very real threat to a big part of my life.

I just thought you guys might appreciate how messed up that is...


I'm cool now... Right guys?... Guys?

Art Thread So I don't Lose It >:(

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 18:49:48


At 9/10/07 05:06 PM, NextToNothing wrote: I just thought you guys might appreciate how messed up that is...

Yeah that sucks. My neighbor poisoned my dog before :(


iamcoreyg.com // campnorth

Need a website? music? graphics? CONTACT ME.

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 19:07:14


At 9/10/07 03:16 PM, Glaiel-Gamer wrote: In fact, here's an unsolved AS3 problem I've been trying to find a workaround for a while. No internet sites have been helpful so far. If you do gotoAndStop on a movieclip, it doesn't load the new frame till after all the AS is executed. So I can't access clips of the next frame to tell them to go to a frame until the next frame, which would result in blips when coding a character with multiple parts and such. Any ideas?

Hmm, best I can think of is this:

import flash.events.TimerEvent;
import flash.utils.Timer;

mc.gotoAndStop(2);
var t:Timer = new Timer(1, 1);
t.addEventListener(TimerEvent.TIMER, function(){mc.mc2.alpha = 0.1;});
t.start();

Here I'm setting the alpha of mc2 which resides in the second frame only of mc. Annoying and roundabout, but it looks like it might be needed :(

Tom-

Response to The Flash 'Reg' Lounge 2007-09-10 21:02:08


At 9/10/07 07:07 PM, The-Super-Flash-Bros wrote: Hmm, best I can think of is this:

import flash.events.TimerEvent;
import flash.utils.Timer;

mc.gotoAndStop(2);
var t:Timer = new Timer(1, 1);
t.addEventListener(TimerEvent.TIMER, function(){mc.mc2.alpha = 0.1;});
t.start();

Here I'm setting the alpha of mc2 which resides in the second frame only of mc. Annoying and roundabout, but it looks like it might be needed :(

Tom-

hmm interesting solution. Damn it that's annoying though.

Too bad flash doesn't support overloading of operators or functions though it would make it a lot easier to just override gotoAndPlay().

Speaking of which, AS3 attempts to bring flash closer to lower level languages like c++ and the such, however it's missing a lot of things that would make it even better and I think I'll just list a few right here that I REALLY wish flash had (not including anything involving hardware like graphics cards or direct speaker output etc).

1. Operator Overloading- Making a custom math class would be SO MUCH easier if I could use + instead of class.add(stuff). It would also make resulting codes much more readable.

2. Function Overloading- Along the same lines, being able to overload a constructor would make a class much more manageable.

3. Memory Management- If I send a value to a function in flash, I should be able to specify if I'm sending a copy of the data or a reference to the data. That way I can avoid accidental modification of variables and such.

4. Proper Scoping- If I declare a variable in a loop, the variable should be deleted after the loop is over. having multiple for loops that all use i as the looper thing get annoying when I get 50 errors about "redefining variables".

5. Inline Functions- Ever have a repeated block of code that you wish you could put in a function, however putting it in a function would require passing 50 variables to it? With inline functions you could just specify that the function blah() simply tells the compiler to replace blah() with the contents of the function. It's a compile-time function and not a run time function, so therefore you get a speed increase too. It seems like such a basic command I wonder why adobe didn't bother implementing it.

Also, a nuisance I have is the variable declaration.

var thingy:Number = 5

seriously, why? The code could easily be shorter, as most lower level languages do have it shorter.

in c++:

float thingy = 5

along those lines, we have int, how about float? Number is a nuisance to type out cause of the capital.

If AS3 is meant to be closer to a low level language, they should have gone a little farther. These basic functions wouldn't have changed flash too much, just added expanded features which most languages already support.

Also, I love flash's multi type expandable arrays. But the option for a more traditional single-type constant size array should still be included for speed purposes.

Anyway enough bickering, AS3 is great but they failed to fix some of the main issues that AS2 had.

Response to The Flash 'Reg' Lounge 2007-09-10 21:58:00


Too Old For NG

Heh, I think that's impossible. Ya ever noticed NG releases most poeples inner child? Take Denvish for example: He's one of the oldest members and often makes jokes 'bout his age but if you look at his posts you'll notice every now and then he'll post like a "kid". Same with Krinkels and other famous members. The list goes. I admit I can't see a 60+ old man/women going on NG, but both 14 year olds and 30+ both enjoy NG for the same reasons and both act generally the same. Posts don't represent age. It's just that imaturity seems to represent young poeple and maturity represents old poeple. However poeple don't post based on the maturity of their age but rather on their personality and mood at the time. I could post serious all the time but I perfer not too 'cause I have a sillier personality. Err, bottum line I think it's impossible for anyone under 60 to be "too old" for NG. NG will never become too old for any of us I think. If it's still 'round when I'm pushin' 60 I'll probably still be here too, so the whole 60+ is possible.

But hey that's a bipolar-hick's opinion! :P

Also: This is why you don't let friends borrow your video cameras.


www.DuderEntertainment.com/ | Makin' Laughs and Kickin' Ass! >:3

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 22:00:13


So, here is a special gift for all you Angryfaic fans out there.

It's Angryfaic Vista. Basically, it's a nifty skin for Windows XP that makes it looks like Vista. As you can see, instead of that shitty Windows circle, you now have an ANGRYFAIC! OMFG! lulz

Regardless, I have included that, the small avatar size Angryfaic jpeg (courtesy of NG), the Desktop (also courtesy of NG), the style file (Called Stolen5), and a small program in case you just get the style window up. If you need to use the program, it might give you some gay shit, but don't worry about it.

So, there you have it, your own Angryfaic Vista.

So here is the RAR file for all you cool kids. The shit is pretty simple, and I went into enough detail that a half retarded monkey with a blue crayon could do it. Enjoy.

Response to The Flash 'Reg' Lounge 2007-09-10 22:23:48


DISTRACTIONS

I get distracted by other ideas I ave bouncing around in my head.

Response to The Flash 'Reg' Lounge 2007-09-10 22:27:58


At 9/10/07 10:05 PM, caseyo wrote: ATTN: England

math.
elevator
color

ATTN: America

mate
moustache
aeroplane

thank you.

Attn: You

Airplane

Response to The Flash 'Reg' Lounge 2007-09-10 22:30:59


At 9/9/07 07:34 PM, JPI wrote: Yeah, you can code them yourself in a movieclip (making your own buttons to scroll, having a scroll limit etc) or you can use some of the pre set ones in the components bar (that's in the righthand panel, if it's not open already use the window toolbar and open it). If I recall, they look a little Macey :PLate Thanks! and Thanks too shortmonkey.. I didnt like much the comoponets thingy, but i used a code for a game that was on the tutorial collab and just applied it to a different thing.. here is the thing, if you are curious. Use the arrow keys to move! Still need to color.


Distractions.

I hate them, and i have too many, if i hadnt distractions i would have already finished my collab parts and Vision, but no, i go on talking on msn or look for stupid videos, or play on my wii or browse newgrounds or just think about stuff i would liek to do but i cant becaus eit takes time and i havent finished older stuff..

Response to The Flash 'Reg' Lounge 2007-09-10 22:32:22


Too old for NG

Ahhh, being 15 is great...

period

Response to The Flash 'Reg' Lounge 2007-09-10 22:52:27


At 9/10/07 10:32 PM, Smartdog wrote: Too old for NG

Ahhh, being 15 is great...

period

No it isn't. 16-18 is much better.

15: Not legal age of consent, no driving permit, not old enough to buy R-rated movie tickets for self, not old enough to drink beer legally in some other countries, and you're still an underclassmen at school. sounds fun?

16-18: Legal age of consent or just legal, Permit and License, old enough to buy tickets and M-rated games, 18 can get you hard licuor in some countries, and college/uni.

Did I miss something? The only bad thing about 18 is that you can go to jail legally then.

Response to The Flash 'Reg' Lounge 2007-09-10 23:03:26


At 9/10/07 10:52 PM, Radioactive24 wrote: 16-18: Legal age of consent or just legal, Permit and License, old enough to buy tickets and M-rated games, 18 can get you hard licuor in some countries, and college/uni.

Yes. Being 18 is pretty fucking great.
You become a lot more independent when you finally get your driver's license, able to alcohol on tap, uni -life is great.
Although now i don't get pocket money from my parents, and I have to pay for the petrol in the car, and uni has a lot more homework and assignments than highschool ever did. :/

Ah well.


-----------------------------| Website | 101 Signs Collab | NG Audio Portal Flash |----------------------------

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-10 23:13:06


Re: too old

I thought about that some time ago, and i think that the site gives you as much as you put into it... Tom once told me that he thought i was like the foster mother of newgrounds (dunno if that was a compliment) but regardless i think that the reason i have yet to outgrow it is because i choose to find new angles and things to take advantage of in terms of what the site offers... I really think the community aspect of ng is what makes it hard for some other site to compete with.. while i was in london i had called tom up on the phone and had everyone sort of do a roll call and just say hi, and it was really cool because i sat there and i thought damn to think a site has this hardcore reach to have people 1) show up to these things and 2) really appreciate the fact that it all came from that dumb kid from Pennsylvania (Tom) its insane and all very cool..


None

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-11 12:48:25


At 9/10/07 11:13 PM, Luis wrote: Re: too old
really appreciate the fact that it all came from that dumb kid from Pennsylvania (Tom) its insane and all very cool..

Yea it's funny to think about. Newgrounds was one of the first websites I ever went on, I think it was newgrounds, addictinggames, and ebaumsworld, and newgrounds was the site that really enchanted me with the idea of flash animation and now 5 years later or whatever I have e-friends on newgrounds, and a game on addictinggames and ebaums, I dunno, it's kind of weird but I sort of have an e-life, and growing older I guess it'll change around a little, but I don't think I'll cut out of the e-scene all together.

imesh

Really awesome file sharing program, you can grab one song, and then download the whole album, it completely destroys limewire, and like it's name implies, it's sort of like itunes. So check it out, it's really cool.


BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-11 12:58:05


Is that really legal Coaly? :/

I guess that the program is, but downloading the songs?

Response to The Flash 'Reg' Lounge 2007-09-11 13:08:16


At 9/11/07 12:58 PM, DreamworX wrote: Is that really legal Coaly?
I guess that the program is, but downloading the songs?

...I guess so, I'm not saying I've done anything illegal, looks like you need to subscribe within 15 days or something, it's a trial version. Well, it's not illegal, it's cool, and even though I know nothing about it, you should still go check it out.


BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-11 13:10:08


At 9/11/07 12:58 PM, DreamworX wrote: Is that really legal Coaly? :/

I guess that the program is, but downloading the songs?

RE: i-mesh
Its too contraversial to feature here... if you are interested go look into it. Coaly's posts.. removed.

sorry hun.


None

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-11 13:58:24


RE: Too Old For This Shit?

I think one of the things I realized reading through these posts is that the biggest reason I'm losing touch with NG is the simple fact that I'm not dedicated much time to Flash lately. I think thats the problem. If I didn't have a full-time job to worry about, and just had my two days of school to attend, I'd be shoulders deep into the site.

I've never felt much motivation to go to Comic-cons, NG Meet-ups, or any other such NG-centric activities. A lot of the guys my age or older, who really seem to get a lot out of Newgrounds are the ones with 4.0 b.a.'s, who go to these meet-ups, and make nice money from flash. If I had the time for that I'd be in the same situation.

So, no, I guess i'm not getting too old, I'm just short of time and luster. Hopefully I can fix that immediately :)

Response to The Flash 'Reg' Lounge 2007-09-11 16:26:30


At 9/11/07 01:58 PM, Deathcon7 wrote: RE: Too Old For This Shit?

I think sometimes if you feel jaded by the NG you should take a break from it definately, it can be a bit much after awhile and breaks are sometimes necessary.

UK meetup done, next stop: canada

Im pretty exhausted still from going to london but i did stick my foot in my mouth about trying to get a toronto meet going so consider that the next thing.. im thinking itll happen the weekend of canadian thanksgiving.. which i believe is mid oct. No thread on it yet but I'll have to talk to negativeone and sort it out.

October 13ish.


None

BBS Signature

Response to The Flash 'Reg' Lounge 2007-09-11 16:29:50


UK Meetup Pics

Just upped my pics, go take a looksy:

http://the-super-flash-bros.newgrounds.c om/news/post/25498

Tom-

Response to The Flash 'Reg' Lounge 2007-09-11 16:32:14


At 9/11/07 04:26 PM, Luis wrote: UK meetup done, next stop: canada

Im pretty exhausted still from going to london but i did stick my foot in my mouth about trying to get a toronto meet going so consider that the next thing.. im thinking itll happen the weekend of canadian thanksgiving.. which i believe is mid oct. No thread on it yet but I'll have to talk to negativeone and sort it out.

October 13ish.

We still need to do a god-damned Philly or NY meet-up. The Philly meet-up would almost be better so we could harrass Stamper and Mindchamber :3

I wouldn't fuck with Jeff though. He'd cut yo' ass.