Event.AD RECEIVED

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

Available since: Gideros 2014.01
Value: adReceived
Defined by: Ads

Description

Ad was received.

Events

type: (string) the ad type

Example

admob:addEventListener(Event.AD_RECEIVED, function(e) -- show ad
	print("AD_RECEIVED")
	print(e.type) -- string
	admob:showAd("auto")
	admob:setAlignment("left", "top")
end)