Difference between revisions of "Application:openUrl"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 
=== Description ===
 
=== Description ===
<br />
+
<translate><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 />
+
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 />
 
<br />
 
The following example opens a web page in the browser:<br />
 
The following example opens a web page in the browser:<br />
Line 10: Line 10:
 
<br />
 
<br />
 
&lt;/code&gt;&lt;/pre&gt;<br />
 
&lt;/code&gt;&lt;/pre&gt;<br />
If `mailto:` scheme is specified, the user&#039;s e-mail client will be used to open a composer window containing the options specified in the URL.<br />
+
If [[[mailto:]]] scheme is specified, the user&#039;s e-mail client will be used to open a composer window containing the options specified in the URL.<br />
 
For example, the following URL contains a recipient (user@foo.com), a subject (Test), and a message body (Just a test):<br />
 
For example, the following URL contains a recipient (user@foo.com), a subject (Test), and a message body (Just a test):<br />
 
&lt;pre&gt;&lt;code&gt;<br />
 
&lt;pre&gt;&lt;code&gt;<br />
Line 20: Line 20:
 
application:openUrl(&quot;tel:555-123-4567&quot;)<br />
 
application:openUrl(&quot;tel:555-123-4567&quot;)<br />
 
<br />
 
<br />
&lt;/code&gt;&lt;/pre&gt;<br />
+
&lt;/code&gt;&lt;/pre&gt;<br /></translate>
 
<source lang="lua">
 
<source lang="lua">
 
  Application:openUrl(url)
 
  Application:openUrl(url)
 
</source>
 
</source>
 
=== Parameters ===
 
=== Parameters ===
'''url''': (string) url to open <br/>
+
'''url''': (string) <translate>url to open</translate> <br/>

Revision as of 14:38, 23 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