Bill
Bill

Reputation: 19248

Adobe Air launch a web page under Safari instead stagewebview

Is it possible to open a webpage by launching Safari under iOS instead of stagewebview?

(note i have tried the URLrequest, which not work on the iDevice).

Thanks for any help

Upvotes: 0

Views: 924

Answers (1)

CoreyRS
CoreyRS

Reputation: 2267

Use the navigateToURL function. It should automatically open the link in the actual safari browser.

navigateToURL(new URLRequest("http://www.domain.com"));

Upvotes: 2

Related Questions