Difference between revisions of "Event.AD ERROR"
From GiderosMobile
(6 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2014.01<br/> | '''Available since:''' Gideros 2014.01<br/> | ||
'''Value:''' adError<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. |
− | === | + | |
− | '''error''': (string) string describing error<br/> | + | === 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)