Event.AD DISMISSED

From GiderosMobile

Available since: Gideros 2014.01
Value: adDismissed
Defined by: Ads

Description

Ad was dismissed/removed from the screen.

  • AdColony: video finished
  • Admob: when ad removed/destroyed
  • Amazon: when ad removed from screen
  • AppLovin: when ad removed/destroyed
  • Chartboost: when ad removed from screen
  • HeyZap: when ad gets removed
  • iAds: when ad dismissed
  • InMobi: when ad dismissed
  • Millenial: when ad removed/destroyed
  • MoPub: ad removed from screen
  • Revmob: when ad dismissed
  • Samsung AdHub: when ad is closed or removed
  • TapForTap: when ad removed from screen
  • TapJoy: does nothing
  • Unity: when ad removed/destroyed
  • Vungle: video finished

Events

type: (string) the ad type

Example

admob:addEventListener(Event.AD_DISMISSED, function(e)
	print("AD_DISMISSED")
	print(e.type) -- string
end)