Tool Bar List problem

When I right click on any of those tools box on Tool Bar List,  there is no other option comes up for you to chose from. For example when right click on the Pencial Tool icon, it alway shows Pencial Tool, not like the Photoshop that show other options like Brush Tool, Color Replacement Tool, etc.   

Alt + click instead.
Or click and hold a second.

Similar Messages

  • Tool bar dock problem with grid layout

    I have a tool bar with grid layout. When i dock it to vertical location(west or east) the buttons inside tool bar keep one row. I want to know how do i do to make the buttons arraged vertically like the tool bar with default layout when dock it at west or east position.

    I had started a custom layout manager for toolbars a few months ago that I found a little easier to use than the default BoxLayout. I just modified it to allow optionally matching the button sizes (width, height, or both), so you can get the same effect as GridLayout. Note that this one doesn't collapse the toolbar like the one in the other thread. Here's the source code as well as a simple test app to demonstrate how to use it. Hope it helps.
    //     TestApp.java
    //     Test application for ToolBarLayout
    // package ***;
    import java.awt.*;
    import javax.swing.*;
    public class TestApp extends JFrame
         /////////////////////// Main Method ///////////////////////
         public static void main(String[] args)
              try { UIManager.setLookAndFeel(
                   UIManager.getSystemLookAndFeelClassName()); }
              catch(Exception ex) { }     
              new TestApp();
         public TestApp()
              setTitle("ToolBarLayout Test");
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              setSize(400, 300);
              setLocationRelativeTo(null);
              JToolBar tbar = new JToolBar();
              ToolBarLayout layout = new ToolBarLayout(tbar);
              // Comment these two lines out one at a time to see
              // how they affect the toolbar's layout...
              layout.setMatchesComponentDepths(true);
              layout.setMatchesComponentLengths(true);
              tbar.setLayout(layout);
              tbar.add(new JButton("One"));
              tbar.add(new JButton("Two"));
              tbar.add(new JButton("Three"));
              tbar.addSeparator();
              tbar.add(new JButton("Musketeers"));
              Container c = getContentPane();
              c.setLayout(new BorderLayout());
              c.add(tbar, BorderLayout.NORTH);
              setVisible(true);
    //     ToolBarLayout.java
    //     A simple layout manager for JToolBars.  Optionally resizes buttons to
    //     equal width or height based on the maximum preferred width or height
    //     of all components.
    // package ***;
    import java.awt.*;
    import javax.swing.*;
    public class ToolBarLayout implements LayoutManager, SwingConstants
         private JToolBar     oToolBar = null;
         private boolean     oMatchDepth = false;
         private boolean     oMatchLength = false;
         private int          oGap = 0;
         public ToolBarLayout(JToolBar toolBar)
              oToolBar = toolBar;
         public ToolBarLayout(JToolBar toolBar, boolean matchDepths)
              oToolBar = toolBar;
              oMatchDepth = matchDepths;
         public ToolBarLayout(JToolBar toolBar,
                        boolean matchDepths,
                             boolean matchLengths)
              oToolBar = toolBar;
              oMatchDepth = matchDepths;
              oMatchLength = matchLengths;
         // If true, all buttons in the row will be sized to
         // the same height (assuming horizontal orientation)
         public void setMatchesComponentDepths(boolean match)
              oMatchDepth = match;
         // If true, all buttons in the row will be sized to
         // the same width (assuming horizontal orientation)
         public void setMatchesComponentLengths(boolean match)
              oMatchLength = match;
         public void setSpacing(int spacing)
              oGap = Math.max(0, spacing);
         public int getSpacing()
              return oGap;
         ////// LayoutManager implementation //////
         public void addLayoutComponent(String name, Component comp) { }
         public void removeLayoutComponent(Component comp) { }
         public Dimension minimumLayoutSize(Container parent)
              return preferredLayoutSize(parent);
         public Dimension preferredLayoutSize(Container parent)
              synchronized (parent.getTreeLock())
                   int orientation = getOrientation();
                   Component[] components = parent.getComponents();
                   int w = 0, h = 0;
                   int totalWidth = 0, totalHeight = 0;
                   int maxW = getMaxPrefWidth(components);
                   int maxH = getMaxPrefHeight(components);
                   Dimension ps = null;
                   if (orientation == HORIZONTAL)
                        for (int i=0; i < components.length; i++)
                             ps = components.getPreferredSize();
                             if (oMatchLength) w = maxW;
                             else w = ps.width;
                             if (oMatchDepth) h = maxH;
                             else h = ps.height;
                             if (components[i] instanceof JSeparator)
                                  w = ps.width;
                                  h = 0;
                             totalWidth += w;
                             if (i < components.length - 1)
                                       totalWidth += oGap;
                             totalHeight = Math.max(totalHeight, h);
                   else
                        for (int i=0; i < components.length; i++)
                             ps = components[i].getPreferredSize();
                             if (oMatchDepth) w = maxW;
                             else w = ps.width;
                             if (oMatchLength) h = maxH;
                             else h = ps.height;
                             if (components[i] instanceof JSeparator)
                                  w = 0;
                                  h = ps.height;
                             totalHeight += h;
                             if (i < components.length - 1)
                                       totalHeight += oGap;
                             totalWidth = Math.max(totalWidth, w);
                   Insets in = parent.getInsets();
                   totalWidth += in.left + in.right;
                   totalHeight += in.top + in.bottom;
                   return new Dimension(totalWidth, totalHeight);
         public void layoutContainer(Container parent)
              synchronized (parent.getTreeLock())
                   int orientation = getOrientation();
                   Component[] components = parent.getComponents();
                   Insets in = parent.getInsets();
                   int x = in.left, y = in.top;
                   int w = 0, h = 0, maxW = 0, maxH = 0;
                   Dimension ps = null;
                   if (orientation == HORIZONTAL)
                        maxW = getMaxPrefWidth(components);
                        maxH = Math.max( getMaxPrefHeight(components),
                             parent.getHeight() - in.top - in.bottom );
                        for (int i=0; i < components.length; i++)
                             ps = components[i].getPreferredSize();
                             if (oMatchLength) w = maxW;
                             else w = ps.width;
                             if (oMatchDepth) h = maxH;
                             else h = ps.height;
                             if (components[i] instanceof JSeparator)
                                  w = ps.width;
                                  h = maxH;
                             components[i].setBounds(
                                  x, y + (maxH-h)/2, w, h);
                             x += w + oGap;
                   else
                        maxH = getMaxPrefHeight(components);
                        maxW = Math.max( getMaxPrefWidth(components),
                             parent.getWidth() - in.left - in.right );
                        for (int i=0; i < components.length; i++)
                             ps = components[i].getPreferredSize();
                             if (oMatchDepth) w = maxW;
                             else w = ps.width;
                             if (oMatchLength) h = maxH;
                             else h = ps.height;
                             if (components[i] instanceof JSeparator)
                                  w = maxW;
                                  h = ps.height;
                             components[i].setBounds(
                                  x + (maxW-w)/2, y, w, h);
                             y += h + oGap;
         //// private methods ////
         private int getOrientation()
              if (oToolBar != null) return oToolBar.getOrientation();
              else return HORIZONTAL;
         private int getMaxPrefWidth(Component[] components)
              int maxWidth = 0;
              int componentWidth = 0;
              Dimension d = null;
              for (int i=0; i < components.length; i++)
                   d = components[i].getPreferredSize();
                   componentWidth = d.width;
                   if (components[i] instanceof JSeparator)
                        componentWidth = Math.min(d.width, d.height);
                   maxWidth = Math.max(maxWidth, componentWidth);
              return maxWidth;
         private int getMaxPrefHeight(Component[] components)
              int maxHeight = 0;
              int componentHeight = 0;
              Dimension d = null;
              for (int i=0; i < components.length; i++)
                   d = components[i].getPreferredSize();
                   componentHeight = d.height;
                   if (components[i] instanceof JSeparator)
                        componentHeight = Math.min(d.width, d.height);
                   else maxHeight = Math.max(maxHeight, componentHeight);
              return maxHeight;

  • Since updating to 3.6.1 I don't get an empty browser window in my tool bar whe. it opens --- just a list of search engines. I can't find anything in "Help" or the FAQ's that seem to address this. My only choice seems to go back to Safari.

    Since updating to 3.6.1 I don’t get an empty browser window in my tool bar when it opens --- just a list of search engines. I can’t find anything in “Help” or the FAQ’s that seem to address this.
    My only choice seems to go back to Safari.

    I am not sure what your problem is, can you give more details.
    One possibility is you may be in full screen mode, for details on fixing that see the [[menu bar is missing]] article.
    If you are missing various toolbar items, see the [[back and forward or other toolbar items are missing]] article.
    If your problem is something else please give more details.

  • How do i get my old favorites list back on tool bar?

    I just downloaded Firefox but my favorites list is missing.How do I get it back on the tool bar?

    Firefox automatically creates backups of your bookmarks, which can be helpful if your bookmarks are lost or missing. To recover them, follow the instructions below.
    #Use <u>one</u> of these methods to open the Bookmarks Library window:
    #*Click the ''[[Display the Firefox button menu instead of the menu toolbar|Firefox button]]'' to open the menu and click on ''Bookmarks''.
    #*Click the ''Bookmarks'' menu and click on ''Show All Bookmarks''.
    # At the top of the Library window, click the "Import and Backup" menu and select Restore.
    # Click the date of the bookmark backup you want to recover.
    # In the new window that appears, click OK.
    # Your bookmarks from the selected date should now be restored.
    For more information, see the [[Restore bookmarks from backup or move them to another computer]] article. For other solutions, see the [[Recover lost or missing Bookmarks]] article.
    Did this fix your problems? Please report back soon.
    Can you locate the bookmarks in the bookmark library?

  • Firefox crashes as soon as I open it, it stays open long enough to see that a bogus toolbar was added on and I suspect that's the source of the problem, but how can I remove the add-on if I can't get FF to stay open long enough to get to the tool bar?

    I downloaded Vuze last night and I think it must have installed some malware because firefox hasn't worked since and a Vuze tool bar has made its way into the browser. I am running a malware scanner but its not coming up with anything. Is there any way to manually delete add-ons or plug-ins or whatever they are without being in the program itself? Thanks!

    I don't have a good sense of what is going wrong.
    Was Firefox stable in step 3 -- open with no sessionstore.js file and then exit?
    If that was stable, it might be easiest to cull the open URLs from your sessionstore.js file and re-open the most important ones manually. You will lose the ''detail'' of your session on those pages (e.g., data you had entered into a form), but if that's okay, it might be the next step.
    I found a script on mozillaZine that will extract URLs from the sessionstore.js file; I just changed the formatting of the output. To run the script:
    (1) Return to your profile folder and rename sessionstore.js to sessionstore.old again, then copy it to a convenient location
    (2) Start Firefox (it should be in a new session)
    (3) Open the following link, select all (Ctrl+a), copy (Ctrl+c) to copy the script to the clipboard: http://dev.jeffersonscher.com/sessionstore_reader.txt
    (4) Open the <s>Error Console</s> <u>Browser Console</u> (Ctrl+Shift+j), click next to <s>Code</s> <u>the caret (>>)</u> and paste, then press Enter <s>or click Evaluate</s>
    (5) A file selection window should appear. Navigate to the convenient location and open sessionstore.old from there.
    (6) As long as the file is not corrupted, a new tab should open with a list of all the URLs the script found in the file. You can save this page for future reference if desired. Also, you can close the <s>Error</s> <u>Browser</u> Console now.

  • Can we place a Tool Bar at the Bottom of the List GUIBB ?

    Hi All,
    I have a requirement to place buttons, Link-to-Action's at the bottom of the ListUIBB.
    By default we will get the Tool Bar at the Top of the List, but in my requirement few actions are at the bottom.
    Is it possible to place Tool Buttons at the Bottom of the LIST ?
    Thanks in Adv.
    Thanks,
    Kranthi 

    Hi All,
    I have a requirement to place buttons, Link-to-Action's at the bottom of the ListUIBB.
    By default we will get the Tool Bar at the Top of the List, but in my requirement few actions are at the bottom.
    Is it possible to place Tool Buttons at the Bottom of the LIST ?
    Thanks in Adv.
    Thanks,
    Kranthi 

  • Allt he links in the header of any websites are not working, I reinstalled fiorefix and it s the same. No problem in others browser. the tool bar is working but not the link sinside the web page located between the top 300px height

    all the links in the header of any websites are not working, the cursor is not changing into pointer and no way to click on any link located at the top of any website page. I reinstalled firefox and it s the same. No problem in others browser. the tool bar is working but not the links inside any web page located between the top 300px height.
    So I can t tlog into any website, i cant write an email as the compose button is located in the top of the page.. Please help, i have all my bookmarks into my firefox...

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • I had on my desk top pc (a vista os) a version of FireFox that the book marks where listed in the book tool bar tab and the "book tool" was able to show all my favs and there was a scrol bar on the right side of the top right side. I would like very much

    I had on my desk top PC (a vista OS) a version of FireFox that the book marks where listed in the book tool bar tab and the "book tool" was able to show all my favs and there was a scroll bar on the right side of the top right side. I would like very much to turn it on in the Laptop I just bought and am having a fit trying to figure out all the differences,.I very much like this function; however, I am now using win 7 which in and of itself is difficult to figure out troubles when they occur such as if the MSN Bing program opens a video window while I am playing, the media center will lock up, or if I am listening to BBradio.org and click on lestening to one of the pastors the laptop will show static on the screen and all you hear is static like you just went to the twilight zone.
    == This happened ==
    Not sure how often
    == unpredictable

    To attempt a new chat session...
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    http://helpx.adobe.com/x-productkb/global/service1.html

  • Problem with tool bar

    Hi,
    I have a problem with my illustrator CS5, the toolbar doesn't show sub-options.
    For example if I click the Rectangle Tool (M) button looking for sub-options (a sub-option is for example the Ellipse Tool (L)), nothing happens. I managed to use the Ellipse Tool (L) through shortcuts, but I want my tool bar to be able to display all the sub-options.
    In other words all the buttons with a little triangle at the button-right corner, are supposed to show sub-options, but they don't.
    I've consulted the problem with one of my co-workers, he suggested installing it all again -> I don't wanna do that.
    Please help.
    Thanks in advance.

    You have to click and hold the button. As an alternative you can alt-click it to cycle through the tools

  • Problem in Query Designer Tool Bar

    Hi
                In BI 7.0, Query Designer Tool Bar unable to see Table View. Is their any patch problem ?.
    Thanks in advance
    Mahesh.

    OSS note: 1002271.
    Reason and Prerequisites
    After much discussion we have decided
    not to include the table mode in BI 7.0.
    Solution
    There is (in our opinion) a better alternative to the table view:
    Create a query with only one structure and use
    Report Designer to design your own table view. This allows you
    to arrange the columns and many other
    formatting and grouping options as you wish.

  • Tool Bar Problems

    While travelling, I logged-in to the Wi-Fi in tmy hotel.  It automatically opens a small tool bar that one needs to use to log-out, and I did so yesterday before I checked-out.  Today, when I opened Safari, this small window/toolbar keeps opening.  When I try to close it, many more keep poping out.  I restarted my Mac, I also cleared the history but it keeps hapenning.  Does somebody know how to fix this problem?  Thanks in advance for your help

    That horrible black band is Yahoo Toolbar.
    You can uninstall it using add/remove programs in the control panel.
    The forward and back buttons should be next to the address bar.
    There is no stop, reload, etc by default but if you right-click near the top of the browser you should get a drop down menu where you can select to display menu bar, address bar,  favourite bar etc. If you select customise you can choose to display the stop buttons next to the address bar.

  • Enabling Tool Bar Buttons for LIST UI for FBI ?

    Hi,
    I have created Actions to a Node 'MNR_SEARCH_RESULT',
    when I Configure LIST GUIBB with this node I made 3 tool bar Buttons for these actions, but when Test the Application tool Bar Buttons are disabled .
    (No data present in the list).
    below are the screen shots :
    How to make these Tool Bar Buttons Enable ?
    How to Create One Click Action in the List ?
    Thanks In Adv.
    Thanks,
    Kranthi.

    Hi Kranthi,
    1. Can you please check the additional settings in FPM list - 'Enable Event on All Selections'?
    2. Check the corresponding FPM view. In 'Action' tab, add the actions and check the checkbox 'enable' .
    Thanks,
    Dhivya

  • New version will not work with yahoo tool bar. How can I fix this problem ?

    I downloaded the new version of Firefox and it will not work with my yahoo toolbar anymore.It worked fine until I updated to the new version. I have went back to the old version 16.0 and now it keeps saying my version is out of date. How can I fix this problem and get the new version to work with my yahoo tool bar?

    For starters make sure you have the latest Yahoo toolbar.
    http://help.yahoo.com/kb/index?page=content&y=PROD_TOOL&locale=en_CA&id=SLN5044&impressions=false

  • How do I control the listing of websites in the "Most Visited" tab in the Tool Bar?

    The tab "Most Visited" appears in tool bar on my screen. This bar is the 4th one down from the top of the screen. I'm unsure how the tab got there or how it functions. It is a useful tool for quickly locating websites I frequently use, but I don't know how to control which sites are listed there. I there some type of automatic function that selects which sites to list there? I can delete sites from the list, but can you set up the tab to only select and keep the ones I want on that list?

    There is no easy way of finding timestamp of Safari history.
    These two threads are from this community.
    https://discussions.apple.com/message/17552960#17552960
    https://discussions.apple.com/thread/1847145
    For other third party suggestions, google it.
    Best.

  • Creative Cloud icon disappeared from Apple Tool Bar after I installed some CC updates. Does somebody know what the problem can be?

    Creative Cloud icon disappeared from Apple Tool Bar after I installed some CC updates. Does somebody know what the problem can be?

    I had a similar issue. I closed the Cloud icon, and when I went to open it again, it just died.
    I uninstalled Adobe Creative Cloud, went to the Adobe CC download page and requested a trial copy of PS, being sure to enter my CC name and password.  It then reinstalled Adobe Creative Cloud, and all is working again (I hope).

Maybe you are looking for

  • New Payment display Closed invoices and amount error ?

    Hi experts, Help, I have a serious stupidity after data migration, I changed the invoices by SQL and at a new payment document it display the invoices already closed and their amounts not corresponding with the real invoices amounts or or retrieves t

  • While loading data in to ODS error?

    Hi, I trying to load CRM datasource in to BI system with ODS.Which i use ODS was relaesed bi BI connect. when i load data from source to ODS...data was transfered up to PSA but failed in "SUB-PROCESSING AREA" with errors as follow: 1)Value of 'M'of c

  • Capture item by Dropdown list in Interactive Form

    Hi experts, I have a problem. I hope to get your suggestion ready.  I created a WebDynpro Abap that contains within it an Adobe Interactive Forms. With the method wddoinit by the component controller I set all values of the fields into interactive fo

  • Gnome problem...

    I cant get access to gnome anymore..i dunno why but after the login session i get dis window: (./xsession-errors file) (gdmflexiserver:3134) : GTK-Warning **: locale not supported by C library using the fallback 'C' locale. /etc/gdm/xsession/ : begin

  • How can i know nokia 6300 code?

    Hi all, i am trying to find nokia 6300 code to check if i can update but for some reson i can't find it under the battery.. in other nokia it was no problem for me... in the 6300 i have no "code". please help thanks