Hey Guys ,
We have placed a Video icon on game over screen of the game.
When I Click the Video Icon ,
–> Sometime the video Plays immediately : Test Result : PASS
–> Sometime it takes around 5-9 seconds for video show . Which is not a Good thing to have
a. In such a scenerio user can click any other button on the screen, Which should not happen. How can i prevent user from tapping any other button.
b. On click of video button , Can I Invoke a pop up . "Please wait Video ad is loading " ?
ads.init( "vungle", appID, vungleAdListener ) function vungleAdListener( event ) if ( event.type == "adStart" and event.isError ) then -- Ad has not finished caching and will not play end if ( event.type == "adStart" and not event.isError ) then end if ( event.type == "cachedAdAvailable" ) then -- Ad has finished caching and is ready to play end if ( event.type == "adView" ) then -- An ad has completed end if ( event.type == "adEnd" ) then end if ( ads.isAdAvailable() ) then ads.show( "interstitial" , { isAnimated=false, isBackButtonEnabled=true }) end