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}}") | |||
| Line 6: | Line 6: | ||
| === Description === | === Description === | ||
| Ad is displayed on the screen. | Ad is 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}} | ||
Revision as of 20:56, 15 February 2025
Available since: Gideros 2014.01
Value: adDisplayed
Defined by: Ads
Description
Ad is 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)
