Difference between revisions of "Event.AD RECEIVED"
From GiderosMobile
Line 6: | Line 6: | ||
=== Description === | === Description === | ||
Ad was received. | Ad was received. | ||
+ | |||
+ | *'''AdColony''': when video started | ||
+ | *'''Admob''': when ad received | ||
+ | *'''Amazon''': when ad loaded | ||
+ | *'''AppLovin''': when ad received | ||
+ | *'''Chartboost''': when ad is displayed | ||
+ | *'''HeyZap''': when ad is displayed | ||
+ | *'''iAds''': when ad is displayed | ||
+ | *'''InMobi''': when ad showed | ||
+ | *'''Millenial''': when ad received | ||
+ | *'''MoPub''': ad is received | ||
+ | *'''Revmob''': when ad received | ||
+ | *'''Samsung AdHub''': when ad is displayed | ||
+ | *'''TapForTap''': when ad is received | ||
+ | *'''TapJoy''': when ad received | ||
+ | *'''Vungle''': when video started | ||
=== Events === | === Events === |
Revision as of 22:06, 15 February 2025
Available since: Gideros 2014.01
Value: adReceived
Defined by: Ads
Description
Ad was received.
- AdColony: when video started
- Admob: when ad received
- Amazon: when ad loaded
- AppLovin: when ad received
- Chartboost: when ad is displayed
- HeyZap: when ad is displayed
- iAds: when ad is displayed
- InMobi: when ad showed
- Millenial: when ad received
- MoPub: ad is received
- Revmob: when ad received
- Samsung AdHub: when ad is displayed
- TapForTap: when ad is received
- TapJoy: when ad received
- Vungle: when video started
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)