Difference between revisions of "Event.AD ERROR"
From GiderosMobile
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
| − | ''' | + | '''Available since:''' Gideros 2014.01<br/> |
| − | ''' | + | '''Value:''' adError<br/> |
| − | === | + | '''Defined by:''' [[Ads]]<br/> |
| − | + | ||
| − | === | + | === Description === |
| − | '''error''': (string) | + | 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 21: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)