So I'am trying to make a unique menu for my game.

It looks like this so far. Its pretty cool!
But I would like to do some certain things with it.
Such as take out the window on the right side.
and replace it with a black tint. Like the dim window option.
for text.
I would also like to make my menu background scroll.
But I can't find a script for it anywhere.
If any of you know how I could do this, or
could show me a script It would help me out a lot.
This is the Code I'am using for the background for a window.

It looks like this so far. Its pretty cool!
But I would like to do some certain things with it.
Such as take out the window on the right side.
and replace it with a black tint. Like the dim window option.
for text.
I would also like to make my menu background scroll.
But I can't find a script for it anywhere.
If any of you know how I could do this, or
could show me a script It would help me out a lot.
This is the Code I'am using for the background for a window.
Code:
class Scene_Menu < Scene_MenuBase
#--------------------------------------------------------------------------
# * Start Processing
#--------------------------------------------------------------------------
alias dalhan_background_start start
def start
dalhan_background_start() #Calls the Original Method
create_dalhan_background
end
def create_dalhan_background
@dalhan_plane = Plane.new
@dalhan_plane.bitmap = Cache.parallax("Menu Screen")
end
def dispose_dalhan_background
@dalhan_plane.bitmap.dispose
@dalhan_plane.dispose
end
def return_scene
SceneManager.return
dispose_dalhan_background
end
end

