Not showing icons in Cs5

I am useing Photoshop CS5 as I use to use Photoshop7.When I had my psd files in folders I was able to see a thumbnail of the pic that was on the file.Seeing now I switched over to CS5 the only thing I see is the Photoshop icon and not the thumbnail of what on the psd file.How can I fixed this? I am useing Windows 7 Pro 64bit.When I was useing photoshop 7 on windows 7 I was able to see the pic but seeing I got rid of it now I cant.

Adobe used to supply a codec to generate thumbnails for Explorer.   They no longer do.
There are good 3rd party codecs available to fill the bill.  My personal favorite is a product called the FastPictureViewer Codec Pack.  It's inexpensive and perfectly stable (I've been using it for years with Windows 7 x64.
-Noel

Similar Messages

  • My mac book pro load system and not show icons only show pointer

    my mac book pro load system but not shows icons only show pointer

    Can you open Applications by navigating to the Applications folder via the Finder? When you write that your computer doesn't show icons, do you mean your Dock icons? Can you see the Dock as all?
    Need just a little more information...
    Clinton

  • LaunchPad Does Not Showing icons Of Few Apps

    Hi Guys I Got A Realy Bug Problem, Launchpad does not showing icons on some apps, but names - it does.
    its realy annoying, here is picture of the problem(maybe in file not so sure):

    So here is very simple solution to the problem... i just did on my MBP  and it worked
    Open application folder --   if you have launchpad icon on your dock - good   if not then drag the icon ( rocket icon) from application folder  to Dock. 
    Now, whatever icon is missing, drag that icon from Application folder to the launchpad icon on the dock.  Then check if the icon is visible now by clicking on launchpad button or F4 key.
    For me it worked flawlessly.
    let me know

  • Lighting effects not showing up in CS5

    This plug-in is not showing up on both CS5 and CS 5.1 running on a MAC OSX 10.6.7 Italian system. I have tried both from the Italian versions of PS and even from one new version in English of PS5.1 and it isn't to be found under the menu "rendering" or enywhere else. I see that it is in the plug.in folder and the folder of lighting effects is there as well, but it just doesn't show up. Any ideas about this bug? I've tried it on 3 different computers!

    As far as i know, the lighting effects filter only works in the 32 bit version of
    photoshop cs5/5.1 on a mac system.
    http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7959a.h tml
    There is also a photoshop macintosh forum (you posted in the photoshop elements forum)
    http://forums.adobe.com/community/photoshop/photoshop_macintosh
    Added: If you have the extended version of cs5, you might experiment using 3d lights
               for lighting effects, which works in the 64 bit version of cs5. Turn your layer into a
               3d postcard and use the 3d lights for various lighting effects.
    MTSTUNER
    Message was edited by: MTSTUNER

  • Radial filter does not show in Photoshop CS5

    Hi,
    I am using the trial of LR5. I have made some adjustments with the Radial Filter. When "opening as a smart object in CS5," the radial filter adjustments do NOT show up. Crop does, basic exposure adjustments, but no radial filter.
    Anyone know why? Would it show up in CS6? I do not want to go to CC.
    Thanks much for your help.
    MF

    Just so you understand, LR5 can pass the Radial data to ACR 8.1 in CS6, but you won't be able to alter the radial filters (or any of the LR5 only features) unless you go to ACR 8.1 in Photoshop CC. So, a SO in ACR 8.1 in CS6 will still be limited in terms of what you can and can't do in CS6.

  • Scanner not showing up in CS5 Extended after installing Illustrator 6

    I have been working with Photoshop CS 5 Extended without any problem. I installed the TWAIN driver for it and when I go to FILE ---- IMPORT My scanner would show up and I could scan right ionto photoshop. That's how I like to do it.
    I installed Illustrator 6 the other day, and when I went to scan something into Phostoshop CS 5 today, I noticed that my scanner was not in the FILE ------- Import menu. I can see that the TWAIN file is where it's supposed to be in the plug-ins - Import Export folder.
    Why is it not showing up in my Photoshop FILE ---- IMPRT menu?
    Is it because I have CS5 and Illustrator 6?
    Is it a 64-bit mode --- 32 bit Mode thing? I tried to switch it to 32 bit mode, but there is no choice for it under the GET INFO menu.
    Please help me find a way so I can scan directly into Photoshop CS 5 again using my FILE -- IMPORT menu button.
    Thanks in Advance

    Some more info is needed and it wouldn't hurt if we saw install logs.
    Mylenium

  • Dvt alert not showing icons on graph

    I am showing icons on the line graph with the help of dvt:alert component. Code snippet:
    Alert map:
    public Map getAlertMap() {
    Alert alert1=new Alert();
    //alert1.setXValue("2011-10-05 10:25:34");
    alert1.setXValue("20");
    alert1.setYValue(48.00);
    alert1.setId("al1");
    Alert alert2=new Alert();
    // alert2.setXValue("2011-10-06 12:56:09");
    alert2.setXValue("25");
    alert2.setYValue(39.00);
    alert2.setId("al2");
    Alert alert3=new Alert();
    alert3.setXValue("2011-10-07 12:5:09");
    alert3.setYValue(39.00);
    alert3.setId("al1");
    alertMap.put(1, alert1);
    alertMap.put(2, alert2);
    alertMap.put(3, alert3);
    return alertMap;
    Graph data:
    public List getLineGraphData() {
    Object [] a = new Object[]{"10","20","30","40"};
    // Object [] b = new Object[]{"USD","","",""};
    Object [] c = new Object[]{32.00,48.00,39.00,47.00};
    for (int i = 0; i < 4; i++) {
    lineGraphData.add(new Object[]{a[i],null,c});
    return lineGraphData;
    Jsff:
    <dvt:lineGraph id="lineGraph1" subType="LINE_VERT_ABS"
    tabularData="#{pageFlowScope.DatapointsChartBean.lineGraphData}">
    <dvt:background>
    <dvt:specialEffects/>
    </dvt:background>
    <dvt:graphPlotArea/>
    <dvt:seriesSet>
    <dvt:series/>
    </dvt:seriesSet>
    <dvt:o1Axis/>
    <dvt:y1Axis/>
    <dvt:legendArea automaticPlacement="AP_NEVER"/>
    <dvt:alertSet alertMap="#{pageFlowScope.DatapointsChartBean.alertMap}"/>
    </dvt:lineGraph>
    The same code is working in different project while its not working on my application. I doubt whether its an issue with adf library or web.xml entry.
    I am able to see graph but not icons. Can someone help me in this, and please tell me what adf libraries are requried for dvt:alert which is different from dvt:lineGraph

    Very strange!
    It should be safe to remove the file. As for the icons being gone, click on Finder in your dock, then go to the "Finder" menu, right next to the  in your menubar. Select "Preferences..." In the window that appears, make sure the boxes are checked that refer to the icons that should show on your desktop.
    If that doesn't fix it, try creating a new user account on your Mac.
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8235.html
    Log into that account and see if icons show up on your desktop. If so, there might be a problem with the preferences and settings files in your original user account.
    Let us know if that helps!

  • Subversion plugin // 11.1.1.1.0 not showing icons in app nav

    Hi,
    I am using Subversion plugin with JDev 11.1.1.1.0 but it does not show Subversion related overlayed icons in app nav (e.g. a file is modified etc.)
    If i use Jdev 11.1.1.3.0, i can see the icons. I was wondering if there was a bug in 11.1.1.1.0 Subversion plugin. I cannot upgrade to Jdev 11.1.1.3.0 because of production support and must stay on 11.1.1.1.0.
    Any help from the QA or Susan Duncan's team would be helpful.
    Thanks,

    Tried that several times John. Tried again after you asked me to. Even created a new directory etc. and checked out from SVN. Not sure what is going on.
    Ok, i found a workaround.
    Tools->PReferences->Versioning->General->Env Settings uncheck overlay icons and labels hit ok
    and then again, do the same thing but this time check the icons to make sure icon and labels are used.
    This works for me.
    Thanks,
    Edited by: user8565698 on Nov 3, 2010 3:57 PM

  • Firefox not show icon pictures in some website

    Firefox not show any icon pictures in some website :
    firefox :
    http://s11.postimg.org/kpllr7aib/image.png
    chromium :
    http://s6.postimg.org/gwz0d029d/image.png

    Those pages on Github use an Octicon font where a special glyph is selected via a class name.
    *https://github.com/styleguide/css/7.0
    Make sure that you allow pages to choose their own fonts.
    *Edit > Preferences > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"

  • Mediamind not show in Flash CS5

    Hi guys,
    The .mxp is installed (showing up in extension manager) but not showing up in Flash.
    Tried restarting Flash, un-installing + re-installing .mxp, reboot.
    only see the old version of eyeblaster workshop...I've read the related forum topics and the installation guide.
    as I can do to fix it?
    thanks!!!

    Yes it is listed in other softwares like photoshop and it is also in TTF format.
    Photoshop: Font showing up
    Flash CS5: Font not showing up

  • Neo office documents not showing icons

    I have a few spreadsheets and when i open the folder they're in the icons show correctly for a split second and then show as blank paper.
    Just saved a new "text document" in neo office to the desktop to test it and it does the exact same thing
    any ideas whats causing this?

    do other icons show up ok? do you have 'show icon preview' option turned on? try turning it off in Finder view menu->show view options.

  • Software downloads mount drive but do not show icons to drag into applications folder

    I downloaded Flash this weekend and Logos 5 today. Both downloaded and the drives mounted, but the drives did not show the software package to be dragged into my application folder. In the case of Flash, the folder header was there, but the space below, where the Flash app was supposed to be was blank. In the case of Logos, when I opened the drive, the only thing visible was the arrow between the app and the shortcut to the applications folder. There was nothing to grab and drag either. Any ideas for me?

    3rd party software uses all kinds of different ways to get installed.
    Some provide installers you double click on inside the mounted .dmg.  And to keep things interesting, different vendors use different installer utilities
    Some include an Alias pointing at the Applications folder.
    Some just give you the App and you figure out what to do with it (if you are lucky, these sometimes include a README file that tells you want you should do).
    This is life outside the Mac App Store.

  • Please help me I do not show icon "next " if you want to export "share " a video file

    Hi,
    I purchased the program motion 5  from Apple Store
    But I have a problem does not appear Icon " next " if you want to export "share " a video file
    I experimented with the trial version before to buy the full version
    Now I am very disappointed because all attempts failed
    I have read some of the solutions in this site but to no avail
    Thank you in advance for helping me
    Said

    There is no trial version of Motion 5.
    What exact "Share" option are you selecting to use?

  • HELP: "Fitting" toolbar buttons not showing up in CS5

    Hi All,
    I can't figure out how to get this to work. The toolbar buttons in CS5 are a bit different than those that show up when I am in CS4 and I am not familiar with the changes.
    I like the "fit content to frame", "fit content proportionally", etc. as toolbar buttons.  I know there are keyboard shortcuts for these, which would be faster to learn... but I just don't work that way... I'm a visual person, I need to see and click on the buttons. But my CS4 buttons are gone in CS5.
    How do I get the fitting toolbar buttons back when I have selected an image that I want to modify?
    Thanks in advance!

    NVM... I answered my own question. The toolbar buttons that I was looking at were really there, but I just couldn't see them because too much space on my toolbar was taken up by stuff I don't use frequently.   Once I removed the extras that I didn't want, they appeared!

  • HTML Responsive Layout for tablet and phone is not showing icons correct on a converted help file

    I am using the Responsive HTML Layout in RoboHelp 11.  On all of my new help files, the layout works great and my icons are showing appropriately.  On all of my old help files that were converted, my icons do not fit within bar for the tablet and phone.  I am using the Government Theme (Theme2_Government), but modified the file to have our colors and logos.  I exported the .slz file and I am using the same slz file in all of the help files.  The only help files that are cutting off the icons are the help files that were converted from previous version of RoboHelp.  Any idea why this would happen?

    This is from the converted file showing the icons that are cut off in the blue bar.
    This one is from a new help file and the icons fit within the blue bar.
    The same thing happens the phone layout with the bar at the bottom.

Maybe you are looking for

  • Delete original file (from camera)

    Hi all, I use iPhoto and Photoshop on my Mac for different purposes: iPhoto for family events and travel that I won't be doing much (if any) editing to, and Photoshop (Elements 7) for my hobby photography pictures. I got on Photoshop this morning to

  • Unable to close iPad2 attachments

    I am brand new to the apple community, so please bear with me for the newbee question. After configuring my brand new iPad2 yesterday to sync with my mail provider, I opened an email attachment and I am unable to close it. When I press and hold the t

  • I am traveling from the US to France and have a Macbook Pro. Can I just use a plug adaptor or do I need a power converter to plug in?

    I am traveling from the US to France and have a Macbook Pro. Can I just use a plug adaptor or do I need a power converter to plug in?

  • Date format in query results

    HI, newbie to sql and Oracle. Quick question, my associate and I view date and timestamps in the same column in our db tables. We can run a query requesting date and time returned in sqlplus and it displays the date then the time. However, running th

  • System restore...I've got a bad feeling about this...

    I've downloaded 10.7.2 on my three Macs, an MB Air and a Mac Pro both at home and in the office.  The office Pro has seen some significant issues since the update.  After the update, my iPhoto was broken--it would not import photos either directly fr