« March 2008 | Main | May 2008 »

April 2008 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 20, 2008

Smallville

Well, we finally had a new episode of Smallville last week, and it was well worth the wait. You can tell that this will more than likely be the last seaosn of the show as they head up the conflict between Lex and Clark.

Continue reading "Smallville" »

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" »

About April 2008

This page contains all entries posted to Griffith Designs in April 2008. They are listed from oldest to newest.

March 2008 is the previous archive.

May 2008 is the next archive.

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