pollfish.isLoaded()

Type Function
Return value Boolean
Revision Release 2024.3703
Keywords ads, advertising, Pollfish, isLoaded
See also pollfish.show()
pollfish.*

Overview

Checks to see if a survey is loaded and ready to be displayed.

Syntax

pollfish.isLoaded()

Example

local pollfish = require( "plugin.pollfish" )

local function adListener( event )

    if ( event.phase == "init" ) then  -- Successful initialization
        pollfish.load()
    end
end

-- Initialize the Pollfish plugin
pollfish.init( adListener, { apiKey="YOUR_API_KEY" } )

-- Sometime later, check if a survey is loaded
local isSurveyLoaded = pollfish.isLoaded()
print( isSurveyLoaded )