Difference between revisions of "Application:canOpenUrl"

From GiderosMobile
(prefixindex)
m (Text replacement - "<source" to "<syntaxhighlight")
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
+
'''Available since:''' Gideros 2013.06<br/>
'''Available since:''' Gideros 2013.06
+
'''Class:''' [[Application]]<br/>
<br/>
 
'''Class:''' [[Special:MyLanguage/Application|Application]]
 
<br/>
 
  
 
=== Description ===
 
=== Description ===
Tests if it is possible to open provided url using [[Special:MyLanguage/Application:openUrl|Application:openUrl]] method (it checks only app permissions, so 'true' may be returned even if device is offline)
+
Tests if it is possible to open provided url using [[Application:openUrl]] method (it checks only app permissions, so 'true' may be returned even if device is offline).
<source lang="lua">
+
 
 +
<syntaxhighlight lang="lua">
 
application:canOpenUrl(url)
 
application:canOpenUrl(url)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
 
'''url''': (string) url to test if can be opened
 
'''url''': (string) url to test if can be opened
  
----
+
=== Example ===
{{Special:PrefixIndex/Application}}
+
<syntaxhighlight lang="lua">
<br/>
+
print(application:canOpenUrl("http://w3c.org"))
 +
</syntaxhighlight>
 +
 
  
{{Special:PrefixIndex/Event.APPLICATION}}
+
{{Application}}

Latest revision as of 17:57, 12 July 2023

Available since: Gideros 2013.06
Class: Application

Description

Tests if it is possible to open provided url using Application:openUrl method (it checks only app permissions, so 'true' may be returned even if device is offline).

application:canOpenUrl(url)

Parameters

url: (string) url to test if can be opened

Example

print(application:canOpenUrl("http://w3c.org"))