Hello
Im playing around with Lua and Corona. I have programmed it so that it shows a simple background picture:
– Background intro splash screen
local halfW = display.stageWidth / 2
local halfH = display.stageHeight / 2
local backgroundPortrait = display.newImage( “noorbackgroundIPhone.jpg”, 0, 0 )
local background = backgroundPortrait
But the problem is that the Iphone status bar shadows over the app. I want to remove it and I have tried learning from the Status bar sample and added this to the code:
–Hide status bar
local modes = {
display.HiddenStatusBar,
}
local modeNames = {
“display.HiddenStatusBar”,
}
But the status bar is still there when I run the simulator. Help anyone? [import]uid: 3870 topic_id: 227 reply_id: 300227[/import]