Skip to content

Instantly share code, notes, and snippets.

@seksenov
Created February 27, 2016 00:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seksenov/f1b9a88f54881307fbb5 to your computer and use it in GitHub Desktop.
Save seksenov/f1b9a88f54881307fbb5 to your computer and use it in GitHub Desktop.
Handle SMTC Event
function systemMediaControlsButtonPressed(eventIn) {
var mediaButton = Windows.Media.SystemMediaTransportControlsButton;
switch (eventIn.button) {
case mediaButton.play:
playMedia();
break;
case mediaButton.pause:
pauseMedia();
break;
case mediaButton.stop:
stopMedia();
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment