Be a Supporter!
Response to: Guy drinks 10 cokes a day Posted 1 month ago in General

At 12/3/14 08:37 AM, RedCoin wrote: Coke doesn't make people fat. People make people fat.

3spooky

Response to: It's almost 2 AM, NG. Posted 1 month ago in General

We've been through this.

Time zones exist.

Response to: Gas prices lowest in years Posted 1 month ago in General

At 12/3/14 12:27 AM, Boomstick wrote: soon the prices are going to shoot up.

I see what you did there

Response to: Epic Toothpaste You're Not Using Posted 1 month ago in General

Fluoride helps clean my tongue

--

I should probably get checked for oral thrush

Response to: Message for the American Schoolkids Posted 1 month ago in General

#fuckthepolice

Response to: Future of flash games Posted 1 month ago in Game Development

At 11/27/14 06:42 PM, Chroust wrote:
At 11/27/14 05:49 PM, Diki wrote:
At 11/27/14 05:40 PM, Chroust wrote: I hate you Steve Jobs :(
Apple has nothing to do with HTML5, it was created by the W3C, nor did Steve Jobs have anything to do with it when he was alive.
I just kidding with Steve. But i reads that Google and Apple "now created rules of the Net" and Adobe (kill flash and moved main of staff to development of HTML5) well Adobe has deal with Apple. I am sorry about i will just talks about this. But I take your opinion seriously, of course.

AFAIK It's both Apple and Adobe, Apple didn't want to budge on their stance on Flash in Apple devices, and after supporting Android and not Apple for awhile, Adobe decided to give up on Flash as well. Apple started it and Adobe hastened the process. At this point it's still good to use Flash because laptops and desktops have it and there tablets and mobile devices will not become more ubiquitous than them. Whatever it is, expect it to go the way of Java web applets: nowadays you rarely see them, before they were apparently all the rage.

Which I'm sorta disappointed about because there's no Javascript 2.0 and javascript is a poor language :(

Response to: Happy Thanksgiving & Throwback Posted 1 month ago in NG News

At 11/27/14 09:49 AM, Tremulos wrote: Happy Thanksgiving NG bros

Happy Thanksgiving to all!

Response to: Music Effect Help Posted 1 month ago in Game Development

At 11/25/14 04:33 PM, SkyTheStarHero wrote: Man, thank you so much for even replying! You're awesome! Though I just put it in the flash, and I placed it in the same frame as the script for stopping the frame for a textbox. Nothing really happened.. Do I put it in a different frame in the timeline? Or do I put it in the same frame as the script for stopping the animation for pressing space on the text box? Here's the action script for it by the way.

stop();
onEnterFrame = function () {
if (!Key.isDown(Key.SPACE)) {
_root.allow = true;
} else if (Key.isDown(Key.SPACE) && _root.allow == true) {
play();
_root.allow = false;
}
};

Hmm, you already have an onEnterFrame function. If you use the code I provided, then it'll replace that and pressing Space won't work anymore. This'll require some modifications; nothing too complicated though.

Assuming you have a button called skipBtn that's always on the stage/timeline, then you'd need this code on the same frame as your onEnterFrame code; I've combined the two.
So this should go on the frame where you currently have your onEnterFrame code:

var stageSnd:Sound = new Sound(_root)
var vol:Number = 100
var startFade:Boolean = false
stop()

function FrameAction():Void
{
	if (!Key.isDown(Key.SPACE))
	{
		_root.allow = true;
	}
	else if (Key.isDown(Key.SPACE) && _root.allow == true)
	{
		play();
		_root.allow = false;
	}
	if (startFade)
	{
		stageSnd.setVolume(--vol);
		if (vol <= 0)
		{
			vol = 0
			startFade = false
		}
	}
}

And on the frame where you have the button skipBtn: (skipBtn should not have any code as this will then overwrite it)

function startFadeFunction():Void
{
	startFade = true
}
skipBtn.onRelease = startFadeFunction

And when you want it to go back to normal volume, set this:

stageSnd.setVolume(100)
Response to: Half the world is infected Posted November 23rd, 2014 in General

yeah

no

Response to: AS2.0 Loading a movieclip help Posted November 23rd, 2014 in Game Development

Well why not just go to that scene 2? Alternatively, if you absolutely have to load it in the same frame, then use AS linkages -- give the movieclip you want to load a linkage of load_mc (if they are different, then rename them to some numeric value like load_mc1, load_mc2, etc.) in the properties menu of each movieclip, and use attachMovie() to attach them.

//random(10) --> if you have 10 movieclips and load a random one
var frame_no:Number = random(10)
attachMovie("load_mc"+frame_no /*gives, e.g. load_mc6*/, "load_mc"+frame_no, frame_no /*thus gives only one available instance*/, {x: /*some x value here*/, y: /*some y value here*/})
Response to: Broke a LED TV Posted November 22nd, 2014 in General

At 11/22/14 09:10 AM, 24901miles wrote: NO he didn't you fuck. He said LED display not LCD.

That's a rather nice way of correcting yourself

Response to: Guy to wear Oculus rift for 28 days Posted November 20th, 2014 in General

If I ever do that, I'd want to view a Pyroworld version of everything I'd normally see.

At 11/20/14 01:37 AM, CiviLies wrote: A pretty interesting experiment. I wonder if this, in any way, will affect his ability to tell apart the virtual world from the real world? I doubt it, but who knows, it may increase his chances of getting something like Alzheimer's or dementia somewhere down the road....

I don't think it'll increase his chances of getting those, unless it leads to mild cognitive impairment, although I do foresee an inception scenario. "Is this really...real?"

Response to: Music Effect Help Posted November 18th, 2014 in Game Development

You could lower the sound volume in the movie to 0 and then later set it back to 100. Since you're using Flash 8 you're using AS2, so it'd be something like this (haven't really tested it but I think this'll work):

//create some sound object
var snd:Sound = new Sound(some_movieclip)
var vol:Number = 0
function fadeVol()
{
    snd.setVolume(--vol)
    if(vol < 0)
    {
        onEnterFrame = null
        vol = 100
    }
}
button.onPress = function()
{
    onEnterFrame = fadeVol
}
Response to: $ percentage to go to savings? Posted November 15th, 2014 in General

120%, sell cocaine on the side.

Response to: Doritos and Mountain Dew. Posted November 15th, 2014 in Video Games

At 11/12/14 03:40 PM, Viper wrote: Don't even want to think of what it tasted like.

Like doritos, obv.

Response to: Born In The Wrong Decade Posted November 15th, 2014 in General

At 11/13/14 08:01 AM, MrApophis wrote: Well, 50/50. HD streaming, extreme speeds, more power and multitasking, billions of users.

That's a pretty big plus if you ask me.

The negative - culture is getting worse and look at all the memes of today compared to the 00s. Look at modern 4chan, there isn't any OC there and its nothing but cartoon zoophillia and trap porn and other disgusting shit

That's just godwin's law of shittiness in action. And greentext stories are at least OC.

This is the last century of human history where we're still going to be humans man

And that's why it's less complainin', more doin'

Response to: Born In The Wrong Decade Posted November 13th, 2014 in General

At 11/13/14 07:35 AM, MrApophis wrote: Believe it or not, the 2000s wasn't that fucking bad, in a lot of ways it was better than the 90s, at least the internet wasn't as shitty and you wouldn't get fuckin kicked from the raid if your stupid fuckin parents got a phone call. Also finally got easy access to videos and google vids / youtube.

I assume internet hasn't become worse in the 2010s than the 2000s...?

Response to: Scaring away new users. Posted November 12th, 2014 in General

Here's a solution. In Wi/Ht? threads which are asking for answers to a question, the OP should mark as solved if they find out a solution, and lock the thread themselves. No bitching and less mod work on their part. Essentially the OP there was throwing a fit for a mod doing a favor for him and thus was a bit of an attention whore as well because why else would you complain about a thread being legitimately locked on a public post? Take it to PM or do nothing, it was just an ordinary lock as stated by the mod.

Response to: Completely wipe the display list? Posted November 10th, 2014 in Game Development

Question: Would recursion increase the odds of the GC running?

Response to: Skype Group Posted November 10th, 2014 in Game Development

You'll have better luck in the Collaboration or Clubs and Crews forum.

Response to: Completely wipe the display list? Posted November 9th, 2014 in Game Development

At 11/9/14 08:51 PM, MintPaw wrote: I can' think of a good reason to do this. :/

How about wiping the screen at, say, the end of a level, so that all children are removed and the next level's children are loaded?

Response to: Unlocked phones Posted November 8th, 2014 in General

At 11/8/14 11:36 AM, NuclearInfected wrote: Don't unlocked phones cost you the full price?

Not if they're Chinese knockoffs. I have an rebranded M9701TH tablet and a a Micromax Canvas W121 windows phone
All hail our overlord microsoft

Response to: give me smthin to anim8 and i will Posted November 8th, 2014 in General

At 11/8/14 11:25 AM, Pixelwiz wrote:
At 11/8/14 02:26 AM, DalexJ1337 wrote: because that forum is dead. so unbelievably dead that i will take the risk of being banned by EyeLovePoozy. ALL HAIL EYELOVEPOOZY.
Fixed.

Even death will not stop EyeLovePoozy.

no he's still alive but never gonna live it down
Response to: The Flash 'Reg' Lounge Posted November 7th, 2014 in Game Development

At 11/7/14 08:56 PM, MSGhero wrote:
At 11/7/14 08:52 AM, Gimmick wrote: Also: feature creep is real :o
My gamedev life is feature creep.

I'm gonna start making a dialogue editor GUI bc of the dumb amount of dialogue my current and future games have. That way the writer can edit a json file directly instead of messaging me that I misspelled one word.

That actually serves some purpose lol. I'm trying to make extensions available in an AIR application (desktop) I'm making, even though I cannot foresee the application being used very widely for more than a very simple extension to be made.

Speaking of which, I was thinking of putting the code and graphics on github to facilitate work, but do you guys think someone stealing my code would be an issue? My game idea sucks and all that, but someone could literally just compile what I have posted and pass it as his own.

Put a "Code copyright © MSGHero 2014-". That'll show them not to! /s
You could make it private, if you don't care about the cost of hosting private projects.

Response to: The Flash 'Reg' Lounge Posted November 7th, 2014 in Game Development

Trying to make an AIR application extensible by using LocalConnections to send the majority of data to an extension SWF which can then be used to modify the application. Any tips / warnings?

Also: feature creep is real :o

Response to: the old background is back. Posted November 5th, 2014 in General

At 11/5/14 12:14 AM, Gimmick wrote:
At 11/4/14 11:56 AM, PsychoGoldfish wrote:
At 11/4/14 11:18 AM, liljim wrote:
At 11/4/14 09:56 AM, PsychoGoldfish wrote:
Yeah all the designs we have related to red sweaters are great
There needs to be more Jack Torrence on the left.
Why can't I add images in editing hnnnngh

like so

the old background is back.

Response to: Girl at my school is pregnant Posted November 5th, 2014 in General

Be friends with her, but don't feel responsible for taking care of the baby since it's not yours.

Response to: the old background is back. Posted November 5th, 2014 in General

At 11/4/14 11:56 AM, PsychoGoldfish wrote:
At 11/4/14 11:18 AM, liljim wrote:
At 11/4/14 09:56 AM, PsychoGoldfish wrote:
Yeah all the designs we have related to red sweaters are great

There needs to be more Jack Torrence on the left.
Why can't I add images in editing hnnnngh

Response to: What Do You Think Of Scte3? Posted November 4th, 2014 in General

Are we talking about SCTE3? I love talking about SCTE3 what is your favorite SCTE3 related fact? Mine is that SCTE3 is tshe founder of Newgrounds.com. I wish tshey made SCTE3 action figures. I am going to name my child SCTE3. Tshey should change tshe capital of Pennsylvania to SCTE3 City because I really think well of SCTE3. If SCTE3 was bitten by a poisonous snake I would suck tshe venom out of sher, even if it was sher dick, and i'm not even gay I just really like SCTE3. Tshe only thing I love more than SCTE3 is talking about SCTE3. I tried to make a SCTE3 fan club at my school but no one joined so it was just me. If I could meet SCTE3 I would tell sher all tshe things I know about SCTE3. I want to go to college to major in SCTE3 and tshen build my own business so I can create SCTE3 related merchandise. SCTE3's face should be immortalized in stone for sher incredible contributions to tshe world and my life. If SCTE3 was a Yugioh card she was have infinite attack and defense points because she's SCTE3, tshe singular point with which my life revolves. I love SCTE3, I want to be married to SCTE3. I would marry Wade Fulp just to be closer to SCTE3. I am changing my name to SCTE3 Fulp because I admire tshe strength and respect tshe name commands. I would vote for Tom for president and mister universe because she is just that charismatic and handsome. Tshe Fulp name should be listed among nobility. I am crying right now because I feel like no one else wants to talk about SCTE3 as much as I do. I must be tshe only person with a SCTE3 diary that keeps a record of everything SCTE3 has ever said to me and things I hope she will say to me in tshe future. I framed a PM SCTE3 sent to me and my mom wanted me to take it down for my diploma but fuck sher sshe doesn't know what SCTE3 means to me. I wish SCTE3 was my dad, my dad sucks, SCTE3 wouldn't suck if she was my dad. My life would be misery without SCTE3. Everyday that I log onto Newgrounds and find a new thread to discuss some inane aspect of SCTE3's life fills me with joy and meaning so please let me talk about SCTE3 or i'm going to explode

man i sound drunkass eh
lame copypasta replacing skills ftw

but tbh she's pretty awesome

Response to: the old background is back. Posted November 4th, 2014 in General

At 11/4/14 04:32 AM, liljim wrote:
At 11/4/14 04:24 AM, Gimmick wrote:
At 11/4/14 04:18 AM, liljim wrote: Here's a sneak peak of one of the Christmas themes.
that looks awful imo
but that's just, like, my opinion man
(

sorry :( The thing is that shade of blue is a bit too bright or close to cyan...I remember last year's winter version being sorta grayish-blue or more faded than that. Could just be me and I'm imagining things though.

Well, here's the other contender.

This looks better!