Main

Applications Archives

April 12, 2008

Digital Dissapointment

Well, like most of the population nowadays I have a digital camera that I bought to take pictures of family stuff. Soon after that, I enjoyed the birth of my daughter Taleah. Needless to say I am taking pictures like there is no tomorrow.

Continue reading "Digital Dissapointment" »

April 22, 2008

Flash Based Holdem Poker

Well, I am working on a flash based poker game just for the heck of it. There is a lot more math involved in this than I would like, but it is turning out very well.

Continue reading "Flash Based Holdem Poker" »

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   }  

April 26, 2008

Sourceforge Project

Well, I made the list on SF! My project has been accepted and is now on SourceForge.net. I have even put the FLA file in the SVN repo as open source since I have always been fond of people helping me out when I needed it. Hopefully some of the stuff I have done will be able to be used by someone else.

Continue reading "Sourceforge Project" »

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

About Applications

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

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