Jump to content

[Solved] Need to disable toolbar button in Editor


Recommended Posts

I have the following code to add a button to the stock toolbar:

        private void OnGuiAppLauncherReady ()
        {
            try {
                button = ApplicationLauncher.Instance.AddModApplication (
                    GUIToggle, GUIToggle,     
                    null, null,
                    null, null,
                    ApplicationLauncher.AppScenes.VAB | ApplicationLauncher.AppScenes.SPH, //visibleInScenes
                    GameDatabase.Instance.GetTexture (texPathDefault, false) //texture
                );
            } catch (Exception ex) {
                Log.Error ("Error adding ApplicationLauncher button: " + ex.Message);
            }

        }

 

there are times I want the button to be disabled, and to be greyed out (like the launch icon gets greyed out when there isn't a ship to launch).  I have the code to do this, how can I disable/enable the toolbar button?

Thanks

Edited by linuxgurugamer
Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...