ScriptTD for Windows Phone

I first heard of this little “framework/engine/template/starterkit”-thing some months ago – ScriptTD.

ScriptTD is basically a template for a Tower Defense Game for Windows Phone, that you can change (pretty much actually) just by editing XML files.

 

ScriptTD

The project is done in XNA and I have played around with it little now and it’s really great. It’s amazing how much you can change and how different you can make the game just by editing XML. ScriptTD is open source, so if you know XNA and want to make a Tower Defense Game, ScriptTD should be your starting point.

I just submittet a small game I made (with help from family members for sounds and graphics). The game is called “Frost Defense” and will be in the Marketplace in the coming weeks (I hope :) I’ll write about it when it’s ready to download).

So, if you want to make a Tower Defense Game for Windows Phone – you should take a look at ScriptTD at Codeplex.com.

Long time – no blogging

(Warning: So this is one of these typically “I haven’t blog for a while” post. There is nothing developer related content or good juice in this post, so if you feel like skipping a post – this is it :))

So it’s been a while since I have blogged. Actually it’s been a while since I have been active at my blog, at twitter or anything else on the internet – why you ask?

Well, I just bought house :)

So over the summer me and my family have been living in a temporarily apartment (as we sold our old one before we got our house). Then we got the house and have been working on fixing it up since then.

So right now I’m spending all of my “free time” working on the house…and not on my blog or twitter or coding for the matter.

Luckily it should be done more or less soon – so hopefully I will be back at my blog soon, or at least at twitter.

Make ASP.NET Label render as HTML Label tag

By default the <asp:Label /> control in ASP.NET render as a <span> HTMl tag. That can be kind of a problem if you have some CSS that only applies to an <label> tag. So, how do you make a <asp:label /> render as a <label> tag?

Actually it’s pretty easy. All you need to to is to set the “AssociatedControlID” on the <asp:Label /> to an associated text. The reason for this is that you usually use a label as the caption for a textbox, as it is the nature of the HTML <label> tag.