Customize the Command Bar?

Is the command bar configurable at all? In what appears to be the
applications group, I have icons marked PS, AI and Acrobat - but
none of those installed. It took me some time to work out what they
were for, because the Help topic is so sparse and I could find
nothing in the forums about it. The PS icon launches PhotoShop
Elements (after I installed it), the AI one does nothing and the
Acrobat one initiates a PDF export (rather than launching Reader,
for example). The only other CS3 app I have installed is Bridge, but
that doesn't figure for some reason. It's probably the only one I'd
ever use, so can I put it there and take the others away?
ID CS3 on XPSP3
Noel

> Is the command bar configurable at all?
No.
Bob

Similar Messages

  • [uzbl] how do I clear the command bar after following a link? [SOLVED]

    It's ridiculous that I've done this again, but I've forgotten how to have uzbl automagically clear the command bar after I fl something. Yes, I know at some point it was on uzbl's wiki page; yes, I did compare my old and new configs; yes, I'm a dork and I'm just not finding the answer.

    The only part of diff that has anything to do with this is:
    < @on_event LOAD_START chain '@set_status <span foreground="khaki">wait</span>' 'event KEYCMD_STRIP_WORD'
    > @on_event LOAD_START @set_status <span foreground="khaki">wait</span>
    The rest is either stuff that I've commented out for now or key bindings, personal settings, etc.
    The follow link code is working now the way that it was before with the above changes. With the old way (as posted above) it wreaks all sorts of havoc with uzbl. By that I mean that the command bar would seem to clear but the data would reappear as soon as another command would start to be entered. As well, backspacing to the beginning of the command line would send uzbl to follow URLs that I didn't specify.
    By the way, no matter if the above is hackish or not, it's close to what I want. The only thing left would be for ESC to clear the numbers if I chose not to do go somewhere. Is there a way to set this up without breaking other functionality?

  • How to customize the title bar on my own Look And Feel?

    Hi all!
    I am creating my own Look and Feel which extends from NimbusLookAndFeel. What I'm doing is overwriting UIDefaults values??, referring to the Painters. For example:
    +uiDefault.put ("Button [Enabled]", new ButtonEnabledPainter());+
    But now I need is to customize the title bar of the JFrame's, but I do not see this option in Painter's values ??can be overwritten by Nimbus (http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/_nimbusDefaults . html).
    You know as possible? I have to overwrite an existing UI component? The idea is I want to make the look and feel like SeaGlass, but the code seems a bit complex to know where to begin.
    I hope you can guide me on this issue.
    Thank you very much for everything! And excuse my English!.
    Greetings!

    very simple example, with direct methods
    import java.awt.*;
    import java.awt.event.*;
    import java.util.LinkedList;
    import java.util.Queue;
    import javax.swing.*;
    public class NimbusBorderPainterDemo extends JFrame {
        private static final long serialVersionUID = 1L;
        private JFrame frame = new JFrame();
        private JPanel fatherPanel = new JPanel();
        private JPanel contentPanel = new JPanel();
        private GradientPanel titlePanel = new GradientPanel(Color.BLACK);
        private JLabel buttonPanel = new JLabel();
        private Queue<Icon> iconQueue = new LinkedList<Icon>();
        public NimbusBorderPainterDemo() {
            iconQueue.add(UIManager.getIcon("OptionPane.errorIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.informationIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.warningIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.questionIcon"));
            JButton button0 = createButton();
            button0.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    frame.setExtendedState(ICONIFIED);
            JButton button1 = createButton();
            button1.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    frame.setExtendedState(MAXIMIZED_BOTH | NORMAL);
                }//quick implemented, not correct you have to override both methods
            JButton button2 = createButton();
            button2.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    int confirm = JOptionPane.showOptionDialog(frame,
                            "Are You Sure to Close Application?", "Exit Confirmation",
                            JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE,
                            null, null, null);
                    if (confirm == JOptionPane.YES_OPTION) {
                        System.exit(1);
            buttonPanel.setLayout(new GridLayout(0, 3, 5, 0));
            buttonPanel.setPreferredSize(new Dimension(160, 30));
            buttonPanel.add(button0);// JLabel is best and cross_platform JComponents
            buttonPanel.add(button1);// not possible put there witouth set Dimmnesion
            buttonPanel.add(button2);// and LayoutManager, work in all cases better
            titlePanel.setLayout(new BorderLayout());//than JPanel or JCompoenent
            titlePanel.add(new JLabel(nextIcon()), BorderLayout.WEST);
            titlePanel.add(new JLabel("My Frame"), BorderLayout.CENTER);
            titlePanel.setBorder(BorderFactory.createLineBorder(Color.GRAY));
            titlePanel.add(buttonPanel, BorderLayout.EAST);
            JTextField field = new JTextField(50);
            JButton btn = new JButton("Close Me");
            btn.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    System.exit(1);
            contentPanel.add(field);
            contentPanel.add(btn);
            fatherPanel.setLayout(new BorderLayout());
            fatherPanel.add(titlePanel, BorderLayout.NORTH);
            fatherPanel.add(contentPanel, BorderLayout.CENTER);
            frame.setUndecorated(true);
            frame.add(fatherPanel);
            frame.setLocation(50, 50);
            frame.pack();
            frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
            frame.setVisible(true);
            ComponentMover cm = new ComponentMover(frame, titlePanel);
            //by camickr http://tips4java.wordpress.com/2009/06/14/moving-windows/
        private JButton createButton() {
            JButton button = new JButton();
            button.setBorderPainted(false);
            button.setBorder(null);
            button.setFocusable(false);
            button.setMargin(new Insets(0, 0, 0, 0));
            button.setContentAreaFilled(false);
            button.setIcon(nextIcon());
            button.setRolloverIcon(nextIcon());
            button.setPressedIcon(nextIcon());
            button.setDisabledIcon(nextIcon());
            nextIcon();
            return button;
        private Icon nextIcon() {
            Icon icon = iconQueue.peek();
            iconQueue.add(iconQueue.remove());
            return icon;
        private class GradientPanel extends JPanel {
            private static final long serialVersionUID = 1L;
            public GradientPanel(Color background) {
                setBackground(background);
            @Override
            public void paintComponent(Graphics g) {
                super.paintComponent(g);
                if (isOpaque()) {
                    Color background = new Color(168, 210, 241);
                    Color controlColor = new Color(230, 240, 230);
                    int width = getWidth();
                    int height = getHeight();
                    Graphics2D g2 = (Graphics2D) g;
                    Paint oldPaint = g2.getPaint();
                    g2.setPaint(new GradientPaint(0, 0, background, width, 0, controlColor));
                    g2.fillRect(0, 0, width, height);
                    g2.setPaint(oldPaint);
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
                    } catch (Exception fail) {
                    UIManager.getLookAndFeelDefaults().put("nimbusFocus", Color.RED);
                    NimbusBorderPainterDemo nimbusBorderPainterDemo = new NimbusBorderPainterDemo();
    }

  • How can I customize the navigation bar in Firefox 29? I would like to have the refresh/stop button back in front of the navigation bar!

    How can I customize the navigation bar in Firefox 29? I would like to have the refresh/stop button back in front of the navigation bar!

    There isn't a built in way to do that since all the navigation toolbars are on one toolbar.
    You can restore this functionality by installing the Classic Theme Restorer add-on
    *https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/

  • Ive just installed firefox and when i open it ive lost all the toolbars and the command bar, how can i set them up

    when i go back to Explorer all the toolbars and the command bar are avalable as you can probably tell i know very little about pc's
    == This happened ==
    Every time Firefox opened
    == i installed fire fox

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • [Forum FAQ] Customize the Navigation Bar in Outlook 2013

    In Outlook 2013, the Navigation Bar is a gray bar which lists commands at the bottom of the Outlook window that enable you to quickly navigate to Mail, Calendar, People, and Tasks.
    You can change the Navigation Bar settings for a single user by clicking
    … and then Navigation Options. For more information, please refer:
    http://office.microsoft.com/en-us/outlook-help/change-what-appears-on-the-navigation-bar-HA102838974.aspx
    However, if you want to change the Navigation Bar settings for all users in your organization, you’ll need to modify the registry.
    Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly. Therefore, make sure that
    you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs. For more information about how to back up and restore the registry
    http://support.microsoft.com/kb/322756.
    To modify the Compact view
    To maximize the vertical height of the Outlook window you can use Compact Navigation. We can change the setting by creating the
    ABCompact registry key. To do this, please follow the steps:
    1. Press Windows key + R to open the Run command, type regedit
    and press Enter to open the Registry Editor.
    2. Locate the following registry path:
    HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Options
    3. Right-click on the Options folder and select NEW > KEY, name it
    WunderBar.
    4. Select the WunderBar key, right-click on it and select
    NEW > DWORD (32-bit) Value and name it ABCompact.
    Value name: ABCompact
    Value type: DWORD (32-bit)
    Value: 1 to tick the Compact Navigation;
    0 to untick it.
    5. Restart Outlook to make the change.
    To modify the Maximum number of visible items
    To change how many views appear on the Navigation Bar, you need to change the number for Maximum number of visible items by modifying the
    NumBigModulesAB registry key.
    Value path: HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Preferences
    Value name: NumBigModulesAB
    Value type: REG_DWORD
    Value: 1-8
    The key doesn’t exist by default. When the value is set to 1, only
    Mail will appear on the Navigation Bar. If the value is set to
    8, all views will appear.
    To modify which view is turned on or off
    You can also turn one or more views off from the Navigation Bar. This is controlled by a registry string named
    ModuleVisible15.
    Value path: HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Preferences
    Value name: ModuleVisible15
    Value type: REG_SZ
    Value: 1,1,1,1,1,1,1,0,0
    By default, the string value is set to 1,1,1,1,1,1,1,0,0.
    1 means the view is turned on while 0 means the view is turned off. Moreover, the value correspond one-to-one with the views, for example, the first “1” correspond to
    Mail, and the second “1” correspond to
    Calendar… By default, the eighth and ninth view is turned off. The eighth is
    Journal and I have no idea what the ninth number stands for. You can open Journal by pressing Ctrl+8, but if you want it to appear on Navigation Bar, you can change the eighth “0” to “1”.
    To modify the view order
    If you want to switch the positions of Mail and Calendar, you’ll need to modify the
    ModuleOrderAB string.
    Value path: HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Outlook\Preferences
    Value name: ModuleOrderAB
    Value type: REG_SZ
    Value: 1,2,3,4,5,6,7,8,9
    The default order for the Navigation Bar is:
    Mail  Calendar  People  Tasks  Notes  Folders  Shortcuts 
    Journal
    In the registry string there are 9 numbers (1~9), let’s just ignore 9. So, there are 8 numbers left and each number has some relationships to each Navigation item.
    Here is the logic:
    There are 8 Navigation Options. Let’s say ‘Mail’ is Nav1, Calendar is Nav2, People is Nav3, …, Shortcut is the Nav7 and Journal is Nav8.
    Meanwhile, there are 8 positions to put those 8 Navigation items, we name them
    position1 to position8, from left to right.
    For example,    CALENDAR  TASKS  PEOPLE  FOLDERS  MAIL  NOTES  SHORTCUTS 
    Journal
    ModuleOrderAB=    5                
    1              3               
    2              6           
    4                
    7                   
    8
    The number “5” is in the first position of the ModuleOrderAB string and it takes
    position1. The default navigation option for position1 is
    Mail.
    So, “5” means put Nav1 (Mail) on position5.
    “1” is on position2, default navigation item on
    position2 is Calendar. It means put Calendar on
    position1.
    So, “3” means put People on position3; “2” means put
    Task on position2… and so on.
    If you have more questions, welcome to post in the forum. Thank you.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    There isn't a built in way to do that since all the navigation toolbars are on one toolbar.
    You can restore this functionality by installing the Classic Theme Restorer add-on
    *https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/

  • I need to customize the menu bar - remove some icons, add some

    I would like to customize the menu toolbar, not just hide / unhide it. How can I do that - View, Toolbars, Customize does NOT give me access to adjust the menu bar. Is there an add on I can use?

    If you want to make changes to the menu part then see:
    Menu Editor: https://addons.mozilla.org/firefox/addon/710

  • How do I customize the "awesome bar"?

    I just got the forced upgrade to Firefox 12, and while I don't care for most of the new interface, I can deal. That said, I can't stand the changes to the "awesome bar." It's very distracting that it's highlighted every time I move my cursor over it, and I also don't like that all text other than the main domain (e.g., mozilla.org) is grayed out. Is there any way to get it back to normal?

    Hi,
    You can try to set the values of '''browser.urlbar.clickSelectsAll''' and '''browser.urlbar.formatting.enabled''' to false in [http://kb.mozillazine.org/About:config about:config].
    [http://kb.mozillazine.org/About:config_entries about:config Entries]

  • How to customize the shortcut bar at the top?!

    Sorry, I know this is simple but its driving me nuts!
    When you click on the various tools the shortcut bar at the top changes.  For example, click on the type tool and it shows your font drop down menu, you para alignment, your font size etc.  However theres several things on there I dont need (ie stretching the font less or more than 100% and the dictionary option).  Also things Id like to add like the new span/split columns options.
    How on earth do I customise these?  All the tutorials I can find are about creating new workspaces etc but nothing seems to be able to change those options.  I can undock the whole thing but ... arrghh!!
    Any advice?

    I’m not sure what application you’re referring to but I’ll guess InDesign.
    This forum is for suite specific issues so please post in the proper application specific forum.
    Bob

  • Can I customize the side bar to show facebook, for example, but change the shape of the content so I can view news in a narrower bar?

    I've put facebook in my sidebar. but I have to scroll sideways to read my news feed. I know how to narrow or widen the window, but I'd prefer to keep it t under 2 inches wide and have the text in the newsfeed get narrow as well. Anyone know how?

    Keyboard shortcuts are much better than icons once you learn them.
    e,g. Ctrl+S to save.
    Check out the list.
    http://www.photokaboom.com/photography/pdfs/Photoshop_Elements_shortcuts.pdf

  • I accidentally deleted the toolbar and command bar and everything that is above the tabs. How do I get it back?

    I accidentally deleted everything above the tabs: toolbar, command bar etc. and now I have no idea how to get it back. Can anyone please help me?
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; OfficeLiveConnector.1.3; OfficeLivePatch.0.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; AskTB5.6)

    The command bar in IE is situated to the right of the tabs. They include the following:- HOME, NO FEEDS DETECTED, READ MAIL, PRINT, PAGE, SAFETY, TOOLS, and ? This command bar is missing in Mozilla Fire Fox. There is a download called VISTA-AERO but it appears to be incompatible in Fire Fox. To me the command bar is useful so I miss it.
    The menu bar is totally different to the command bar. That sits to the top left of the screen. It seems to me from the answers that are posted refer to the menu bar. The way that the answers are written are helpful to those that lose the menu bar but is not helpful to the people who are missing the command bar.
    I, like the others who miss the command bar would like a solution to obtaining a compatible command bar in Fire Fox please. Any body have any suggestions please.

  • Customize the workspace buttons?

    Is there a way to customize the workspace buttons? There are only a few buttons there currently, and a lot of wasted space. The workspace bar used to have a variations button but that has been removed in this version. There are other commands I would like to add to it as well. Is there a way to customize this? I tried control, left, and right clicking on a blank area of the workspace bar but nothing happened.

    No, you cannot customize the button bar.

  • Allow Customization of Format Bar

    I think I know the reasons why Apple does not "want us" to customize the Format Bar (because it is contextual, which is a good thing) but I sure would like to at least rearrange the items that appear.
    For example, the increase/decrease decimal points are just in the wrong order for me. I would prefer fewer decimals to be on the left and more decimals on the right.
    I am glad to see the past sort of repeating itself - I basically used Trapeze waaaay back in the late 80's while in college. Great piece of software for an engineering student! Anyway, some minor "improvements" I would like to see are the ability to dynamically change the size of a table and to perform matrix operations.
    Thanks Apple.

    Make sure you send your suggestions to Apple. You can do this through Numbers' Main Menu "Provide Numbers Feedback."
    Regards,

  • Where is the command line interface in DW CS3 on a Mac?

    I have seen other forums where they instruct you to use the command bar or command line interface to set permissions and what not, but I do not see where that might be in Dreamweaver CS3 on a Mac. Can someone assist me in locating this feature?
    Thanks in advance,
    Todd Temple > T2 Design

    There is no command line interface in Dreamweaver. It's a tool for editing web pages.
    However, you can use Dreamweaver to set the permissions on web pages on your remote server like this:
    In the Files panel, select Remote view from the drop-down menu at the top right.
    Select the file(s)/folder(s) for which you want to change the permissions.
    Right-click and select Set Permissions from the context menu.
    Set the permissions in the dialog box that opens.
    As the dialog box warns you, this command does not work on all servers. If your remote server won't allow you to change permissions through Dreamweaver, you need to log into your hosting company's control panel, and change the permissions there. If you don't know how to do it through the control panel, ask your hosting company for help, as the method depends on the control panel used.

  • Command bar

    i lost my command bar at the top of my comcast home page.How do I get it back?

    If you are using Internet Explorer there are 2 ways to get it back.
    1) Place your cursor in an empty spot just above the address bar. RIGHT click. Then click Command bar to check it.
    OR
    2) If you have the Menu bar (File, Edit, Favorites, Tools, Help) click on View.
    Choose Toolbars. Click Command bar to check it.
    Either method will restore the command bar.

Maybe you are looking for

  • Rendering issue - explained

    Hi, I have developed a PDF form to collect details from users. the form works as expected. I rendered the file and tried giving some inputs and saving the file. once i hit the save button, i observe the display settings are not working as expected. f

  • After 10.7.4 update macbook pro won't sleep

    after 10.7.4 update, macbook pro won't sleep.

  • Customizing changes transfer to another client automatically

    Hi, In our development system, client 100 is for customizing, and no applicaiton data, client 200 for testing, with application data. When we made the customizing changes in client 100, I should transfer the changes to client 200 with SCC1, and then

  • Oracle Failsafe Manager

    Guys, I am planning to install Oracle - 9i DB with Oracle FailSafe Manager on MSCS (Microsoft Cluster Services) I am following the belows steps 1. Install Oracle - 9i 2. Patch it with 9.2.0.5 3. Setup MSCS services 4. Install Oracle Failsafe Manager

  • Crystal Reports with TimeSlips by Sage

    Is anyone using Crystal Reports 2008 with Timeslips 2009 or 2010?  I am having a lot of trouble with joins- whenever I have three or more tables, the data is limited, no matter how I set up the joins.  I currently have them set up so that the User Na