WoWInterface

WoWInterface (https://www.wowinterface.com/forums/index.php)
-   Cataclysm Beta (https://www.wowinterface.com/forums/forumdisplay.php?f=82)
-   -   Game menu buttons (https://www.wowinterface.com/forums/showthread.php?t=35293)

Haleth 10-06-10 07:43 AM

Game menu buttons
 
On live, the game menu buttons (video options, interface options, exit game...) were treated as normal buttons and could be changed with SetNormalTexture(), SetHighlightTexture(), etc. In 4.0.x, this seems to be no longer the case.

Does anyone know what happened to them? I'm quite fond of my shiny options menu.

tukz 10-08-10 12:17 AM

Quote:

Originally Posted by Haleth (Post 208225)
On live, the game menu buttons (video options, interface options, exit game...) were treated as normal buttons and could be changed with SetNormalTexture(), SetHighlightTexture(), etc. In 4.0.x, this seems to be no longer the case.

Does anyone know what happened to them? I'm quite fond of my shiny options menu.

Code:

                -- reskin all esc/menu buttons
                local BlizzardMenuButtons = {
                        "Options",
                        "SoundOptions",
                        "UIOptions",
                        "Keybindings",
                        "Macros",
                        "Ratings",
                        "AddOns",
                        "Logout",
                        "Quit",
                        "Continue",
                        "MacOptions"
                }
               
                for i = 1, getn(BlizzardMenuButtons) do
                        local TukuiMenuButtons = _G["GameMenuButton"..BlizzardMenuButtons[i]]
                        if TukuiMenuButtons then
                                SkinButton(TukuiMenuButtons)
                                _G["GameMenuButton"..BlizzardMenuButtons[i].."Left"]:SetAlpha(0)
                                _G["GameMenuButton"..BlizzardMenuButtons[i].."Middle"]:SetAlpha(0)
                                _G["GameMenuButton"..BlizzardMenuButtons[i].."Right"]:SetAlpha(0)
                        end
                end


Haleth 10-08-10 04:29 AM

Ahh, that way :D Thank you Tukz.

Wonder why they felt the need to change this.


All times are GMT -6. The time now is 08:16 PM.

vBulletin © 2024, Jelsoft Enterprises Ltd
© 2004 - 2022 MMOUI