Do I need to do anything special to be able to display a layer with a png brush containing transparent areas properly? The computer on the desk is supposed to light up when the mouse pointer is over it. Which it does, but the area around it is also affected. I've simply used a curves modifier in gim...
Beautiful. It works. Thank you. So, it seems that; MakeButton(1, #SIMPLEBUTTON, 20, 250, 120, 120, {OnMouseOut = p_Stage01EventFunc, OnMouseOver = p_Stage01EventFunc, OnMouseDown = p_Stage01EventFunc}) Will make the InstallEventHandler instruction unneeded. They are essentially the same thing? Is th...
Thank you, you are a gem. But the layer will not hide once the mouse leaves the hotspot area. @VERSION 8,0 @DISPLAY{WIDTH = 1280, HEIGHT = 720, MODE = "WINDOWED", TITLE = "The Beckoning - Playable Teaser", COLOR = #BLACK} ; *** VARIABLES *** ;------------------ Stage = 0 ; Set Start Location VolMus ...
How would I go about hiding a brush after a certain event. I want to highlight a part of a background picture using a brush once the mouse is over that area and return to normal when the mouse exits. As far as I know I have to enable layers, but where? In that particular function, or in the main one...
Thank you both for taking the time to give those in-depth explanations. I appreciate it.
Not sure I completely understand everything yet, but I'll get there eventually.
Bugala, You suggestions worked beautifully. Thanks.
Here's a piece of reference code with some questions in comments: @VERSION 8,0 @DISPLAY{WIDTH = 1280, HEIGHT = 720, MODE = "WINDOWED", TITLE = "The Beckoning Test", COLOR = #BLACK} ; *** VARIABLES *** ;------------------ Stage = 0 ;--------------------------------------------------------------------...