appnext.getButtonColor()

Type Function
Return value String
Revision Release 2025.3714
Keywords ads, advertising, Appnext, getButtonColor
See also appnext.setButtonColor()
appnext.*

Overview

Gets the install button’s color.

Syntax

appnext.getButtonColor( adKey )
adKey (required)

String. The ad key returned for a previously created ad.

Example

local appnext = require( "plugin.appnext" )
 
local function adListener( event )
    print( "Received " .. event.event .. " for " .. event.adKey .. " with message: " .. event.message )
end
 
-- Initialize the Appnext plugin
appnext.init( adListener )
 
-- Create your ads
local interstitialPlacementID
 
local platform = system.getInfo( "platformName" )
if ( platform == "iPhone OS" ) then
    interstitialPlacementID = "YOUR_IOS_INTERSTITIAL_PLACEMENT_ID"
elseif ( platform == "Android" ) then
    interstitialPlacementID = "YOUR_ANDROID_INTERSTITIAL_PLACEMENT_ID"
end
 
local interstitialAdKey = appnext.createAd( "interstitial", interstitialPlacementID )
 
appnext.setButtonColor( interstitialAdKey, "#6AB344" )
 
print( "Button color: " .. appnext.getButtonColor( interstitialAdKey ) )