If you mean status bar in battle it is possible.
Put this somewhere before Main
Â
class Scene_Battle
 def hide
  @status_window.visible = false
  return
 end #def
 def show
  @status_window.visible = true
  return
 end #def
end #class
Â
In battle event use
to hide
to show status bar
It looks ugly 'cause behind status bar there is black screen and hero battlers are still visable(you can hide them)
If you want something more post it here or PM me.
If you mean anaother status menu then tell which one.