I have a splash screen or the very first screen that shows when my app launches. It was working fine until I started messing with some of my other lua files to get a backbutton issue to work. I’m not an expert but I don’t see how that impacted my Splashscreen. Anyway now when my splashscreen starts it still works but when it changes to the next screen the titlescreen page the logo from the splash screen shows up on my titlescreen page. How can I stop that? I loaded my splashscreen screen lua file below.
[lua]module(…, package.seeall)
– Main function - MUST return a display.newGroup()
function new()
print (“in load titlescreen file”)
local localGroup = display.newGroup()
local theTimer
local loadingImage
local showLoadingScreen = function()
loadingImage = display.newImageRect( “blackbackground.png”, 1600, 820)
localGroup:insert(loadingImage)
local goToLevel = function()
director:changeScene( “titlescreen” )
end
math.randomseed( os.time() )
theTimer = timer.performWithDelay( 1500, goToLevel, 1 )
end
local logo = display.newImage (“logo.png”)
logo.x = 240
logo.y = 150
showLoadingScreen()
unloadMe = function()
end
– MUST return a display.newGroup()
return localGroup
end[/lua] [import]uid: 72372 topic_id: 12558 reply_id: 312558[/import]
[import]uid: 71210 topic_id: 12558 reply_id: 45912[/import]