Difference between revisions of "Event.AD ACTION END"
From GiderosMobile
| Line 5: | Line 5: | ||
| === Description === | === Description === | ||
| − | Some action  | + | Some action on ad completed, for example: video was watched, ended on the ad. | 
| + | |||
| + | === Events === | ||
| + | '''type''': (string) the ad type<br/> | ||
| + | |||
| + | === Example === | ||
| + | <syntaxhighlight lang="lua"> | ||
| + | admob:addEventListener(Event.AD_ACTION_END, function(e) | ||
| + | 	print("AD_ACTION_END") | ||
| + | 	print(e.type) -- string | ||
| + | end) | ||
| + | </syntaxhighlight> | ||
| {{Ads}} | {{Ads}} | ||
Revision as of 20:52, 15 February 2025
Available since: Gideros 2014.01
Value: adActionEnd
Defined by: Ads
Description
Some action on ad completed, for example: video was watched, ended on the ad.
Events
type: (string) the ad type
Example
admob:addEventListener(Event.AD_ACTION_END, function(e)
	print("AD_ACTION_END")
	print(e.type) -- string
end)
