Event.AD ACTION BEGIN

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

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

Description

Some action like user clicked on the ad.

Events

type: (string) the ad type

Example

admob:addEventListener(Event.AD_ACTION_BEGIN, function(e)
	print("AD_ACTION_BEGIN")
	print(e.type) -- string
end)