Difference between revisions of "Event.AD ACTION BEGIN"
From GiderosMobile
Line 21: | Line 21: | ||
*'''TapForTap''': when clicked on ad | *'''TapForTap''': when clicked on ad | ||
*'''TapJoy''': does nothing | *'''TapJoy''': does nothing | ||
+ | *'''Unity''': does nothing | ||
*'''Vungle''': does nothing | *'''Vungle''': does nothing | ||
Latest revision as of 02:57, 16 February 2025
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)