Archive for the ‘Flash’ Category
Thursday, September 4th, 2008
Try to find the secret location.
Type a note with WordPerhect
Monoface
Posted in Elmer, Flash | No Comments »
Thursday, June 12th, 2008
Elmer
I bit off a little more than I can chew with my tic-tac-toe project. Do you feel like working on it with me? In particular, I would appreciate just some overall mentoring. It would probably shorten my AS learning curve quite a bit. Also, if you feel like writing any ...
Posted in Flash, Project Ideas | 1 Comment »
Friday, May 9th, 2008
Hey Chris and Jay (primarily). I have a few ideas I want to whip together to make a customized DnD play site for myself. It would feature DM tools, links to online tools, ways to easily "tag" information online, to copy into another web page, a custom wiki and database ...
Posted in Elmer, Flash, Games, HTML, Links, Meta, Online Resources | 2 Comments »
Tuesday, April 15th, 2008
Hey ya'll. I just had an idea for a simple Flash shooter game. Here are some resources:
Smash TV
1943
Shadowrun
Geometry Wars
Lawnmower Man
The Legend of Zelda
Alterac Valley
Counter Strike
So, the basic idea is from Shadowrun. In the future, hackers use a virtual reality interface to hack into secure systems. Different 'nodes' connect to ...
Posted in Elmer, Flash, Games, Project Ideas | 5 Comments »
Monday, February 25th, 2008
Does anyone have a good, technical article or three about Adobe's newly-released AIR platform? It hit 1.0 today. The best I've got so far is a gloss-over from ArsTechnica. I still have some questions about how it fits in with Flash, or if it's an entirely different beast.
Posted in Flash, Online Resources, XML | 3 Comments »
Monday, February 25th, 2008
Hey Everyone -
I just recently watched a tutorial on the usage and creation of particle systems in Flash. This is an AS2 version, so it is retardedly slow, compared to what can be done with AS3. Please feel free to mess around with it. It is so easy to ...
Posted in Elmer, Flash | 4 Comments »
Friday, February 22nd, 2008
Found some tutorials on Lynda.com for particle effects in Flash CS3, from this British dude at Plug-In Media. Check out their website, it's pretty frickin' cool.
Posted in Elmer, Flash | No Comments »
Thursday, February 21st, 2008
Hey, I've been using this method for my work at Gleim primarily, and SWFObject is an excellent tool. I'm not entirely sure what it's fallback is if javaScript is disabled, so that might be worth checking out, but basically, this provides a way around the IE activation issue, a nicer ...
Posted in Elmer, Flash | 1 Comment »
Thursday, February 14th, 2008
That loader I wrote has a wide variety of uses, but I'd also suggest for things like images and swf files, to use the basic Loader.
/* found on the adobe website, on
LiveDocs
this is some sample code. */
import flash.display.*;
import flash.net.URLRequest;
// This just creates a stupid square to put it in ...
Posted in Elmer, Flash | 1 Comment »
Wednesday, February 13th, 2008
Basically, to load a file from a server/directory structure, you have to use a URLRequest.
var loader:URLLoader = new URLLoader();
loader.addEventListener(ProgressEvent.PROGRESS, update);
loader.addEventListener(ProgressEvent.COMPLETE, finished);
function loadThisURL(target:String):void {
loader.load( new URLRequest(target);
}
function update(event:ProgressEvent):void {
// This would tell what you wanted to perform whenever progress was made. Some sample ideas:
// Increasing the length of a bar to ...
Posted in Elmer, Flash | 1 Comment »