Difference between revisions of "Event.AD ERROR"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2014.01<br/> === Description === There was an internal developer error, most probably something was not set up right") |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2014.01<br/> | '''Available since:''' Gideros 2014.01<br/> | ||
+ | '''Value:''' adError<br/> | ||
+ | '''Defined by:''' [[Ads]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | 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. |
+ | |||
+ | === Events === | ||
+ | '''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}} |
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)