Posts filed under 'Flash'

Great Flash Golf Game

Marc-Antoine Ross March 18th, 2008 Add comment

Every time I play indoor virtual golf I wonder when they’ll come up with a new game with better graphics than those currently running on Windows 98 boxes. But when I see an online game, in Flash, with better graphics than what I pay 25$ an hour for, there is a serious problem. Hey, game producers, there is a market here… hello? Anyway, check this game: PGA Charity Challenge.

ActionScript Search and Replace

Mario Laflamme June 6th, 2006 Add comment

ActionScript doesn’t provide a built in String.replace() function to search and replace text in a string. Then, here is a small function (but very effective) which is a good alternative.

function replace(search, replace, subject) {
    return subject.split(search).join(replace);
}

Schedule

July 2008
M T W T F S S
« May    
 123456
78910111213
14151617181920
21222324252627
28293031