Difference between revisions of "Application:canOpenUrl"

From GiderosMobile
m
Line 3: Line 3:
  
 
=== 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).
  
 
<source lang="lua">
 
<source lang="lua">
Line 11: Line 11:
 
=== Parameters ===
 
=== Parameters ===
 
'''url''': (string) url to test if can be opened
 
'''url''': (string) url to test if can be opened
 +
 +
=== Example ===
 +
<source lang="lua">
 +
print(application:canOpenUrl("http://w3c.org"))
 +
</source>
 +
  
 
{{Application}}
 
{{Application}}

Revision as of 07:38, 4 January 2020

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