Hello
Advanced Text System 2.0 bugs with one of my other scripts: "Hide Text Box Snippet". Please look on my "project file" http://www.mediafire.com/?qtmjgy5m22m (http://www.mediafire.com/?qtmjgy5m22m) and it will explain the situation.
Regardless, I'll explain as good I can: The "Hide Text Box Snippet" implement a Visual Novel function to VX that lets the user hide/show text-boxes with the F8 button.
The "Hide Text Box Snippet" works fine when alone i.e. then it hide/show the text-window and the face graphic inside the text-box, but when using Advanced Text System 2.0 only the text-box is hidden when I press F8, the face-graphic is still left on the screen.
What I need help with is some sort of extra "Hide Text Box Snippet" that replace the function to hide/show run/close the "Window_Message" (please look on the script) with the face-on/off function in Advanced Text System 2.0, so that when a user press F8 the face-graphic in Advanced Text System 2.0 will be hidden/show.
This might sound complicated, but please just look on my project and it will be easy to understand and hopefully even more easy to solve.
I paste the "Hide Text Box Snippet" (script made by Jet10985 and piejamas) here inside the spoiler:
[spoiler]
#===============================================================================
# Hide Text Box Snippet
# By Jet10985
# Original Code by Piejamas
#===============================================================================
# This snippet allows you to add scenes where the player can hide the textbox
# to maybe look at a picture then bring the box back up.
# This script has: 2 customization options.
#===============================================================================
module HIDE
ACTIVATION_SWITCH = 5 # This is the switch that allows the player to hide the box
TRIGGER = Input::F8 # This is the button that needs to be pressed to hide the box
end
#===============================================================================
# DON'T EDIT FURTHER UNLESS YOU KNOW WHAT TO DO.
#===============================================================================
class Window_Message
alias jet7535_base_update update
def update
jet7535_base_update
unless $scene.is_a?(Scene_Battle)
if $game_switches[HIDE::ACTIVATION_SWITCH]
if Input.trigger?(HIDE::TRIGGER)
if self.visible
self.visible = false
elsif
self.visible = true
end
Sound.play_cursor
end
end
end
end
def input_pause
if Input.trigger?(Input::B) or Input.trigger?(Input::C)
if self.visible
self.pause = false
if @text != nil and not @text.empty?
new_page if @line_count >= MAX_LINE
else
terminate_message
end
end
end
end
end
[/spoiler]
I welcome any kind assistance, as I am quite desperate to have this to work (cannot progress with my project until this is solved). If worst comes to worst, do anyone of you knew any sort of script that have Advanced Text System 2.0's function to automatically "wrap" text who is entered into the editor and show into the text-boxes is the game, because I don't like to "manually" enter line-breaks just to keep VX happy - with modern's Advanced Text System 2.0 I can just enter text into the text-boxes as they where a word processor.
Cheers
O.
I answered you in the thread didn't I? Did that solution not work?