
Originally Posted by
Cruzan
1. For video out, basically I want to send a video signal of the phone's display out the micro-USB port. With a micro-USB to VGA adapter plugged in and connected via VGA cable to a large monitor or projector, I 'd like to have a large display for the phone.
This is not possible. And there is no way, as far as I know, to make it work with the current API or hardware.

Originally Posted by
Cruzan
2. For launching html files (this is what (1) is for :-), I'm not sure if this is just some special path syntax that I can store in a link or if I need to call the API.
Is this a local html file that you have stored on the Isolated Storage or an internet Address?
It its a web address you can use something like this:
Code:
WebBrowserTask web = new WebBrowserTask();
web.URL = "http://www.nokia.com";
web.Show();
If you are looking to open an HTML file on the browser control pleced on a page in your app, then you can use something like:
Code:
browser.Navigate(new Uri("www/index.html", UriKind.Relative));
This assumes that you have your html file on your Isolated Storage.