Thumbnail not generating

Hi
I am unable to see any thumbnails. I have PSE 7 and this is the first time I am using it.

I have the same probelm from time to time. Original files are saved onto the hard drive from an SD card. When one of those saved files are opened in PSE6 they look normal, and I can adjust them to my hearts content. When I'm finished and save the modified file as a pdf under a different file name (such as xxx_1.pdf for the new saved file to preserve the original which was file name xxx.pdf), the saved file does not show a thumbnail. Yes, I have the preview or thumbnail box checked. When looking at this saved file in properties, it simplly calls it "1 File". PSE6 does not recognise this saved file. However, I can open this saved file using Corel 9.0. If I make no chcanges and save it as file name "xxx_2.pdf", I still do not get a thumbnail and properties calls it "2 File". But, if I save it a third time and call it "xxx_3.pdf", a thumbnail is there and everything works as it is supposed to. I can open this 3rd file in PSE6. I only have to go through this some of the time as there are other occasions where saved files in PSE6 work like they are supposed to.

Similar Messages

  • Thumbnails not properly generating in Organizer 9

    I have a mac with the latest version of Snow Leopard. Since yesterday, when I upload photos to Organizer, the image thumbnails do not generate at a small thumbnail size. Each image has an hour glass on it but the thumbnails of the images do not generate. Thumbnails of images will only generate when I zoom into 1, 2, or 3 images in the oragnizer catalog window. When I want to zoom out to have more thumbnails appear in my catalog window, an hour glass appears again on each thumbnail. This problem only occurs with the images that I have uploaded or edited with PSE since yesterday. Does anybody know how I can fix this?
    Thanks
    Kevin

    Hey,
    Is thumbnail generation complete in your catalog? If thumbnail generation is incomplete, then you will see 'Generating thumbnail' text in status bar.
    If thumbnail generation is complete then it may be possible that your thumbnail database got corrupted somehow. Please to re-build you thumbnail database. 
    For doing so, please navigate to your catalog folder (path of current catalog is mentioned in 'Help->system info->Current catalog'). You will find a file saying 'thumb.5.cache'. Please rename this file (say to thumbs.5.cache_old). Now launch Organizer and wait for thumbnail generation to complete. Once done, please let me know if you still face this issue.
    ~Andromeda

  • Imovie is not generating thumbnails for MPG video files

    Hi everyone,
    I have what I hope is a quick question with an easy solution.  I'm using iMovie '09 8.0.6 to make a movie for my parents of their granddaughter.  Imovie has generated thumbnails for all my video in iPhoto (most of which is .mov format), but two short clips (about a minute in length each) were apparently taken with a different camera and are in .mpg format.  For some reason, imovie is not generating thumbnails for these .mpg videos, though in the past I have never experienced a problem here.  What is wrong? What can I do to get these clips into iMovie or have iMovie generate these thumbnails?
    Thanks.

    No, the orientation is not the issue, The first set of 4 imported videos were from a GoPro 3 camera, and the one that was lost doing an "update thumbnail" operation was also a GoPro3 fie.
    Just now I did another experiment, I chose to update thumbnail from a video file created with my Pentax WG-3 and it worked.
    I updated thumbnail on a horizontal and verticle video from my Galaxy S3, and now those are also gone with no thumbnail...
    So far the only one that actually works for me is the Pentax video, which is a MOV file. , the GoPro 3 and Galaxy are mp4 files, so it's possible that the mp4 format has something to do with it. This is very frustrating losing my thumbnails like this.... Luckily I have not deleted ver11 yet.
    I hope they repair this issue soon.
    Thanks for the help so far,

  • Bridge in CS3 will not generate all thumbnails

    I have a folder of about 1000 images. Most of the images show a thumbnail in bridge; however a few show only a blank with the name of the file under the blank "image". They are all jpeg's and about the same size. If I right-click on the blank "image" I get a drop down box that has "generate high quality thumbnail" as an option. When I left-click on that nothing happens. If I click on edit for one of the images that does have a thumbnail, both "generate high quality thumbnail" and "generate quick thumbnail" are grayed out. When I try to run a slideshow, the show runs, but when it gets to one of the "blank" images all I see is an icon in place of the image. Suggestions?

    Are you using quick thumbnails? Most do as it takes less resources than HQ.
    When in the folder with the problem click on Tools/cache/purge cache for folder xxx. The thumbnails will be then rebuild and see if that solves the problem. Let all the thumbs rebuild completely (spinning arrow on bottom left corner will stop) before carrying out any other operation. You may have a few corrupted files in the cache.

  • Thumbnail not rendered in browser

    I lifted code posted in this forum for creating a jpg thumbnail courtesy of
    --Dmitri Don
    http://forum.java.sun.com/thread.jspa?threadID=223186
    and it works fine to make a nice sharp image.
    I am having a problem with certain thumbnails not showing in the browser. I suspect the size is the culprit but I AM NOT AN IMAGE EXPERT--and have little experience with these APIs. I would deeply appreciate someone's help on this. The thumbnail is being produced, I jsut cannot get the browser to show it for certain files.
    An example for a non working versus working is as follows:
    -working-:
    -original -96KB JPEG
    thumb-I can see size=4014bytes, dimension=100X75 px, type=JPEG and created/modified dates in BROWSER properties(right click)
    -non working-:
    original -670KB JPEG
    thumb-size=Not Available, dimension=20X30(!??) px, type=Not Available and created/modified dates=Not Available in BROWSER properties(right click)
    When I open the 'non-working' thumbnail in an image editor it has normal properties: size=22500bytes, dimension=100X75 px, type=True Color 24 bit(in MS photo editor)
    the code I am using to generate the thumbs:
    try {
    File originalFile = new File(pathToOriginal);
    ImageIcon ii = new ImageIcon(originalFile.getCanonicalPath());
    Image i = ii.getImage();
    Image resizedImage = null;
    int maxSize = 100;
    int iWidth = i.getWidth(null);
    int iHeight = i.getHeight(null);
    if (iWidth > iHeight) {
    resizedImage = i.getScaledInstance(maxSize, (maxSize * iHeight)
    / iWidth, Image.SCALE_SMOOTH);
    } else {
    resizedImage = i.getScaledInstance(
    (maxSize * iWidth) / iHeight, maxSize,
    Image.SCALE_SMOOTH);
    // This code ensures that all the
    // pixels in the image are loaded.
    Image temp = new ImageIcon(resizedImage).getImage();
    // Create the buffered image.
    BufferedImage bufferedImage = new BufferedImage(
    temp.getWidth(null), temp.getHeight(null),
    BufferedImage.TYPE_INT_RGB);
    // Copy image to buffered image.
    Graphics g = bufferedImage.createGraphics();
    // Clear background and paint the image.
    g.setColor(Color.white);
    g.fillRect(0, 0, temp.getWidth(null), temp.getHeight(null));
    g.drawImage(temp, 0, 0, null);
    g.dispose();
    // sharpen
    float[] sharpenArray = { 0, -1, 0, -1, 5, -1, 0, -1, 0 };
    Kernel kernel = new Kernel(3, 3, sharpenArray);
    ConvolveOp cOp = new ConvolveOp(kernel, ConvolveOp.EDGE_NO_OP, null);
    bufferedImage = cOp.filter(bufferedImage, null);
    /* write the jpeg to a file */
    File file = new File(pathToWrite);
    FileOutputStream out = new FileOutputStream(file);
    /* encodes image as a JPEG data stream */
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    com.sun.image.codec.jpeg.JPEGEncodeParam param = encoder
    .getDefaultJPEGEncodeParam(bufferedImage);
    param.setQuality(0.7f, true);
    encoder.setJPEGEncodeParam(param);
    encoder.encode(bufferedImage);
    catch exception...
    thanks
    sgv

    I realized the problem is nothing to do with the code...thanks anyway...

  • Import appears to work but when choose STOP, no thumbnails are generated

    I've been using iMovie 08 to import with Canopus 55 as converter from VHS deck. Yesterday it worked fine and i left my MacBook Pro on overnght. This morning I can choose IMPORT, I've tried adding to existing EVENT and creating new event and the import screen displays the input video but when I hit STOP, the video isn't importing. I have seen the THUMBNAILs being generated screen taking several minutes for a 15 sec clip and no thumbnails appear. OR I hit STOP and the import screen goes blue with STOPPED on it, but no thumbnails are generated. If I need to clear iMovie pref, I don't remember how. Thanks alot.

    Hi JD,
    Do you know what version of flash you were upgrading from?  I want to try to reproduce this.
    In the meantime, if you really need the flash right now, I would suggest downloading google chrome browser.  It comes with its own package of flash and should work despite it not working with your safari.

  • Income tax is not generating on Bonus for second time through off cycle

    Dear All,
    I have an issue related to bonus. We have given bonus off cycle in the month of August 16th  income tax was deducted on bonus amout. Now again mgt is giving bonus through offcycle  in the month of November 10th but the problem is Income tax is not getting calculated in this month for bonus. We have checked the calculations every thing is fine.
    We have created 1 wage type for 1st time bonus as Special Bonus and 2nd time we have created another wage type as Diwali bonus. We have done configuration same as 1st wage type special bonus for Diwali bonus wage type.
    Let me know where it went wrong.
    Rgds,
    Prasad

    Hi Narendra,
    Thanx for the response, i tried the above but not generating WT/460.  can you explain the logic.,
    Changed BON5 to BON3
    created new Tax code ZTDR from STDR
    Assigned Bonus WT ( in 0267) to ZTDR in Table T7INT9
    didn't understand why /401 or MTDR or 9TDR
    Thanks
    Sanm

  • Miro line item not generated

    Dear All,
    I have facing one issue at the time posting in MIRO.
    I post one of migo doc in date 03/01/2010 , the entry is:( with same material )
    Post key   description  amt                               curr.( USD)
    89              Stk.RM -IMP                                     32100.00
    96              PL.VND.RM.IMP GR/IR                     32100.00
    40              Purchase RM-IMP                            32100.00
    50              Purchase offset.                             32100.00
    And Miro Posting on date 23/03/2010
    Post key   description  amt                               curr.( USD)
    31           xyz Vendor                                    32100.00
    86           PL.VND.RM.IMP GR/IR                    32100.oo
    89           Stk.RM -IMP                                    -
    40           Purchase RM-IMP                          -
    50           Purchase offset.                           -
    But when I post for another po in migo on date 03/01/2010
    Post key   description  amt                               curr.( USD)
    89              Stk.RM -IMP                                     76800.00
    96              PL.VND.RM.IMP GR/IR                     76800.00
    40              Purchase RM-IMP                            76800.00
    50              Purchase offset.                             76800.00
    and miro posting on date 19/02/2010
    Post key   description  amt                               curr.( USD)
    32            yz Vendor                                       76800.00
    86           PL.VND.RM.IMP GR/IR                      76800.00
    89           Stk.RM -IMP                                      Line item not generated
    40           Purchase RM-IMP                             Line item not generated
    50           Purchase offset.                              Line item not generated
    Can any one tell why line item not generated for miro posting .
    Regards
    Milind

    Hi,
    The extra line items will be generated when there are any exchange rate diffrences are there then only shows.
    Other wise it wont show those extra line items
    Please check group currency , global currency etc. for  your extra line items

  • XML Publisher question - Not generating a valid XML file

    I am working through an Oracle document that walks you through creating an XML Pub report. I am using HCM 8.9, Tools 8.49.15 and it has XML Pub installed and I have the Microsoft plug-in installed
    I have created a query and have downloaded an rtf template and now am on a page where you enter your data source and then click ‘Generate’ for the sample data file. I did it and it created ‘PERSONAL_DATA_PAY.XML’ which is created from a PS Query. However if I click on ‘PERSONAL_DATA_PAY.XML’ it generates a blocky text file that is not an XML file and I can’t go any further.
    Do you know why it’s not generating a valid XML file when I click on 'generate'?
    Thanks
    Allen H. Cunningham
    Data Base Administrator - Oracle/PeopleSoft
    Sonoma State University

    You mean to say that you create a new data source by specifying Data Source Type as 'PS Query' and Data Source ID as your query name, you are not able to generate a valid XML file (by clicking on Generate link).
    did you cross check your query by running it?
    On field change of Generate link, PeopleSoft uses PSXP_RPTDEFNMANAGER and PSXP_XMLGEN app packagaes and query objects to create the file
    It should work if you query is valid..

  • Inspection Lot not generated, with MIGO 561

    Hello All,
    Please help me with this issue.
    WHen i do MIGO with 561, inspection lot is not generated.
    So there is a setting in spro, if we check that, inspection lot wont be generated.
    So now in my IDES, i tried to uncheck that box.
    When i save this setting, I get the following error.
    "Fill table key for table T156Q only up to position 010".
    Please help with this issue.
    Regards,
    Piyush

    To load initial inventory in Quality stock and release it using Inspection lot  UD,   use movement type 563 instead of 561.
    With 561 movement stock is directly posted to un-restricted status. So there is nothing to be released from Quality stock.

  • Customized Seeded report to XMLP report but its not generating output file?

    I want to customize "Dunning Letter Print from Dunning Letter Generate" Report, which is called from "Dunning Letter Generate" Report
    Steps i followed to Customize reports are.
    1. Changed output format to xml for "Dunning Letter Print from Dunning Letter Generate" Report.
    2. Ran report to generate xml data and using xml data created RTF file
    3. Registered data definition and template with code and short name same which is ARDLP_NON_SRS
    Now while i am running report its completing normal, but its not generating output file giving Error like –
    "Unable to find Published Output for this request"
    “No Output File Exist for Request No - xxxxx”
    No Idea why its not picking template, Can anyone help me in this?
    Using:
    Oracle Applications : 10.0.5.2,
    MS Word 2007
    Thanks,

    I am not giving the solution, providing you a hint..
    This is the query you need to satisfy,
    SELECT NVL(R.DESCRIPTION ,CP.USER_CONCURRENT_PROGRAM_NAME)
    FROM FND_CONCURRENT_REQUESTS R, FND_CONCURRENT_PROGRAMS_VL CP,XDO_DS_DEFINITIONS_B XDS
    WHERE ( ( FND_PROFILE.VALUE('CONC_REPORT_ACCESS_LEVEL') = 'U'
    AND R.REQUESTED_BY = :$PROFILES$.USER_ID ) or
    ( FND_PROFILE.VALUE('CONC_REPORT_ACCESS_LEVEL') = 'R'
    AND R.RESPONSIBILITY_ID = :$PROFILES$.RESP_ID ) )
    AND R.PROGRAM_APPLICATION_ID = CP.APPLICATION_ID
    AND R.CONCURRENT_PROGRAM_ID = CP.CONCURRENT_PROGRAM_ID
    AND XDS.APPLICATION_SHORT_NAME=
    ( SELECT APPLICATION_SHORT_NAME
    FROM FND_APPLICATION
    WHERE APPLICATION_ID=CP.APPLICATION_ID)
    AND XDS.DATA_SOURCE_CODE = CP.CONCURRENT_PROGRAM_NAME
    AND R.OUTPUT_FILE_TYPE='XML'
    AND R.STATUS_CODE not in ('E', 'D', 'T', 'X')
    ORDER BY R.REQUEST_ID DESC
    Go to system profiles and query for 'Concurrent:Report Access Level', responsibility you need and modify the profile name accordingly....

  • MRP is not generating any schedule line in my vendor's scheduling agreement

    Hello all,
    My question is: why the MRP is not generating any new line in my vendor's scheduling agreement?
    This is the scenario:
    I have created a vendor's scheduling agreement with transaction ME31L
    I have created a customer's scheduling agreement with transaction VA31 and those characteristics:
    - Forecast scheduling lines
    - JIT scheduling lines
    - MRP to DS type assigned to type C: Requirements according to forecast delivery/Deliveries according to JIT
    I have run MRP with transaction MD01
    MRP is generating some purchasing requistions, not purchase orders because we have set up a release strategy which requires 2 approvals, but those purchasing requests are not generating any new line in the vendor's scheduling agreement.
    Any idea why it could be? Please do not hesitate to ask for further explanations. Thank you

    Hi,
    Check if stock is available for the material in that plant.
    Also check the requirement date for the material and compare it with the planning horizon for that plant.
    Check your material master MRP view.
    Create source list(for material and plant in question) with MRP indicator 2.
    Thanks and Regards,
    Maheshwari

  • Schedule lines not generated after MRP run

    Dear All,
    I am trying to create Schedule lines through MRP run , but instead system creates MRP element PRqRel  and its PurRqs when i check in MD04 ,  the following are the prerequisite i done before MRP run , but still Schedule lines are not generating.
    1.activated checkbox source list in material master.,Procurement type is F, MRP type PD , lot size MB , marked JIT  Scheduling indicator as 1 in Pur view of material master , no MRP group is used in our process.
    2.Maintained Inforecord.
    3.Maintained source list for the material and marked MRP relevant as 2. Validity also checked.
    4. Quota arrangement for this vendor only.
    5. Created New scheduling agreement.
    6. Material is not sent for subcontracting.
    7. Ran  MD02 with following parameters ,
    Processing key NETCH Net Change in Total Horizon
    Create purchase req. 1 Purchase requisitions in opening period
    Delivery schedules 3 Schedule lines
    Create MRP list 1 MRP list
    Planning mode 3 Adapt planning data (normal mode)
    Please let me know if i am missing something
    Thanks in Advance
    Benny

    Hi,
    Please check the below links...
    Schedule Lines not getting created in MRP
    Schedule Lines not generated for MRP Type PD
    Kuber

  • Lines are not generated for holidays and sundays

    Hi
    creating a sale order shcedule lines are not generated for sunday for a particular plant .
    Schedule lines are generated for subsequent monday only.
    the plant calander  is also  correct
    with regards
    partha

    Hi
    I would really double check the factory calendar ans the  of the plant and sales organisation
    regards,
    Sidi

  • BIP Report does not generate in Siebel 7.8

    Hi Experts,
    We are having a problem not generating BIP report in Siebel 7.8. It says 'failed to generate report'.
    The xdo.log displays
    [100710_043210802][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210802][][STATEMENT] Generating page [4]
    [100710_043210802][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210802][][STATEMENT] Phase2 time used: 16ms
    [100710_043210818][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210818][][STATEMENT] Total time used: 7141ms for processing XSL-FO
    [100710_043210818][oracle.apps.xdo.template.rtf.field.RTFFieldResult][STATEMENT] stylename=Normal
    [100710_043210833][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica closed.
    [100710_043210833][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210833][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Helvetica-Bold closed.
    [100710_043210849][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210849][][STATEMENT] FO+Gen time used: 7172 msecs
    [100710_043210849][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210864][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) is called.
    [100710_043210864][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210880][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210880][oracle.apps.xdo.template.rtf.field.RTFFieldResult][STATEMENT] stylename=Normal
    [100710_043210896][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) done. All inputs are cleared.
    [100710_043210896][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210896][oracle.apps.xdo.template.FOProcessor][STATEMENT] End Memory: max=508MB, total=388MB, free=231MB
    [100710_043210896][oracle.apps.xdo.template.rtf.RTFParagraph][STATEMENT] stylename=Normal
    [100710_043210911][][STATEMENT] PublicReportService::generateReport FINISH and Return BIPReportResponse --- Time Elapse = 149007
    We cannot trace where the error is coming from. Can anyone know that to do about this? Thanks!
    Edited by: user11174318 on Oct 7, 2010 4:58 AM

    Hi,
    Yes, this is fixed.
    The root cause was a security patch from Microsoft.
    The solution:
    - Remove Microsoft Patch KB974455.
    or
    - uncheck the ‘Use HTTP 1.1’ flag under Internet Options > Advanced tab.
    Regards,
    Hakan

Maybe you are looking for

  • Cant figure out how to put songs on Nano!

    Just got this nano, and im somewhat familiar with Itunes.. i JUST donwloaded the latest version, and ive made a new playlist and ive got all the songs i want on my ipod on that playlist.. i try to click update, but my ipod already says do not disconn

  • Why are profile pictures of friends and family not displaying in my facebook anymore

    Something has happened to the display of friends and family profile pictures when they post. It is just written text and I cannot get their picture to display in conjunction with post as it was before.

  • Best app (not TM) for syncing iPhoto library

    I have iPhoto 11 on my iMac. I use Time Machine to backup with the HDD conneted to my iMac. However I would also like to either backup my iPhoto library to my NAS, or to another HDD for offsite storing. I also want to hold my iTunes library too. So I

  • Multiple applications open cause crash

    My mac is crashing when multiple apps are running. It looks like it may be a GeForce problem but I'm not that smart. Any help is appreciated. Process: Safari [13153] Path: /Applications/Safari.app/Contents/MacOS/Safari Identifier: com.apple.Safari Ve

  • Album Art Error Message

    When trying to Add Album art to my iPod, An Unknown error (-50) shows up and the art does not show up on my iPod... help?