Difference between revisions of "Event.AD ERROR"

From GiderosMobile
 
Line 7: Line 7:
 
There was an internal developer error, most probably something was not set up right.
 
There was an internal developer error, most probably something was not set up right.
  
=== Parameters ===
+
=== Events ===
'''error''': (string) string describing error<br/>
+
'''error''': (string) string describing the error<br/>
 +
 
 +
=== Example ===
 +
<syntaxhighlight lang="lua">
 +
admob:addEventListener(Event.AD_ERROR, function(e)
 +
print("AD_ERROR")
 +
print(e.error) -- string
 +
end)
 +
</syntaxhighlight>
  
 
{{Ads}}
 
{{Ads}}

Latest revision as of 22:01, 15 February 2025

Available since: Gideros 2014.01
Value: adError
Defined by: Ads

Description

There was an internal developer error, most probably something was not set up right.

Events

error: (string) string describing the error

Example

admob:addEventListener(Event.AD_ERROR, function(e)
	print("AD_ERROR")
	print(e.error) -- string
end)