Difference between revisions of "Application:openUrl"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
(12 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
+ | '''Class:''' [[Application]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | + | Opens the given URL (Universal Resource Locator) in the appropriate application. URL can be one of the ''http:'', ''https:'', ''tel:'', or ''mailto:'' schemes. | |
− | Opens the given URL (Universal Resource Locator) in the appropriate application. URL can be one of the | + | |
− | + | The following example opens a web page in the browser: | |
− | The following example opens a web page in the browser: | + | <syntaxhighlight lang="lua"> |
− | + | application:openUrl("http://www.giderosmobile.com") | |
− | + | </syntaxhighlight> | |
− | + | ||
− | + | ||
− | If | + | 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: |
− | + | <syntaxhighlight 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") | |
− | + | </syntaxhighlight> | |
− | + | ||
− | + | ||
− | + | To call a number: | |
− | + | <syntaxhighlight lang="lua"> | |
− | < | + | application:openUrl("tel:555-123-4567") |
− | + | </syntaxhighlight> | |
− | + | ||
− | + | === Parameters === | |
− | + | '''url''': (string) url to open | |
− | '''url''': (string) url to open | + | |
+ | {{Application}} |
Latest revision as of 16: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
- Application:canOpenUrl
- Application:checkPermission
- Application:configureFrustum
- Application:enableDrawInfo
- Application:enableOnDemandDraw
- Application:exit
- Application:get
- Application:getApiVersion
- Application:getAppId
- Application:getBackgroundColor
- Application:getClipboard
- Application:getContentHeight
- Application:getContentWidth
- Application:getDeviceHeight
- Application:getDeviceInfo
- Application:getDeviceName
- Application:getDeviceOrientation
- Application:getDeviceSafeArea
- Application:getDeviceWidth
- Application:getFps
- Application:getKeyboardModifiers
- Application:getLanguage
- Application:getLocale
- Application:getLogicalBounds
- Application:getLogicalHeight
- Application:getLogicalScaleX
- Application:getLogicalScaleY
- Application:getLogicalTranslateX
- Application:getLogicalTranslateY
- Application:getLogicalWidth
- Application:getNativePath
- Application:getOrientation
- Application:getProjectProperties
- Application:getScaleMode
- Application:getScreenDensity
- Application:getTextureMemoryUsage
- Application:isPlayerMode
- Application:openUrl
- Application:requestPermissions
- Application:set
- Application:setBackgroundColor
- Application:setClipboard
- Application:setEventMerging
- Application:setFps
- Application:setFullScreen
- Application:setKeepAwake
- Application:setKeyboardVisibility
- Application:setLogicalDimensions
- Application:setOrientation
- Application:setScaleMode
- Application:setTextInput
- Application:setWindowSize
- Application:vibrate