Is there a way to make a Gui control not be the first well.. responder, such as I scroll over this gui but I want the gui underneath to call the function onMouseEnter()
makefirstresponder() doesn't seem to do it.
__________________ Time is the fire in which we burn...
Up, Up, Down, Down, Left, Right, Left, Right, B, A, Select, Start! Now I got 99 LIVES!!!
You can prevent an object from ever taking focus by using
PHP Code:
useownprofile = true;
profile.modal = false;
When I was working on an Inventory system I would make a GuiControl container and place an image inside of it and make the image modal so I only had to worry about the container's events.