Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 2.01 KB

setMute.markdown

File metadata and controls

61 lines (43 loc) · 2.01 KB

appnext.setMute()

 
Type Function
Library appnext.*
Return value None
Keywords ads, advertising, Appnext, appnext, setMute
See also appnext.getMute()

Overview

Mute the video which is played in the ad (default is 'false'). On iOS effects FullScreen and Rewarded ads only.

Syntax

appnext.setMute( adKey, mute )
adKey (required)

String. The adKey returned for a previously created ad.

mute (required)

Boolean. Mute the video which is played.

Examples

local appnext = require 'plugin.appnext'

local function listener( event )
	print( "Received " .. event.event .. " for " .. event.adKey .. " with message " .. event.message )
end

-- Initialize the Appnext plugin
appnext.init( listener )

-- Create your Ads
local interstitialPlacementID
local fullscreenPlacementID
local rewardedPlacementID

local platform = system.getInfo( "platformName" )
if ( platform == "iPhone OS" ) then
    interstitialPlacementID = "YOUR_IOS_INTERSTITIAL_PLACEMENT_ID"
    fullscreenPlacementID = "YOUR_IOS_FULLSCREEN_PLACEMENT_ID"
    rewardedPlacementID = "YOUR_IOS_REWARDED_PLACEMENT_ID"
elseif ( platform == "Android" ) then
    interstitialPlacementID = "YOUR_ANDROID_INTERSTITIAL_PLACEMENT_ID"
    fullscreenPlacementID = "YOUR_ANDROID_FULLSCREEN_PLACEMENT_ID"
    rewardedPlacementID = "YOUR_ANDROID_REWARDED_PLACEMENT_ID"
end

interstitialAdKey = appnext.createAd( "interstitial", interstitialPlacementID )
fullscreenAdKey = appnext.createAd( "fullscreen", fullscreenPlacementID )
rewardedAdKey = appnext.createAd( "rewarded", rewardedPlacementID )

appnext.setMute( fullscreenAdKey, true )