Hi,
I’m trying to make an app that uses a Fly out menu. So what i did was this:
display.setStatusBar( display.HiddenStatusBar )
local composer = require “composer”
display.setDefault(“background”,1,1,1)
composer.gotoScene(“Flyout”)
composer.gotoScene(“Menu”)
Called both Lua file at the same time in my main.lua.
Yes, only my Menu.lua file showed up but is it possible to make my Fly out menu visible in every scene.
Or is it possible for two scene to show up at the same time without using showOverlay.
Thanks.