DarkMana's Banner

DarkMana

Gear Reviews Favorites News Main
DarkMana

Age/Gender: 18, Male
Location: MB, Canada
Job: Student

I still need to submit a game.

Newgrounds Stats

Sign-Up Date:
4/4/05

Level: 23
Aura: Dark

Rank: Police Officer
Blams: 376
Saves: 170
Rank #: 15,169

Whistle Status: Bronze

Exp. Points: 5,550 / 5,880
Exp. Rank #: 3,522
Voting Pow.: 6.46 votes

BBS Posts: 2,736 (1.59 per day)
Flash Reviews: 66
Music Reviews: 1
Trophies: 0
Stickers: 12

DarkMana

Building a new rig.

Posted by DarkMana Aug. 13, 2008 @ 8:02 PM EDT

I'm now doing what I should have done nearly three years ago -- purchasing parts and building my own computer. I'll be updating this post as I go.

ESSENTIAL PARTS

CASE: Coolermaster CM590
PSU: Silverstone Element ST50EF 500W
M/B: ASUS P5Q Pro
CPU: Intel E8400
RAM: Mushkin Redlines PC2-8000 2x2GB
VIDEO: Diamond Radeon HD 4850
DRIVE: Samsung SH-S203N DVD±RW w/ Lightscribe
HDD: Hitachi Deskstar 500GB

WISHLIST

+ Arctic Cooling Freezer 7 Pro (CPU heatsink/fan)
+ Arctic Cooling Accelero S1 Rev.2 (VGA heatsink)

PROGRESS

The system is now built and, miraculously, booted on the first attempt (seriously one of the best feelings in the world). Running Windows XP Home.

Updated: 12/23/08 8:41 PM 16 comments | Log in to comment! | Share this!
DarkMana

Free Flash Development

Posted by DarkMana Feb. 21, 2008 @ 6:36 PM EST

For all those who either (1.) can't afford Flash CS3, (2.) want a cleaner, less-intensive development environment, or (3.) plan on writing flash apps/games in pure code, here's a plug to the great FlashDevelop, an Actionscript IDE meant to compliment Adobe's free Flex 2 SDK. It features a great Visual Studio-ish GUI, complete with syntax highlighting (of course), property/method listing, code completion, integration with the Flex 2 SDK, and more.

It can also be installed in "standalone" mode, writing nothing to the registry and no user appdata -- perfect for a flash drive.

Updated: 02/21/08 6:57 PM 3 comments | Log in to comment! | Share this!
DarkMana

SHOWCASE #2: AS3 'Keys' Class

Posted by DarkMana Feb. 16, 2008 @ 3:20 PM EST

Here lies the second installment to my flash/actionscript showcase. The first was posted nearly three months ago -- I figured it's high time for an update.

- - -
SHOWCASE #2: AS2's 'Key' Emulation (AS3)

I wrote this class many months ago, refining it gradually to this day (as I do with most of my classes). It completely emulates the old Key class from Actionscript 2, but with built-in constants for every common key on the board. It's quite the nuisance having to look up the ASCII keycode for nearly every key you need (such as WASD), but no longer. In my AS3 Keys class, every letter and number is built-in -- in addition to the general [SHIFT], [CTRL], [SPACE] and such that the AS2 Key class had.

Checking the letter 'A':

In AS2:
- - -
Key.isDown(65);
- - -

With my class, in AS3:
- - -
Key.isDown[Keys.A];
- - -

Note the use of square brackets [] rather than parentheses (). This is because isDown is an array, rather than a function, à la AS2's Key.

Back to AS2's simplicity, and then some. The class handles the event listeners and everything, all you have to do is instantiate it:

- - -
import Keys;
var Key :Object = new Keys(stage);

- - -

You MUST pass the stage as an argument to the Keys constructor so that it can add the event listeners.

Anybody is free to use this class. In exchange, a blurb in your credits would be nice. :)

Comments make me seize with rapture.

~ DarkMana

Updated: 02/16/08 3:28 PM 0 comments | Log in to comment! | Share this!
DarkMana

SHOWCASE #1: Fire Particle Effect

Posted by DarkMana Nov. 21, 2007 @ 10:22 PM EST

I've decided to start a sporadically-updated showcase of my Actionscript ability. I'll be posting all kinds of things, from visual effects to useful class files in either AS2 or 3. Check back often!

- - -
SHOWCASE #1: FIRE PARTICLE EFFECT (AS2)

I made this one a while back, it's my best particle effect to date. The (messy, disorganized) source .fla is available if you'd like it, just drop me a PM.

Comments are tasty.

~ DarkMana

- - -
EDIT: Re-linked to a more permanent location.

Updated: 01/08/08 11:26 PM 5 comments | Log in to comment! | Share this!