Skip to content

Instantly share code, notes, and snippets.

@codefoster
Created February 11, 2015 05:55
Show Gist options
  • Save codefoster/cfea8a61d4faf35cfcf2 to your computer and use it in GitHub Desktop.
Save codefoster/cfea8a61d4faf35cfcf2 to your computer and use it in GitHub Desktop.
var sf = Windows.Storage.StorageFile;
var vcm = Windows.Media.SpeechRecognition.VoiceCommandManager;
sf.getFileFromApplicationUriAsync(new Windows.Foundation.Uri("ms-appx:///vcd.xml"))
.then(function (file) {
vcm.installCommandSetsFromStorageFileAsync(file);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment