munkis
Aug 15 2011, 01:59 PM
My question refers to this post:
http://www.rpgrevolution.com/forums/index....st&p=518965I want to get rid of the arrow that's created, but I don't know how.
BigEd781
Aug 15 2011, 03:36 PM
That arrow is part of the windowskin and is rendered in the base library, not in the scripts found in the editor. However, I have a solution for you. Here is the (replicated) code for the RGSS2 Window class:
http://www.rpgmakervx.net/index.php?showto...amp;#entry77312It may seem a bit intimidating at first, but by changing that script you can completely modify the way a Window is rendered in VX.
Titanhex
Aug 15 2011, 09:10 PM
I don't think he wants to get rid of the window exactly. But rather, he doesn't understand why the window is appearing in the first place and how to make sure it doesn't appear. It's conceived more as an error in the script made rather than an issue with the graphic.
BigEd781
Aug 16 2011, 08:54 AM
Right, but what I'm saying is that is the default behavior of the Window class. If the internal Bitmap is larger than the size of the window it will display the arrow because it is assumed that there will be more items painted onto the Bitmap that are out of view. If you want to get rid of it there are only two options:
1. Don't make the Bitmap larger than the Window.
2. Modify the Window class to do what you want.
Titanhex
Aug 16 2011, 04:11 PM
Ahh, I see. I myself have learned something new then.