How can I launch a new Word/Excel/PowerPoint document within a Windows Phone 8 app?
Here's what I've tried, which doesn't seem to work:
await Launcher.LaunchUriAsync(new Uri("ms-word:"));
or
await Launcher.LaunchUriAsync(new Uri("ms-excel:"));
Can anyone see what I'm doing wrong?