this is the code
-- main.lua
local storyboard = require "storyboard";
display.setStatusBar ( display.HiddenStatusBar )
--Setting up Global variables
\_W = display.contentWidth;
\_H = display.contentHeight;
-- Load first scene mainmenu.lua
local options=
{
effect = "fade",
time = 10000
}
storyboard.gotoScene( "mainmenu", options )
-- mainmenu.lua
local storyboard = require( "storyboard" )
local scene = storyboard.newScene()
function scene:createScene( event )
local menuGroup = self.view
mainBg = display.newImageRect("images/menubg.png", 820, 960);
mainBg.x = \_W/2;
mainBg.y = \_H/2;
the last 2 lines of mainmenu.lua show the warning “Possibly Uninitialized” (warning sign in yellow color triangle next to code numbering) [import]uid: 31508 topic_id: 32207 reply_id: 128229[/import]