Windows live writer

Blogging made so easy by using Windows live writer.
It supports for write your blog post for any blog site.
download now- http://www.microsoft.com/downloads/details.aspx?FamilyID=d2baeda0-aa9a-4080-9202-1f23902d1169&displaylang=en

Music

Rock is one of my favorite music genre.
These days I`am listening to simple plan.

Legend of the the green warrior game on gamesforchange.org

Legend of the the green warrior game is abel to made to games for change web site.

http://www.gamesforchange.org/play
In Environment category.
http://www.gamesforchange.org/channels/environment
Game profile
http://www.gamesforchange.org/main/GameFullForm/206

play mp3 in XNA 3.0

-you need to add the namespace;
 
using Microsoft.Xna.Framework.Media;
 
 
 
-Then create song object and
-load the mp3 file in load graphic content method
 
-use mediaplayer class to play the mp3
 
  Song mysong;
 
  protected override void LoadContent()
        {
            // Create a new SpriteBatch, which can be used to draw textures.
            spriteBatch = new SpriteBatch(GraphicsDevice);
            mysong = Content.Load<Song>("a");
            MediaPlayer.Play(mysong);
       }
 
          
 
             
 
full [...]