Main

Portfolio Archives

April 24, 2008

Creating a Flash Card Deck

Well, I posted about making a poker game in flash a couple days ago. Now I will add the code I used ot actually make the deck with the 2 arrays we made.

1   function createNewDeck ():Array {  
2       var array:Array = new Array;  
3       for (i = 0; i < cardSuits.length; i++) {  
4           for (j = 0; j < cardSigns.length; j++) {  
5               array.push (cardSigns[j] + " " + cardSuits[i]);  
6           }  
7       }  
8       return array;  
9   }  

May 17, 2008

Shuffling a Flash Card Deck

Well, we have already made the deck of cards, so now we need to shuffle it. You can feel free to copy this code if you are making a flash based card game yourself. Or even PHP as it would be pretty easy to port over.

Continue reading "Shuffling a Flash Card Deck" »

June 4, 2008

Terragen

Well, I was playing around this weekend with Terragen and generated this file:

Escape
Download Hi-Res Image

I like to mess around with this program a lot, but don't get time to too often! Anyway, just wanted to show people what can be done with it.

July 11, 2008

Palm Treo Clone

I was doing some shopping on Woot! and I saw this contest for creating an off brand knock off of other models, and couldn't resist.

Foot Toeo

Download Hi-Res Image

July 19, 2008

Dynamic FLV Player

Well, being I am getting into video content more and more, I had to take the leap to create an FLV player. This player takes a query sting variable and pulls the assigned FLV file to use in it. Here is an example of how it looks:




Original Post

I am finding as I go that there are some minor bugs that I will have to work out, but all-in-all, it is fully functional.

Continue reading "Dynamic FLV Player" »

July 21, 2008

FLV Player Update

Well, I had to update the Dynamic FLV Player with just a couple fixes, so that I think it is 100% stable. I will do some more testing to it to make sure, but plan on releasing a stable version before the end of the month.

Anyway you can grab the latest version in the same spot. It is 0.9.2

August 4, 2009

Best Buy

Well, some of you may know that I work at Best Buy along with my own business and ManTech and family, etc...

Seems I am going to be doing some work on the local Best Buy website for the Lexington Park, MD store. Corporate HQ has already taken down 1 image that I made for the site. It's amazing how politically correct we all try to be nowadays.

Continue reading "Best Buy" »

About Portfolio

This page contains an archive of all entries posted to Griffith Designs in the Portfolio category. They are listed from oldest to newest.

Political is the previous category.

Sports is the next category.

Many more can be found on the main index page or by looking through the archives.

Creative Commons License
This weblog is licensed under a Creative Commons License.
Powered by
Movable Type 3.34