Open Documents

This sample shows how to use mSystem.openDocument() to launch open a web browser to a URL, send email, and open a pdf file.

To open the user's preferred browser to a specific webpage:

mSystem.openDocument("http://www.screentime.com");

To open a new email:

mSystem.openDocument("mailto:info@screentime.com?subject=Hello");

To open a file associated with a desktop application:

mSystem.openDocument(mApplication.getFolder() + mSystem.getPathDelimiter() + "Help.pdf");

You can download this sample, "openDocs", from the mProjector Samples page -- /software/flash-projector/flas.html#openDocuments.