Difference between revisions of "Application:openUrl"
From GiderosMobile
(→Description: fixed some html tags) |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
<languages /> | <languages /> | ||
− | '''<translate>Available since</translate>:''' Gideros 2011.6<br/> | + | '''<translate>Available since</translate>:''' Gideros 2011.6 |
− | '''<translate>Class</translate>:''' [[Special:MyLanguage/Application|Application]]<br/> | + | <br/> |
+ | '''<translate>Class</translate>:''' [[Special:MyLanguage/Application|Application]] | ||
+ | <br/> | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
− | <translate | + | <translate> |
− | Opens the given URL (Universal Resource Locator) in the appropriate application. URL can be one of the ''http:'', ''https:'', ''tel:'', or ''mailto:'' schemes.<br /> | + | Opens the given URL (Universal Resource Locator) in the appropriate application. URL can be one of the ''http:'', ''https:'', ''tel:'', or ''mailto:'' schemes. |
− | <br /> | + | <br/> |
− | The following example opens a web page in the browser: | + | <br/> |
− | + | The following example opens a web page in the browser: | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<source lang="lua"> | <source lang="lua"> | ||
− | + | application:openUrl("http://www.giderosmobile.com") | |
</source> | </source> | ||
+ | <br/> | ||
+ | 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: | ||
+ | <source lang="lua"> | ||
+ | -- the following URL contains a recipient (user@foo.com), a subject (Test), and a message body (Just a test) | ||
+ | application:openUrl("mailto:user@foo.com?subject=Test&body=Just a test") | ||
+ | </source> | ||
+ | <br/> | ||
+ | To call a number: | ||
+ | <source lang="lua"> | ||
+ | application:openUrl("tel:555-123-4567") | ||
+ | </source> | ||
+ | </translate> | ||
=== <translate>Parameters</translate> === | === <translate>Parameters</translate> === | ||
− | '''url''': (string) <translate>url to open</translate> <br/> | + | '''url''': (string) <translate>url to open</translate> |
+ | <br/> | ||
+ | <br/> |
Revision as of 00:29, 13 June 2019
Available since: Gideros 2011.6
Class: Application
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:
application:openUrl("http://www.giderosmobile.com")
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:
-- the following URL contains a recipient (user@foo.com), a subject (Test), and a message body (Just a test)
application:openUrl("mailto:user@foo.com?subject=Test&body=Just a test")
To call a number:
application:openUrl("tel:555-123-4567")
Parameters
url: (string) url to open