www.webOShelp.net

Get the latest on:webOS Developers' RSS FeedwebOS Facebook page webOS Twitter Feed

Home Resources Mojo Services API palm://com.palm.applicationManager - open - com.palm.app.browser

palm://com.palm.applicationManager - open - com.palm.app.browser

This service allows you to launch the webOS web browser.

Example usage (from sample news application):

// Launch the Browser when user taps a story; will launch original story URL 
// or a tapped link within a webView 
StoryViewAssistant.prototype.webStory = function(event) {
  this.controller.serviceRequest('palm://com.palm.applicationManager', {
    method: 'open',
    parameters: {
      id: 'com.palm.app.browser',
      params: {
        target: this.storyFeed.stories[this.storyIndex].url
      }
    }
  });
};