Silverlight

April 27th, 2009

There was a prize to win and I had to try. I decided to give Silverlight a shot. I attempted to port my tank game. After some research, there was an appealing physics library and I got hands on.

Today, 4 days to the deadline I decided to pursue other projects.

I got a fairly good glance at the Microsoft approach to Flash and although interesting doesn’t appeal enough to me. Although the Microsoft surface is a good incentive, the low penetration of the plugin, the higher complexity compared to Flash and the tools were major turn downs.

tank_silverlight

http://www.valls.name/content/games/tanksilverlight

SF Game Jam

April 10th, 2009

Last weekend I attended the SF Game Jam.

Here are two pictures of the games I developed. Not bad for one-man team in 24 hours, aren’t they?

Note: You will need to install the Wild Pockets plugin to play from your browser.

bounce1b.jpg

Bouncing ball game. Use the ball’s motion to bring the structures down.
http://www.wildpockets.com/bounceemdown

tank1b.jpg
Tank game. Using the cursors to move the tank and aim the cannon.
http://www.wildpockets.com/thetank

VBScriptInt

December 7th, 2006

Tool to test VBScript (VBS) code. Full VBScript execution or simple sentence evaluation. Outputs to a text box enabling you to copy and paste the results. Includes tools to replace and escape strings, encode HTML, encode binary files and more. Read the rest of this entry »

Distributing binary files within VBScript

December 3rd, 2006

Sometimes you want to use a COM component in your VBScript but if you need to distribute this VBScript for the public you must ensure that the final user have the COM registered in their system. Like in this example you may need to distribute any sort of binary file as a resource for your VBScript.

Distributing binary files within VBScript

GUI for VBScript with HTML Applications

November 12th, 2006

You may need to add simple UI functions to a VBScript, Internet Explorer enables you to do so using HTML Applications through its HTML renderer and object model.

GUI for VBScript with HTML Applications

Displaying dynamic text headings with custom fonts

October 12th, 2006

Sometimes you want to use a custom font on a website heading or title, to do so, you must ensure that the visitor have the font registered on its system, if not, the default font will be displayed wich will be annoying. To solve that, you could either use an image or a flash movie to achieve this purpose. In this article I’ll expose how to create a Flash object which dinamically loads its text.

Displaying dynamic text headings with custom fonts

Escape Strings

October 12th, 2006

Small tool for escaping strings to be used in URLStringEncoded context. Uses VBScript escape() and unescape() functions and an HTML Application GUI to enable copy and paste of the text. Read the rest of this entry »