
Originally Posted by
Krojack
I've been wanting this for hotbars. I would like to hide a few while out of combat to make my UI cleaner.
Maybe have an option to show them while in combat OR while you're in an instance. Walking around in a city or my house, meh, I don't need to see most or any of them really.
While you wait for an official implementation, you can work around the system by using a macro that toggles the share states of your bars:
Code:
/mlock // makes sure the entire macro executes, so bars aren't in mismatched states
/hotbar share 1
/hotbar share 2
/hotbar share 3
/hotbar share 4
Toggles the share state of bars 1 through 4. Toggling bar sharing will hide your job-specific bars and show the shared bars of the same number, or vice versa. If the shared bars are empty, the bars can be made invisible. Or the shared bars can be a less obtrusive set of out-of-combat-only actions, since you don't need to see out-of-combat-only actions when you're in combat.
This is simple enough to use a single macro as a toggle.
Working around the nameplate topic is a little bit more involved. There are namplate commands that can be used to change several settings quickly but the nature of the "display when?" option doesn't allow for a single macro toggle, so you need two macros, and if you want them on the same button as if they were a toggle, you will need to store two versions of the bar and swap them out with the macros.
However, there is no slash command for showing or hiding titles. If there were a title display command, you could do something like this:
Code:
/mlock
/nameplatedisp self 1 // display self nameplate
/nameplatedisp party 1 // display party nameplates
/nameplatedisp alliance 3 // alliance nameplates when targeted
/nameplatedisp other 3 // other PC nameplates when targeted
/nameplatedisp friend 3 // friend nameplates when targeted
/nameplatetype all 4 // set all nameplates to initials only
/titledisplay all off // turn titles off
Code:
/mlock
/nameplatedisp self 4 // hide self nameplate
/nameplatedisp party 1 // display party nameplates
/nameplatedisp alliance 1 // display alliance nameplates
/nameplatedisp other 1 // display other PC nameplates
/nameplatedisp friend 1 // display friend nameplates
/nameplatetype all 1 // set all nameplates to full name
/titledisplay all on // turn titles on
but to reiterate, the /titledisplay command doesn't exist, so you'll only be able to customize nameplate display and nameplate type until they add a /titledisplay command.

Originally Posted by
Aurelle_Deresnels
If it is convenient to add further options while working on this part of the interface, I can imagine good use for more advanced options, such as different name abbreviation settings depending on whether one is in combat. But I can also imagine that doing so might involve difficult technical and/or interface work, so I quite understand if this is not possible. Even the main suggestion alone would be greatly appreciated.
I don't think any of what you asked should be particularly complicated, but it would require some slight UI redesign. Much simpler would be to add the /titledisplay command, and then let players macro the actual display changes themselves.