Mousie: The Mouse System - Printable Version +- Save-Point (https://www.save-point.org) +-- Forum: Material Development (https://www.save-point.org/forum-8.html) +--- Forum: Scripts Database (https://www.save-point.org/forum-39.html) +---- Forum: RPGMaker XP (RGSS) Engine (https://www.save-point.org/forum-116.html) +---- Thread: Mousie: The Mouse System (/thread-2565.html) |
RE: Mousie: The Mouse System - MechanicalPen - 02-04-2014 This works for me? Code: $game_variables[1] = RE: Mousie: The Mouse System - JayRay - 02-05-2014 interesting, you did that in a script call from an event? RE: Mousie: The Mouse System - MechanicalPen - 02-05-2014 Sure did. Even used Mouse.click?(Left_Click) in an event's script branch condition. RE: Mousie: The Mouse System - JayRay - 02-14-2014 Mechanical Pen: How? This is what I created as far as an event, and I get a syntax error.. RE: Mousie: The Mouse System - MechanicalPen - 02-14-2014 It's ' Mouse.click?(Mouse::Left_Click) ' not ' Mouse.click?(Left_Click) ' RE: Mousie: The Mouse System - JayRay - 02-16-2014 got them both working, GUI is awesome!!! (just sayin) RE: Mousie: The Mouse System - DerVVulfman - 07-19-2015 Riddle me this. When is a BUMP not a BUMP?
When I'm BUMPING a supplemental system/script.
Has it really been 3 years since my last update? Well, you have to thank yamina-chan for this one. She noticed that the Windows Edits which were initially crafted by Lambchop/Amaranth/Amanda Fitch ... didn't properly align the mouse with the characters drawn in the Name Edit window. Provided below is the new mouse operation method from within the 'Window_NameInput' class. This method is also available within the complete 'Window Edits' in the main post, but not within the demo itself. When downloading the demo, you must still update the window edits within. Code: #-------------------------------------------------------------------------- Um, if anyone wants to make the right mouse click delete letters in the name window (rather than the ESC) button, please consider this snippet from Scene_Name: Code: #-------------------------------------------------------------------------- Code: if Input.repeat?(Input::B) or Mouse.click?(Mouse::Right_Click) Enjoy. RE: Mousie: The Mouse System - yamina-chan - 07-19-2015 =D Thank you for finding out what was wrong and for correcting said issue. "And insofar as menu edits, please give credit to yamina-chan who noticed that the default windows edits had not considered proper spacing and handling where the Name Edit Window was concerned." <- *from the first post* There's really no need for anyone to credit me for that... |