mouse over swatch names gone

I'm running a Windows PC and then the CC installation my ability with the mouse on the color chart to see a preview of names there disappeared.  My colleague on a Mac is not the same problem.  There seems not to be a setting in Photoshop and the same problem following on Illustrator.  Any suggestions?

Thank you

J

Hello

Check if 'Show ToolTips' is enabled in preferences > Tools section

Thank you

Tags: Photoshop

Similar Questions

  • Vista will not display description of the file on mouse over. File name, Type, size, and Date modified see the upward, but no description.

    Vista will not display description of the file on mouse over. When I mouse over, a pop-up window displays showing: file name, Type, size and Date of change, however, it does not show the description of the file.

    So, for example if I have 5 files on different types of screw - the description tells me that the size of the screws. IE. 1.5 mm or 1. 8 mm.

    Update: try to get the description of the file displayed messing around in the file properties, now out of 10 records, only 2 includes the name of the file in the mice on the pop-up window. So now what lack us, it's the file name and the Description file.
    Help, please...

    Description of the file in as long as this is not one of the available variables, which can be shown with ToolTips - but there are others who could easily serve the same purpose. Here are the options:

    Consulted
    Attributes
    Created
    DocAuthor
    DocComments
    DocSubject
    DocTitle
    Modified
    Name
    Size
    Type
    To write

    Here is an article on how to change what is shown. http://www.ghacks.net/2008/02/10/customize-windows-explorer-tooltips/ . It is to change the registry, make sure you so first back it up before doing anything so that you can recover in case you make a mistake (or do the right thing, but it does not work as expected). http://www.instant-registry-fixes.org/how-to-backup-windows-vista-registry/ .

    I hope this helps.

    Good luck! Lorien - MCSA/MCSE/network + / A +.

  • Mouse over a photo & name appears?

    I have GoLive CS2 and you want to use to make the popup of the person's name in a group photo when I move my mouse over them.  Any help appreciated.

    Make the picture an image map. Draw parts of link in different faces. In each case make the connection, the null link - # then enter the Alt text and title to meet the different browsers.

  • View content on mouse over

    Hello gurus
    I have a requirement.
    I need to display the content when I move my mouse over the title of my reports (as in OBI Apps). I have custom reports for which I need to add content and also for instance, view this content for about 10 seconds.

    Help, please

    Hello

    Not sure if this is possible in OBIEE out of box.

    However, you can use the script below to get what you are looking for in 10g. Check the screenshot of the solution - http://i54.tinypic.com/ilj6o1.jpg.

    {code}Steps to implement:* Add a 'Static Text' view to your report and add the above content in it. Check the 'Contains HTML Markup Option' here.* Here you need to change 3 values for each report where you want to implement this solution:- line 2 : var rptTitle = "Actual Title of the Report";- line 3 : var title = "The content you want to display on mouse hover"; - line 4 : var displaySavedName = "yes/no" ; Mention "yes", if report title uses Saved Name of Report, else mention "no"* Next, go to compound layout and this Static Text view below the title view of the report.
    
    Let me know how it works for you.
    
    Also, it would be difficult (I guess impossible) to change the time for which the tooltip displays in IE. It's default is 6 seconds. However, in Firefox the tooltip displays as long as the user holds the mouse over the item displaying the tooltip.
    
    Hope this helps.
    
    Thanks 
    
  • Question on mouse over and mouse on

    I am a beginner in flash and I'm doing a project involving overs of mouse for my class. But the functions I wrote are not yet called, it's like the mouse over event listeners are not yet there. I'm trying to make it work with a clip that contains text in. I have the code in a file separate as3. Any ideas? Yes, the movieclip has the name of the appropriate forum. The path displayed in the output no window more. What I am doing wrong?

    Here is the code that I use, I have only included what is relevant:

    instructionsText.visible = false;

    instructionsText.addEventListener (MouseEvent.MOUSE_OVER, showText);

    instructionsText.addEventListener (MouseEvent.MOUSE_OUT, hideText);

    function showText(event:MouseEvent) {}

    trace ("mouse in");

    instructionsText.visible = true;

    }

    function hideText(event:MouseEvent) {}

    trace ("mouse over");

    instructionsText.visible = false;

    }

    I'm asking all the code.  If my eyes is missing something, the code you show in your first post is fine.  If the code is fine then it must therefore be a disconnection between the code and the object that it is targeting.

    Since you have not informed of everything, I guess that you get any error messages.  For any error introduced, there may be a few reasons I can think of as to why the subject doesn't react.

    It would be to have an object that blocks access to the object, such as another object that has an alpha value of zero so you don't see it.

    Another would be if you happen to have handled the object in the timeline panel, such as the instance that you interact with is not the same as the code is to work with.

    Now, after writing all the other option that might get in the way of things is if your object is not visible... looking at your code from earlier, it just occurred to me that you have the object that you want to interact with turned invisible.  An invisible object is unable to interact with a mouse.  You will need to use its alpha instead of its visible property property if you want to interact with him.

    instructionsText.alpha = 0;

    instructionsText.addEventListener (MouseEvent.MOUSE_OVER, showText);

    instructionsText.addEventListener (MouseEvent.MOUSE_OUT, hideText);

    function showText(event:MouseEvent) {}

    instructionsText.alpha = 1;

    }

    function hideText(event:MouseEvent) {}

    instructionsText.alpha = 0;

    }

  • Visible image on mouse over

    I created a calendar and I have a series of images that appear on mouse over for some items in the timeline panel. My code works, but I'm trying to understand if there's a way to do what I'm trying to do better. Basically, I have everything I want to do is play a clip of the invisible to the visible.

    Right now I have only 10 buttons and I can add, but the code is already very long. Is there a way I can use variables and strings with math or something to only use a function instead of a single function for each button?

    Here is my code to work:

    tl1_mc. Visible = false;
    tl2_mc. Visible = false;
    tl3_mc. Visible = false;

    tl1_btn.addEventListener (MouseEvent.MOUSE_OVER, overtl1);

    function overtl1(event:MouseEvent):void
    {
    tl1_mc. Visible = true;
    }

    tl1_btn.addEventListener (MouseEvent.MOUSE_OUT, offtl1);

    function offtl1(event:MouseEvent):void
    {
    tl1_mc. Visible = false;
    }

    tl2_btn.addEventListener (MouseEvent.MOUSE_OVER, overtl2);

    function overtl2(event:MouseEvent):void
    {
    tl2_mc. Visible = true;
    }

    tl2_btn.addEventListener (MouseEvent.MOUSE_OUT, offtl2);

    function offtl2(event:MouseEvent):void
    {
    tl2_mc. Visible = false;
    }

    tl3_btn.addEventListener (MouseEvent.MOUSE_OVER, overtl3);

    function overtl3(event:MouseEvent):void
    {
    tl3_mc. Visible = true;
    }

    tl3_btn.addEventListener (MouseEvent.MOUSE_OUT, offtl3);

    function offtl3(event:MouseEvent):void

    {

    tl3_mc. Visible = false;

    }

    .. .and so on for each image I want to display

    Thank you!

    tl1_mc.visible is tl2_mc.visible = tl3_mc. Visible = false;

    for (var i: int = 1; i<>

    This ["TL" + i + "_mc"] .addEventListener (MouseEvent.MOUSE_OVER, overtl);

    This ["TL" + i + "_mc"] .addEventListener (MouseEvent.MOUSE_OUT, offtl);

    }

    function overtl(e:MouseEvent=null):void {}

    var n:int=int(e.currentTarget.name.substr(2,1));

    This ["tl" + n + "_mc"] .visible = true;

    }

    function offtl(e:MouseEvent=null):void {}

    var n:int=int(e.currentTarget.name.substr(2,1));

    This ["tl" + n + "_mc"] .visible = false;

    }

  • Can not good press the mouse on the name of the file and get the option of e-mail

    Can not good press the mouse on the name of the file and get the option of e-mail

    Hello! If I understand your question, you want to right-click on a file and attach it in Mail. To do this, click on the file with two fingers on the touchpad, or control + click on the file, select 'Share', then 'mail '.

    I hope this helps!

  • I used once this add that when I mouse over a word/link, a pop up will show the meaning/image of the word, or results of the research. What is add?

    I am looking for this particular add on or application that allows me to pass my mouse over a word or link and a pop up will appear next to such word or link showing either an image or Word or a look at the link. Sometimes it displays suggestions of sites related to the word (almost similar to the search results). I've used it before, but I can't remember what it's called. I would like to use it again.

    Hello. I had a quick glance I think I found something that can help. An add-on called "Wiktionary and Google Translate" give a go. You can find it here.

    Feel free to let the developer of the addon of the comments if you wish. It looks really useful, I might be tempted to use this myself.

  • How can I get the status bar below to see the date when I mouse over it?

    The lower right corner of my screen shows the current time. Sometimes, when I mouse over it the day and date appear, sometimes not. Can I do this more coherent?

    This is not a built-in function. Are you positioning the mouse over the taskbar Windows XP, or if it displays on the bar of Firefox Add-on?

    For the Windows taskbar, if a ToolTip shows in a few seconds, I usually the mouse on something else and then try to return to it to see if it works on the second...

  • How can I stop Firefox access to the content of the web pages when I mouse over the link?

    I have disable link prefetching and yet Firefox beta version for OSX 29,0 always tries to access a web page when I move the mouse over a link on a Web page.


  • How to get rid of search bars that appear on the images after you mouse over them?

    When I mouse over any image on some sites an 'x' in a black and white circle appears in the right corner of the image and a search bar in the left corner. Mouse research leads to a drop-down list with about three links box. By clicking on the "x" close the search bar, but how I keep from always appear? Very annoying when on a page with multiple images (e.g. browsing someone Photo Gallery on DeviantArt)

    It's weird - if you run a search, what is sought?

    This is probably a feature of an add-on. You can view your add-ons and initially disable all non-essential and unrecognized plugins and extensions.

    Firefox orange (or the Tools menu) button > addons > Plugins category

    Firefox orange (or the Tools menu) button > addons > Extensions category

    After restarting Firefox, if the display persists, could you post a screenshot of it and see if anyone recognizes? This article may help: How to make a screenshot of my problem?

  • Meta text not showing on mouse over

    Some sites (for example, http://xkcd.com/789/) to add more information, etc. When you run the mouse over the image text meta. This feature does not work for me.

    Images of comics have a title attribute and display the ToolTip to the overview for me.

    I see that you have installed Google toolbar and the extension has been reported to cause problems with the ToolTip does not.

    See Troubleshooting extensions and themes and problems of hardware acceleration to resolve common Firefox problems

    You can try to uninstall and reinstall the last GT, which has been reported to work.

    http://www.google.com/tools/firefox/toolbar/FT5/intl/en/
    http://tools.google.com/tools/firefox/toolbar/FT5/intl/en/install.html
    
  • Photo balloon with mouse over.

    Hello

    I'm sure this has been answered before, but after a long search, I have exactly what I'm looking for, so that's.

    I want to have an image pop up when a user "hovers mouse over" a command or the indicator on a façade for a time.

    I am a beginner @ labview so be very descriptive if you can.

    Signed NOOOOOB!

    It must be backsaved. He loses the functionality in the translation because things did not exist in LabVIEW 7.1. However, by looking at the code, the mode of operation is that it displays makes a web browser on an indicator of the photo control. The intention is that it can display animated GIFs. If all you want to do is viewing a static image, then you can do something like the example attached.

    FYI: To save the screws in earlier versions of LabVIEW, you can post a request in the thread Downconvert VI requests .

  • Mouse over the action in Windows Explorer

    Hello

    I would like to know if it is possible to create a script to change the text displayed in the pop-up box is displayed on a mouse over action in windows Explorer?

    Now I can see things like 'Type', 'Authors', 'Size' and 'Update' by default, however, if could change this I might add meaningful text to describe the contents of the file without having to see it. For example, I would add ' Note: Table 14.2.1.1' in a particular file so that it appears in the pop-up window when I do a mouse over action.

    Any help gratefully received.

    TIA.

    Those who can be changed inside the file in the design program. In this case, Microsoft Word.  While you have the file open in Word, click the file menu at the top and then choose about.  You will see the available metadata fields that can be edited.  A fixed set of these will also show in the ToolTip.

    In your file Explorer, you can also surface several of these data by turning on your details pane, that in Windows 7, shows at the bottom of the file (footer).

  • Hierarchy Viewer mouse over a missing

    I use jdev11.1.1.9.

    I tried the component hierarchy Viewer. I don't see the problem described below:

    «"At run time, when a user moves the mouse over a node of any level of zoom, a window hover display the contents of node at the 100% zoom level is displayed automatically, allowing the user to see information complete regardless of zoom level.

    In the old version of jdev as 11.1.1.6, it works.

    Someone knows why he went? or I missed something?

    Thank you

    Your showDetailItem should have the property stretchChildren set to true.

    Otherwise the tab does not stretch its content.

Maybe you are looking for