Event.AD DISMISSED

From GiderosMobile
Revision as of 21:54, 15 February 2025 by MoKaLux (talk | contribs)

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)