Difference between revisions of "Application:openUrl"
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Available since:''' Gideros 2011.6<br/> | + | '''<translate>Available since</translate>:''' Gideros 2011.6<br/> |
− | === Description === | + | === <translate>Description</translate> === |
<translate><br /> | <translate><br /> | ||
Opens the given URL (Universal Resource Locator) in the appropriate application. URL can be one of the [[Special:MyLanguage/http:|http:]], [[Special:MyLanguage/https:|https:]], [[Special:MyLanguage/tel:|tel:]], or [[Special:MyLanguage/mailto:|mailto:]] schemes.<br /> | Opens the given URL (Universal Resource Locator) in the appropriate application. URL can be one of the [[Special:MyLanguage/http:|http:]], [[Special:MyLanguage/https:|https:]], [[Special:MyLanguage/tel:|tel:]], or [[Special:MyLanguage/mailto:|mailto:]] schemes.<br /> | ||
Line 24: | Line 24: | ||
Application:openUrl(url) | Application:openUrl(url) | ||
</source> | </source> | ||
− | === Parameters === | + | === <translate>Parameters</translate> === |
'''url''': (string) <translate>url to open</translate> <br/> | '''url''': (string) <translate>url to open</translate> <br/> |
Revision as of 07:28, 24 August 2018
Available since: Gideros 2011.6
Description
Opens the given URL (Universal Resource Locator) in the appropriate application. URL can be one of the http:, https:, tel:, or mailto: schemes.
The following example opens a web page in the browser:
<pre><code>
application:openUrl("http://www.giderosmobile.com")
</code></pre>
If mailto: scheme is specified, the user's e-mail client will be used to open a composer window containing the options specified in the URL.
For example, the following URL contains a recipient (user@foo.com), a subject (Test), and a message body (Just a test):
<pre><code>
application:openUrl("mailto:user@foo.com?subject=Test&body=Just a test")
</code></pre>
Or to call a number:
<pre><code>
application:openUrl("tel:555-123-4567%22)
</code></pre>
Application:openUrl(url)
Parameters
url: (string) url to open