Hi all--
For my app, I would like to make it so that the first time a user opens the app a native alert popup appears with general instructions & information.
Here’s my alert code
local function onComplete( event ) if event.action == "clicked" then local i = event.index if i == 1 then elseif i == 2 then end end end alert = native.showAlert( "How to Play", "App stuff here", { "Okay" }, onComplete )
If there is a way to make it appear only on the first app open ever, not every time the app is opened, that’d be great.
Thanks!