Difference between revisions of "Application:openUrl"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
  
 
The following example opens a web page in the browser:
 
The following example opens a web page in the browser:
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
application:openUrl("http://www.giderosmobile.com")
 
application:openUrl("http://www.giderosmobile.com")
</source>
+
</syntaxhighlight>
  
  
 
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:
 
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">
+
<syntaxhighlight lang="lua">
 
-- the following URL contains a recipient (user@foo.com), a subject (Test), and a message body (Just a test)
 
-- 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")
 
application:openUrl("mailto:user@foo.com?subject=Test&body=Just a test")
</source>
+
</syntaxhighlight>
  
  
 
To call a number:
 
To call a number:
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
application:openUrl("tel:555-123-4567")
 
application:openUrl("tel:555-123-4567")
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 17:56, 12 July 2023

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