Difference between revisions of "Event.AD DISPLAYED"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2014.01<br/> '''Value:''' adDisplayed<br/> '''Defined by:''' Ads<br/> === Description === Ad is displayed on the screen. {{Ads}}") |
|||
| (2 intermediate revisions by the same user not shown) | |||
| Line 6: | Line 6: | ||
=== Description === | === Description === | ||
Ad is displayed on the screen. | Ad is displayed on the screen. | ||
| + | |||
| + | *'''AdColony''': ad displayed on the screen | ||
| + | *'''Admob''': ad displayed on the screen | ||
| + | *'''Amazon''': ad displayed on the screen | ||
| + | *'''AppLovin''': ad displayed on the screen | ||
| + | *'''Chartboost''': ad displayed on the screen | ||
| + | *'''HeyZap''': ad displayed on the screen | ||
| + | *'''iAds''': ad displayed on the screen | ||
| + | *'''InMobi''': ad displayed on the screen | ||
| + | *'''Millenial''': ad displayed on the screen | ||
| + | *'''MoPub''': ad displayed on the screen | ||
| + | *'''Revmob''': ad displayed on the screen | ||
| + | *'''Samsung AdHub''': ad displayed on the screen | ||
| + | *'''TapForTap''': ad displayed on the screen | ||
| + | *'''TapJoy''': ad displayed on the screen | ||
| + | *'''Unity''': ad displayed on the screen | ||
| + | *'''Vungle''': ad displayed on the screen | ||
| + | |||
| + | === Events === | ||
| + | '''type''': (string) the ad type<br/> | ||
| + | |||
| + | === Example === | ||
| + | <syntaxhighlight lang="lua"> | ||
| + | admob:addEventListener(Event.AD_DISPLAYED, function(e) | ||
| + | print("AD_DISPLAYED") | ||
| + | print(e.type) -- string | ||
| + | end) | ||
| + | </syntaxhighlight> | ||
{{Ads}} | {{Ads}} | ||
Latest revision as of 02:59, 16 February 2025
Available since: Gideros 2014.01
Value: adDisplayed
Defined by: Ads
Description
Ad is displayed on the screen.
- AdColony: ad displayed on the screen
- Admob: ad displayed on the screen
- Amazon: ad displayed on the screen
- AppLovin: ad displayed on the screen
- Chartboost: ad displayed on the screen
- HeyZap: ad displayed on the screen
- iAds: ad displayed on the screen
- InMobi: ad displayed on the screen
- Millenial: ad displayed on the screen
- MoPub: ad displayed on the screen
- Revmob: ad displayed on the screen
- Samsung AdHub: ad displayed on the screen
- TapForTap: ad displayed on the screen
- TapJoy: ad displayed on the screen
- Unity: ad displayed on the screen
- Vungle: ad displayed on the screen
Events
type: (string) the ad type
Example
admob:addEventListener(Event.AD_DISPLAYED, function(e)
print("AD_DISPLAYED")
print(e.type) -- string
end)