Click here to Skip to main content
15,885,032 members
Articles / Desktop Programming / Win32
Tip/Trick

Add music to a simple Windows 8 Store App

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
25 Sep 2012Ms-PL1 min read 9.8K   2  
This is a really simple implementation of JavaScript and HTML5 to be used in a Windows 8 Store app.

Introduction

This article walks you through the process of adding music to your HTML5/JavaScript project, and that is all that the article shows you.

Background

In many articles the code has classes and code that the developer is used to utilizing. This article is written to guide you in how to add music to an HTML5 program that could be added to the Windows 8 Store, with a lot more work.  It has one sound file and several lines of code that are overly commented.

For more information, see my blog at: http://aka.ms/devschool_music_javascript.

Using the code

Using the Audio object in the HTML5 DOM, you get an easy way to add music and sounds to your JavaScript based Windows 8 Store game or project.

HTML 5

But to get started you have to add a single line to your HTML5 default.html page:

XML
<canvas id="canvas">

The word between the quotes can be whatever you want to name the canvas, and frankly it was likely a bad idea to use the word: canvas.  But many examples do so, and I just followed the practice.

JavaScript

These two variables are generated to hold the canvas object and the context object.

  • var canvas;
  • var ctx;

Information about the HTML5 DOM

The Audio HTML5 tag (new to HTML5) information is included in the DOM single page (a long single page) document that can be found at:

In the case of the JavaScript code, the object is constructed using the code:

JavaScript
var musicGame = new Audio("filepath to sound");

Then the music uses one of the attributes on the object to loop the music:

JavaScript
musicGame.loop = true;
XML
<html>
    <head>
    <meta charset="utf-8" />
    <title>MusicStoreDemo10</title>

    <link href="http://www.codeproject.com/Microsoft.WinJS.1.0/css/ui-dark.css" rel="stylesheet";/>
    <script src="http://www.codeproject.com/Microsoft.WinJS.1.0/js/base.js"></script>
    <script src="http://www.codeproject.com/Microsoft.WinJS.1.0/js/ui.js"></script>
   
    <link href="http://www.codeproject.com/css/default.css" rel="stylesheet" />
    <script src="http://www.codeproject.com/js/default.js"></script>
    
</head>
<body>
Content Goes Here

<canvas id="canvas">
    
</body>
</html>
JavaScript
(function () {
    "use strict";

    WinJS.Binding.optimizeBindingReferences = true;

    var app = WinJS.Application;
    var activation = Windows.ApplicationModel.Activation;

    //*******************************************************
    //** You add these variables canvas and context
    var canvas;
    var ctx;

    //*******************************************************
    //** You add the variable musicGame, the            *****
    //** Audio component is part of the SoundJS library *****
    //** and assists you with your project building     *****
    var musicGame = new Audio("/sounds/hydrogen.mp3");
    musicGame.loop = true;
    //*******************************************************


    //*******************************************************
    //** You add the following line to fire the        ******
    //** function initialize (scroll down to see)      ******
    //** This will cause the function initialize       ******
    //** to fire when your DOM is loaded               ******
    //*******************************************************
    document.addEventListener("DOMContentLoaded", initialize, false);
    //*******************************************************

    //******************************************************
    //***** You add the following function              ****
    //***** Where you place the function as long as you ****
    //***** put it above the })(); line                 ****
    function initialize() {
        //**************************************************
        //**** Initialize the Canvas                    ****
        //**** You add the following code               ****
        canvas = document.getElementById("canvas");
        //**************************************************
        //**** You add the following code
        //**** if you do not add                        ****
        //**** <canvas id="canvas"/>                    ****
        //**** to the default.html then you will        ****
        //**** get an error here                        ****
        ctx = canvas.getContext("2d");
        //**************************************************
        //**************************************************
        //**** Add the following code                   ****
        //**** The play is part of the soundjs.js       ****
        //**** library                                  ****
        musicGame.play();
    }

    app.onactivated = function (args) {
        if (args.detail.kind === activation.ActivationKind.launch) {
            if (args.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) {
                // TODO: This application has been newly launched. Initialize
                // your application here.
            } else {
                // TODO: This application has been reactivated from suspension.
                // Restore application state here.
            }
            args.setPromise(WinJS.UI.processAll());
        }
    };

    app.oncheckpoint = function (args) {
        // TODO: This application is about to be suspended. Save any state
        // that needs to persist across suspensions here. You might use the
        // WinJS.Application.sessionState object, which is automatically
        // saved and restored across suspension. If you need to complete an
        // asynchronous operation before your application is suspended, call
        // args.setPromise().
    };

    app.start();
})();

History

Initial version.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Instructor / Trainer Microsoft
United States United States
Sam Stokes works for Microsoft as a technology evangelist and is focused on working with colleges, students and professors.

Comments and Discussions

 
-- There are no messages in this forum --