Event.AD ACTION BEGIN
From GiderosMobile
Available since: Gideros 2014.01
Value: adActionBegin
Defined by: Ads
Description
Some action like user clicked on the ad.
- AdColony: does nothing
- Admob: does nothing
- Amazon: when ad expands/opens
- AppLovin: does nothing
- Chartboost: when clicked ad
- HeyZap: when ad clicked
- iAds: when clicked on ad
- InMobi: does nothing
- Millenial: does nothing
- MoPub: on ad expand
- Revmob: on user click
- Samsung AdHub: does nothing
- TapForTap: when clicked on ad
- TapJoy: does nothing
- Unity: does nothing
- Vungle: does nothing
Events
type: (string) the ad type
Example
admob:addEventListener(Event.AD_ACTION_BEGIN, function(e)
print("AD_ACTION_BEGIN")
print(e.type) -- string
end)