Difference between revisions of "Event.AD DISMISSED"
From GiderosMobile
Line 6: | Line 6: | ||
=== Description === | === Description === | ||
Ad was dismissed/removed from the screen. | Ad was dismissed/removed from the screen. | ||
+ | |||
+ | === Events === | ||
+ | '''type''': (string) the ad type<br/> | ||
+ | |||
+ | === Example === | ||
+ | <syntaxhighlight lang="lua"> | ||
+ | admob:addEventListener(Event.AD_DISMISSED, function(e) | ||
+ | print("AD_DISMISSED") | ||
+ | print(e.type) -- string | ||
+ | end) | ||
+ | </syntaxhighlight> | ||
{{Ads}} | {{Ads}} |
Revision as of 21:54, 15 February 2025
Available since: Gideros 2014.01
Value: adDismissed
Defined by: Ads
Description
Ad was dismissed/removed from the screen.
Events
type: (string) the ad type
Example
admob:addEventListener(Event.AD_DISMISSED, function(e)
print("AD_DISMISSED")
print(e.type) -- string
end)