List of definitions - no scroll of colors

I have a list of definitions of color that matches my standard swatches in Illustrator.

I want to go and thin a few shades of old/obsolete (color definitions).

I've recently upgraded to FrameMaker 11. I can't scroll definitions of color name field. I use the drop down arrow to dig into the list, but the list itself will not scroll. Hovering on the scroll arrow does nothing. Clicking just above selects this color at the bottom of the list.

Ideas? Is there another way to scroll through the list or the list?

I'm in FrameMaker 11.0.1

Display > colors > definitions...

If you are unsure about the colors you have more, you can save on .mif and clean the result in a text editor. Open the edited .mif in FM, check for surprises, and then save as FM save backups of first, of course; -.

Tags: Adobe FrameMaker

Similar Questions

  • Substitute CellRenderer of the list but keep the default background color

    I set up a custom CellRenderer class to apply a different font when rendering a list. But the default background color disappeared as well. It was a pure white when the custom CellRenderer class was created.

    How could I apply the custom font for a list, but keeping the default background of display (dark and light gray on the lines of even / odd)?

    Thank you very much for your help!

    Implemented as a cellrenderer alternation. Then simply change the font.

  • To help Dreamweaver CC 2014.1.1, when I select a set of paragraphs to turn into a list of definitions and select Format - lists - definition lists, I get the tags < dl > but do not get the < TD > or < dd > tags?

    I've used before in earlier versions of DW and it worked fin.  I tried tonight with CC 2014.1.1 or view creation or in codeview with the same results.  I choose the < p > tag text start at the tag < /p > final and then in the menu choose Format - List - list of definitions and get only the < dl > tags.  All this experience?

    Thank you!

    This is how it works in CS6, too.  And it's not just for definition lists.  This is the result expected any list type that you use.   DW knows not where the DTs and DDs begin and end because you have highlighted an entire paragraph and asked DW format as a distribution list.

    I code my own definition of lists in general.  It is faster.

    Nancy O.

  • Photosmart HP 7520: AdobeRGB1998 is not a choice in drop-down list HP Photosmart printer 7520 features color management

    Is there an available profile or other way to get Adobe RGB (1998) appear in this drop-down list?

    The corrected version of gamma is slightly different from the workspace I use in Photoshop.

    Any help is appreciated.

    Hey Joe,

    Welcome to the Community Forum of HP.

    You can take a look at the following...

    It was written to explain the use of ICC profiles on your printer Photosmart 7520; Maybe you can extrapolate what you need for the Adobe RGB profile special that you want to use.

    Management of color printers

    Click on the thumbs-up Kudos to say thank you!

    And... Click on accept as Solution when my answer provides a fix or a workaround!

    I am happy to provide assistance on behalf of HP. I do not work for HP.

  • The Windows scroll bar color changing

    Hello

    Is there a way to change the default color of the scroll bar in the windows?

    Thank you.

    Nelly

    It's actually a under HKCU\Control Panel\Desktop registry setting, but please note that the scroll bar shares the same color as the buttons ("3D objects" in fact), so that your other components of the window will be will share the same color.  There is no way, without counting as WindowBlinds from StarDock software, change the color of the scrollbar independently.

    If it solves your problem, click on the link "Propose as answer" below and vote as useful by clicking on the green triangle for the lelft. Thank you!

  • Images on the screen in the list update only after scrolling to the rank of the list instead of updating automatically after each image is uploaded (delayed image loading)

    1. I started a lazy image loader to download images in drawListRow and passed the url of the image to download reference.

    2. After downloading the respective bitmap in the lazy image loader, I cancelled the list (called by using a reference to the screen where images are to shoot) using a thread event as follows:

        UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                    _list.invalidate();
                }
            });
    

    But my images are updated on the screen until I scroll over the line in the list.  I also tried to use _list.invalidate (index) to invalidate each line once the image is drawn to this particular line, but it does work and does the same thing as _list.invalidate ().

    I want the images to be updated without scrolling, and as soon as they are downloaded. How do I get there?

    Valuable contributions will be highly appreciated.

    UiApplication.getUiApplication () .invokeLater (new Runnable() {public void run() {_list.invalidate ();})            }        });

    use invokeAndWait instead of invokeLater and check if it works or not?

  • Name of tables listing the definitions of Web Forms row\column\POV

    All,

    We have some applications planning and a lot of Web forms to allow entry in varied combinations of row\column\POV. Users, it is difficult to locate the correct online with the combination of right row\column\POV form, to allow them to enter data and have to open\close a large number of Web forms before they find the right pair they need\want.

    I know that the relational component of a planning application includes many tables store the definitions of Web forms, etc.. I would like to know where I could find a list of the tables that contain the definitions row\column\POV of each Web forms for each planning application in order to quickly identify the correct webforms who could access their data entry of support staff.

    Thanks in advance.

    JBM

    I think the feature is available for a long time even since version 9

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Point wrong list in Nimbus ListCellRenderer custom background color

    Hello

    I did a lot of research on the web being lead to what happens here. It seems that other people have had the same problem that I had, but in the only place that seems to nail the issue directly, it seems not be solved. The problem is that I use a JPanel as a ListCellRenderer for a JList. I use Nimbus Lebanese armed forces, and my problem is that the background of the Panel does not seem to have its background color set correctly. I call setBackground on it and it should be the establishment of a DerivedColor which is pure white, but he seems to have no effect. Manually dialing the white setBackground works, but it also means I've now hardcoded color in it, I'm currently doing. Here's some code to reproduce the problem:
    import java.awt.Component;
    import java.awt.EventQueue;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.ListCellRenderer;
    import javax.swing.UIManager;
    import javax.swing.UIManager.LookAndFeelInfo;
    import javax.swing.border.Border;
    
    public class ListTest extends JFrame {
    
      private JScrollPane scrollPane = new JScrollPane();
      private JList list = new JList(new String[] {"TEST 1", "TEST 2"});
    
      private class Renderer extends JPanel implements ListCellRenderer {
    
        private JLabel text = new JLabel();
    
        public Renderer() {
          add(text);
        }
            
        public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
          
          setEnabled(list.isEnabled());
    
          Border border = null;
          if (cellHasFocus) {
            if (isSelected) {
              border = UIManager.getBorder("List.focusSelectedCellHighlightBorder");
            }
            if (border == null) {
              border = UIManager.getBorder("List.focusCellHighlightBorder");
            }
          } else {
            border = UIManager.getBorder("List.cellNoFocusBorder");
          }
          setBorder(border);
    
          // set renderer values
          text.setText((String)value);
          text.setFont(list.getFont());
     
          if (isSelected) {
            setBackground(list.getSelectionBackground());
            text.setForeground(list.getSelectionForeground());
          } else {
            // the color returned from list.getBackground() is pure white
            // but the list items appear with a grey background!
            setBackground(list.getBackground());
            // THIS works -- but is obviously hardcoded
            // setBackground(Color.WHITE);
            text.setForeground(list.getForeground());
          }
    
          return this;
        }
      }
    
      public ListTest() {
        list.setCellRenderer(new Renderer());
        scrollPane.setViewportView(list);
        add(scrollPane);
        pack();
      }
    
      public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
    
          public void run() {
    
            for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
              if ("Nimbus".equals(info.getName())) {
                try {
                  UIManager.setLookAndFeel(info.getClassName());
                } catch (Exception ex) { }
              }
            }
    
            new ListTest().setVisible(true);
          }
        });
      }
    }
    Here's a StackOverflow question is exactly what I saw, but does not seem to be solved exactly: http://stackoverflow.com/questions/2787781

    Any ideas would be greatly appreciated!

    Thank you!
    // the color returned from list.getBackground() is pure white
    // but the list items appear with a grey background!
    setBackground(list.getBackground());
    // THIS works -- but is obviously hardcoded
    // setBackground(Color.WHITE);
    

    Then when hard-code you the background you use a Color object.

    Did you add debug information to see what type of class list.getBackground () return?

    If it is a class of fancy which range from color, you can always create your color object using:

    Background color = new Color (...)

    All you have to do is get the RGB values of the color list object.

  • How do you create content to list of contacts of scrolling in Flash style.

    Looking for a help/code for the creation of scrolling content to flash iOS that resembles the functionality of the list of contacts, ipod, etc. etc. etc..

    Drag and drop now but its not nearly as nice as the typical effect on the phone.

    http://code.Google.com/p/AS3-iPhone-scroll/

  • How can I move in my email back to my Inbox list without having to scroll to the left on my tab bar. I couldn't find anything in the keyboard shortcuts.

    I don't know there is a simple toggle to put in my list of emails in my Inbox, and the list of files. But I'm not. Any help will be greatly appreciated. 8.1 user to win.

    Thank you

    Terry

    I keep multiple tabs open because I'm collecting items that I want to send my brother at a later date.

    I guess I could "tag" them. I'll have to read on the tags function to see if it will work better for me.

    Or I could create a directory for him and move the mail, a message at the same time as I read them.

    The method I use won't cut it.

    Thanks for the help, I actually had my problem solved.

    Terry

  • Where can I get a list of definitions for appeals, actions and used functions?



  • Definitions of color display does not scroll

    I am trying to solve some errors of incompatible color definition

    I used the file > import > colors that solves a large number of them

    but there is one that I can't even view them in a file that is complaining about this

    and I can't use the view > color > definition to remove

    Since the menu drop-down does not scroll I can't what to expect, it's a more complete list of colors for this file

    Name: drop-down menu arrow to scroll, but clicking on it brings color to the arrow that he not more colors

    The answer was shown to me through a cat from Adobe Support.

    Of all things, he must use the arrow keys on the keyboard to scroll through the list of definitions of color. The mouse does not have to scroll.

  • Class CellRenderer custom - lines get drawn on when scrolling in list

    Hello

    Before you start, I have a background in Java and I am new to Flex, so that might be already known.

    I extend the CellRenderer class, and thought I'd share what I've learned and maybe someone will show what I'm doing wrong. I found that when you have a list that you can scroll up and down, the elements of the list just get drawn again and again, so if you have a text on a cell and scroll to the top and down the text becomes illegible. See Image:

    To resolve this problem, I ended up adding a feature to remove all the children in the drawLabel() function: (my application displays the content of twitter)

    public class TweetRenderer extends CellRenderer
    {
        public function TweetRenderer()
        {
            super();
            this.label.visible = false;
        }
    
        override protected function onAdded():void
        {
            super.onAdded();
        }
    
        override protected function onRemoved():void
        {
            super.onRemoved();
    
            this.clear();
        }
    
        override protected function init():void
        {
            super.init();
        }
    
        override protected function drawLabel():void
        {
            this.clear();
    
            super.drawLabel();      
    
            if(this.data)
            {
                var tweet:Object = this.data.data;
    
                var profilePic:Image = new Image();
                profilePic.height = 48;
                profilePic.width = 48;
                profilePic.x = 10;
                profilePic.y = 10;
                profilePic.setImage(tweet['profile_image_url']);
    
                var text:Label = new Label();
                text.x = 10*2 + profilePic.width;
                text.width = this.width - text.x;
                text.wordWrap = true;
                text.htmlText = "" + tweet['from_user'] + " " + tweet['text'];
    
                this.addChild(profilePic);
                this.addChild(text);
            }
        }
    
        protected function clear():void
        {
            while(this.numChildren > 0)
            {
                this.removeChildAt(0);
            }
        }
    }
    

    There is also a print function, you can override, you may have to experiment with that a little bit? I come from a background of Java as well and I have not really understood the logic of the CellRenderers as well. Sometimes it seems just so random.

    So, I have a list that displays images and text, it is for me to post my code base:

    package renderer
    {
        import flash.display.Bitmap;
        import flash.display.Shape;
        import flash.text.TextFormat;
    
        import flashx.textLayout.formats.TextAlign;
    
        import qnx.ui.display.Image;
        import qnx.ui.listClasses.CellRenderer;
        import qnx.ui.text.Label;
    
        public class PreviewListRenderer extends CellRenderer
        {
            private var image: Image = new Image();
            private var text: Label = new Label();
            private var background: Shape = new Shape();
            private var myFormat:TextFormat;
            private const rectWidth:int = 22;
            private const rectHeight:int = 16;
    
            public function PreviewListRenderer()
            {
                super();
                image.y = 0;
    
                myFormat = new TextFormat;
                myFormat.size = 9;
                myFormat.align = TextAlign.CENTER;
                myFormat.color = 0xFFFFFF;
    
                background.graphics.beginFill(0x000000);
                background.graphics.drawRect(0,0,rectWidth,rectHeight);
                background.graphics.endFill();
    
                this.label.visible = false;
            }
    
            override protected function onAdded():void{
                super.onAdded();
                addChild(image);
                addChild(background);
                addChild(text);
            }
    
            override protected function onRemoved():void{
                super.onRemoved();
                removeChild(text);
                removeChild(background);
                removeChild(image);
            }
    
            override protected function drawLabel():void{
                super.drawLabel();
                if(data){
                    if(data.icon){
                        image.setImage(data.icon);
                        image.width = data.icon.width;
                        image.height = data.icon.height;
                        image.x = (this.width - image.width)/2;
                        image.y = (this.height - image.height)/2;
                        text.x = image.x;
                        text.y = image.y;
                        text.text = data.label;
                        text.format = myFormat;
                        text.width = rectWidth;
                        background.x = image.x;
                        background.y = image.y;
                    }
                }
            }
        }
    }
    

    I have no question as you mentioned.

  • Automatic scrolling of the list of favorites on the start menu to stop before you reach the bottom

    I open the start menu, point the mouse on the Favorites bar and keep the cursor under the small arrow pointing down at the bottom of the list of favorites, as well as the list of bookmarks automatically scrolls down. But after scroll down a number of bookmarks, automatic scrolling stops before reaching the bottom of the list of favorites, view the rest of the empty list. I removed a lot of unnecessary bookmarks in the Favorites folder in Documents and Settings, but this does not resolve the issue. I would like suggestions for this problem, which I have not come across so far. I ran CHKDSK disk cleanup and defragged the volume of disk hard, but in vain. I have Windows XP Pro SP 3 with IE8 installed on my computer.

    THIS POST has BEEN contrary to the ETHICS of COPY AND published by www.qnundrum.com on its website. I don't know how to report this error to Microsoft. Anyone can report to Microsoft?

    Hi ErhanKarabekir,

    Run a full scan of the computer with the Microsoft Safety Scanner to make sure that the computer is virus-free.

    Microsoft Safety Scanner: http://www.microsoft.com/security/scanner/en-us/default.aspx

    Security Scanner warning: there will be data loss through an analysis using the Microsoft safety scanner to eliminate viruses as appropriate.

    Thank you.

  • Adding items to the QNX list without scrolling

    Is it possible to update the items in a list of qnx without scrolling of the list in article 1?

    I have a list of qnx that retrieves its list items in a stream, and if the list item has been scrolled, beyond every time that I update the dataprovider, it automatically reloads the list with 1 point on the screen.

    HM sounds quite interesting. what I would do is to find something to defines a set of data apart from others and makes every single tweet. There is probably an ID of the API or something. then id have a separate table, keep track of all the IDS in your current list. from there whenever u 'referesh' you can check if you got the identifiers in the new list differ from your current table of ID. If they are separately add each individual tweet of the new incoming list using the addItem() method instead of reset your entire dataprovider. hope that helps some. Good luck!

Maybe you are looking for

  • How can I save my Notes on my Mac?

    Hello. I wanted to disconnect from iCloud, but I got a message saying "If you stop using iCloud for Notes, notes stored in iCloud will be deleted from this Mac". So, before you do anything else, I would save my Notes on my Mac. Is it possible to do?

  • Updated graphical waveform constantly with digital I/o

    I'm new to Labview and I try a digital waveforms graph to update in real time after the analysis of the data of a digital acquisition of data from input to output.  Is this possible or real time update can only be done with graphics?

  • Scope of Lecroy error 85

    I'm starting a project to automate certain measures using Labview 2009.  My Lecroy SDA 18000 is recognized by MAX VISA TCP/IP and seems to send the chains survey welcome back.  I downloaded the LCWAVE driver that is supported by NEITHER.  When I try

  • Taskbar not clickable when I start up.

    I recently restored my computer laptop back to factory settings a few days ago and when I turned it on I couldn't click on anything on the taskbar. I rebooted my laptop to see if it was just a bug, but when he started toward the top this happens agai

  • HP Advisor error

    Recently, I got an error trying to open HP Advisor: An error has The object initialization failed (ISupportInitialize.EndInit). Invalid URI: the format of the URI could not be determined. Error at object "Advisor.MainFrame.Windows.DockViewWindow HP"