00:00
00:00
Newgrounds Background Image Theme

VCR 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,402 Views | 60,186 Replies
New Topic Respond to this Topic

Response to The Flash 'Reg' Lounge 2010-05-07 21:01:19


if anything it's an easier switch to coding outside of flash :P

FlashDevelop AS3 template code:

package { import flash.display.Sprite; import flash.events.Event; public class Main extends Sprite { public function Main():void { if (stage) init(); else addEventListener(Event.ADDED_TO_STAGE, init); } private function init(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); // entry point } } }

haXe AS3 template code:

class Main { static function main() { // entry point } }

Response to The Flash 'Reg' Lounge 2010-05-07 21:39:29


At 5/7/10 08:52 PM, zrb wrote: If you use the flash libraries in haXe, it definitely is a seamless switch.

I misunderstood what exactly HaXe is, then.

Either way, I'm happy with FlashDevelop. It suits my needs.

Response to The Flash 'Reg' Lounge 2010-05-07 22:04:13


At 5/7/10 06:13 PM, Archon68 wrote: Take a last look at the red axe. I get a bronze fist tomorrow.

EVERYONE WILL BE SO CONFUSED

You're getting a bronze fist WHERE?!

Need to know basis man, come on!

Response to The Flash 'Reg' Lounge 2010-05-07 22:07:34


At 5/7/10 05:50 PM, JordanD wrote: Newgrounds Baltimore meet video

I always imagined you to look like one of those college students who could pass off as a 15 year old :)


BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 02:08:59


At 5/7/10 08:42 PM, Archon68 wrote: package
{
public class myClass
{
public function myClass():void
{
}
}
}

Those brackets are just disgusting.

Man, that's how brackets should be.


"To live is the rarest thing in the world. Most people exist, that is all."

- Oscar Wilde

BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 07:17:15


At 5/7/10 08:42 PM, Archon68 wrote: Those brackets are just disgusting.

That's the standard now adopted by Adobe (and several other programming-language-maker-people), I believe.
You'll get used to it.

If not, I think you could probably find something to download which will change the setting.


Doomsday-One, working on stuff better than preloaders. Marginally.

Response to The Flash 'Reg' Lounge 2010-05-08 07:59:29


I personally always used to use the format:

class/for/if/whatever { ... }

but i've recently swapped to:

class/for/if/whatever { ... }

as it works better with code folding since it means you click on the function to get it's body, rather than clicking on this little { on it's own line, and looks nicer when say a body of methods are folded together next to eachother. Also with large code it makes the code slightly shorter which is always nice :P For the same reason you might do:

if (something) something; else if(something) something; else if(something) something;

instead of:

if (something) { something; } else if(something) { something; } else if(something) { something; }

Response to The Flash 'Reg' Lounge 2010-05-08 08:19:53


At 5/8/10 07:59 AM, dELtaluca wrote: I personally always used to use the format:

instead of:

if (something)
{
something;
}
else if(something)
{
something;
}
else if(something)
{
something;
}

if theres only 1 thing inside an if I don't bother with the brackets!

Response to The Flash 'Reg' Lounge 2010-05-08 08:29:14


Oh and I forgot to add!

If yer that bothered about number of lines in yer code you can really condense if else's with:

s = (s < (-1.0E-6))? -1.0 : (s > (1.0E-6))? 1.0 : 0.0;

This is exactly the same as

if(s < (-1.0E-6)) { s = -1.0; } else if(s > (1.0E-6)) { s = 1.0; } else { s = 0.0; }

Response to The Flash 'Reg' Lounge 2010-05-08 08:58:03


At 5/8/10 08:29 AM, SantoNinoDeCebu wrote: If yer that bothered about number of lines in yer code you can really condense if else's with:

Only when it doesn't hinder readability.

Response to The Flash 'Reg' Lounge 2010-05-08 09:31:58


At 5/8/10 08:23 AM, HDXmike wrote: My shaver thing is far superior !

..cut-throat..

Fucking youths

Response to The Flash 'Reg' Lounge 2010-05-08 09:51:25


A strange sense of accomplishment has just swept over me...

<--

Response to The Flash 'Reg' Lounge 2010-05-08 11:03:02


At 5/8/10 09:51 AM, Archon68 wrote: A strange sense of accomplishment has just swept over me...

<--

I don't know you by your icon, just your content-less posts


the events are merely fictional, written, directed, and acted out by all who create them

BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 11:18:59


At 5/8/10 11:03 AM, Starogre wrote:
At 5/8/10 09:51 AM, Archon68 wrote: A strange sense of accomplishment has just swept over me...

<--
I don't know you by your icon, just your content-less posts

I know you by your sig.

And the way I read your name "Stargre"

Response to The Flash 'Reg' Lounge 2010-05-08 12:28:11


you mean people don't pronounce it star-ogre?

Response to The Flash 'Reg' Lounge 2010-05-08 12:59:13


At 5/8/10 12:28 PM, dELtaluca wrote: you mean people don't pronounce it star-ogre?

I always read it wrong, without the 'o' so it becomes something like

Star-grer

Like saga but with a T and an R ;)

Response to The Flash 'Reg' Lounge 2010-05-08 13:28:53


At 5/8/10 11:03 AM, Starogre wrote:
At 5/8/10 09:51 AM, Archon68 wrote: A strange sense of accomplishment has just swept over me...

<--
I don't know you by your icon, just your content-less posts

I'm known by my attempts at being more like wasim


BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 13:30:38


i guess i can see why the o kinda disappears between the r and the g

but at least it doesn't look like 'storage' to you

also wonchop likes to lick things while riding ponies


the events are merely fictional, written, directed, and acted out by all who create them

BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 13:39:29


At 5/8/10 01:30 PM, Starogre wrote: i guess i can see why the o kinda disappears between the r and the g

but at least it doesn't look like 'storage' to you

also wonchop likes to lick things while riding ponies

Aha yeah, I noticed that too.

Found it quite funny :)

Response to The Flash 'Reg' Lounge 2010-05-08 13:57:09


At 5/8/10 01:30 PM, Starogre wrote: i guess i can see why the o kinda disappears between the r and the g

but at least it doesn't look like 'storage' to you

also wonchop likes to lick things while riding ponies

No way you made a gif of that!

<3

Response to The Flash 'Reg' Lounge 2010-05-08 14:17:44


I know you by your sig.

And the way I read your name "Stargre"

I know the name Starogre, by the name. It's a good name, that makes me contemplate what a true starogre would be like. Imagine how terrified we'd be, as a species, if NASA/ESA launched some probe to Proxima Centauri, and it got held up by some cosmic ogre asking which direction sparrows fly? I'd poop my pants.
:)


BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 14:22:27


Anyone fans of music with screaming in?

(Post-)Hardcore, Metal, Heavy Rock.

Anything like that? If so, name me some of your favourite bands

Response to The Flash 'Reg' Lounge 2010-05-08 14:37:50


At 5/8/10 02:22 PM, Sam wrote: Anyone fans of music with screaming in?

(Post-)Hardcore, Metal, Heavy Rock.

Anything like that? If so, name me some of your favourite bands

Scar Symmetry.


"To live is the rarest thing in the world. Most people exist, that is all."

- Oscar Wilde

BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 14:47:13


At 5/8/10 02:37 PM, Deadclever23 wrote: Scar Symmetry.

Pretty good man. Reminds me of Bullet.

Response to The Flash 'Reg' Lounge 2010-05-08 15:47:59


At 5/8/10 02:17 PM, doctormario wrote:
I know you by your sig.

And the way I read your name "Stargre"
I know the name Starogre, by the name. It's a good name, that makes me contemplate what a true starogre would be like. Imagine how terrified we'd be, as a species, if NASA/ESA launched some probe to Proxima Centauri, and it got held up by some cosmic ogre asking which direction sparrows fly? I'd poop my pants.
)

Haha this made my day, copying this fan fic to a text file lol.

And no jordan, wonchop made it - posted it on his photobucket and put it on facebook


the events are merely fictional, written, directed, and acted out by all who create them

BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 15:48:02


At 5/8/10 03:27 PM, zrb wrote:
At 5/8/10 02:22 PM, Sam wrote: Anything like that? If so, name me some of your favourite bands
Children of Bodom.

I used to like them ;P

Response to The Flash 'Reg' Lounge 2010-05-08 16:29:09


At 5/8/10 02:22 PM, Sam wrote: Anyone fans of music with screaming in?
Anything like that? If so, name me some of your favourite bands

I was front and center for watching Cradle of Filth getting bottled off during Bloodstock last year. Someone counted fifty three seperate missiles lobbed at the stage - Dani Filth has the reflexes of a cat.

As for less cop-outish stuff, I recommend Silent Descent who I saw at the same festival a year before, who mix the screaming with actual singing and a electronic stuff.


...

BBS Signature

Response to The Flash 'Reg' Lounge 2010-05-08 16:42:56


At 5/8/10 04:29 PM, KaynSlamdyke wrote: I was front and center for watching Cradle of Filth getting bottled off during Bloodstock last year. Someone counted fifty three seperate missiles lobbed at the stage - Dani Filth has the reflexes of a cat.

As for less cop-outish stuff, I recommend Silent Descent who I saw at the same festival a year before, who mix the screaming with actual singing and a electronic stuff.

I used to love Cradle of Filth aswell.

Does anyone know more post hardcore and hardcore bands?

Alexisonfire, A Skylit Drive, A Day To Remember and Enter Shikari (more trance) are a few of my current favourite bands.

I need to find more musiccc

Response to The Flash 'Reg' Lounge 2010-05-08 17:32:00


At 5/8/10 03:47 PM, Starogre wrote:
And no jordan, wonchop made it - posted it on his photobucket and put it on facebook

I saw it on his userpage, that's just fantastic :P

Response to The Flash 'Reg' Lounge 2010-05-08 18:02:52


At 5/8/10 04:42 PM, Sam wrote: I used to love Cradle of Filth aswell.

Does anyone know more post hardcore and hardcore bands?

Alexisonfire, A Skylit Drive, A Day To Remember and Enter Shikari (more trance) are a few of my current favourite bands.

I need to find more musiccc

emooooooooooooooooo


BBS Signature