Disable Slide Menu?

Is there any way at all that I could, with code, disable that sliding menu that appears when you view a project? I know you can choose supported orientations, which I have done, but I want this project to be a simple portrait viewed game. Having that menu open changes the width, and I guess I can close it right when the project starts, but then my menu, which has code in the draw function, will have artwork with size and position based on the width of the screen with the menu open.

function setup()
    --Set the viewer to fullscreen
    displayMode( FULLSCREEN )
end

@Jmv38, he means that disabling everything. So @NarwhalKing10, use displayMode(FULLSCREEN_NO_BUTTONS)

Thanks guys! Now my project starts and plays like a game not a project!

thanks