Difference between revisions of "Application:canOpenUrl"

From GiderosMobile
m (Text replacement - "</source" to "</syntaxhighlight")
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:
 
=== Description ===
 
=== 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).
 
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).
 
+
<syntaxhighlight lang="lua">
<source lang="lua">
 
 
application:canOpenUrl(url)
 
application:canOpenUrl(url)
 
</syntaxhighlight>
 
</syntaxhighlight>
Line 13: Line 12:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
print(application:canOpenUrl("http://w3c.org"))
 
print(application:canOpenUrl("http://w3c.org"))
 
</syntaxhighlight>
 
</syntaxhighlight>
 
  
 
{{Application}}
 
{{Application}}

Latest revision as of 04:50, 8 November 2024

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"))