Browse image files only - OS X problem

Hello,
Adobe documentation says this should work:
var fileRef = new FileReference();
fileRef.browse([{description: "Image files", extension: "*.jpg;*.gif;*.png", macType: "JPEG;jp2_;GIFF"}])
It does work under Windows, I see only the image files. But it doesn't work under Mac OS X 10.6 (Snow Leopard). Tested on two Mac's, Firefox and Safari but I do not see any files at all, neither image files. Flash is created in CS3, AS2, exported for FP9. Does anybody know how to fix this? It is driving me crazy. :-/
Thanks!

Hey uziel200,
I apologize, I'm a bit unclear exactly what you are seeing, and in what circumstances. If you are talking about what is also referred to as image persistent or ghosting, you may find the information and steps outlined in the following article helpful:
Avoiding image persistence on Apple displays - Apple Support
Cheers,
- Brenden

Similar Messages

  • OCR Image Files only

    I am running Adobe 9 Pro under Window 7. I have a large number of PDF documents, a few of which are image files only which I wish to have OCRed so they are searchable. Is there a way I can do this in batch mode so only the image only files are processed? If this in not possible, can I list the files that have not been OCRed. If I run the accessibility check as a batch command, it generates a large amount of information per file, so I was after a more efficient method.

    Many thanks for this advice, Dave. I had a look at Preflight and would appreciate a little more information if possible. Which specific check did you have in mind? Is it possible to include a fixup as part of the check? And to do this on a group of files, does it require creating a droplet?
    Thanks for your help.

  • Image files email and upload problem

    Emails I send through mail are arriving very compressed. However when I try to upload them onto my webspace they are expanding.
    For example a jpeg 600 x 600px, at a resolution of 72ppi and a file size of 308kb:
    When emailed through Mail it arrives as 240 x 240px, at a resolution of 72pp and a file size of 92kb
    When emailed through my webmail (Virgin) it arrives at the original dimensions and file size
    When uploaded to my webspace using Cyberduck it expands from 308kb to 4GB and an estimated upload time of 18 hours!
    The larger the original file size, the worse the email problem, but the upload remains at around 4GB.
    I suspect that somehow the file is being compressed on arrival because it has expanded as it is being emailed or uploaded.
    My webspace provider says it isn't a problem their end. As things are ok through my Virgin webmail I don't think it can be them - though they are the usual suspects.

    When you email an image in Mail, set the Image Size pop-up in the lower right-hand corner of the window to "Actual Size".

  • Reading only Image Files from a Directory and ignoring the rest

    i am wanting to be able to read a directory but only obtain the Image files (ie, gif, jpeg, tiff, png etc) and ignore all other type of files.
    i have made a custom ImageFIlter class which extends FileFilter which works for adding a photo singly, as only image files are shown in the JFileChooser. however i am wanting to add a folder of photos at once.
    here is the code so far:
    File dir;
                        JFileChooser fc = new JFileChooser();
                        fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
                        //Handle open button action.
                        int returnVal = fc.showOpenDialog(MainAppGUI.this);
                        if (returnVal == JFileChooser.APPROVE_OPTION) {
                             dir = fc.getSelectedFile();
                             if (dir.isDirectory()) {
                                  File[] files = dir.listFiles(new ImageFilter());
                                  for (int i = 0; i < files.length; i++) {
                                       if (files.isFile()) {
                                            try {
                                                 Photo PhotoAdded = workingCollection.addManyPhotos(files[i], canvas.getChangedMaxDim());
                                                 //need to also add it to the relevant vectors, ie
                                                 //for mouse over operations, or photos added after
                                                 //save.
                                                 if(!workingCollection.isDuplicate()){
                                                      photosToCheck.add(photoAdded);
                                                      canvas.addToGrid(photoAdded);
                                                      photosAddedAfterLoad.add(photoAdded);
                                                      canvas.repaint();
                                                 else{
                                                      //do nothing as it is already in the vectors.
                                            } catch (Exception er) {
                                                 // Do nothing. Bad mp3, don't add.
                                       // recurse through directories
                                       else {
                             } else {
                                  try {
                                       throw new IOException(
                                                 "Error loading files from a directory: "
                                                           + dir.getAbsolutePath() + " is not a "
                                                           + "directory");
                                  } catch (IOException e1) {
                                       // TODO Auto-generated catch block
                                       e1.printStackTrace();
    any ideas?

    I'm confused.
    You already ARE using a FileFilter to only pick up image files. Whats the problem?
    If you need to recurse directories you need to change your code only a little.
    Write your method
    JFileChooser fc = new JFileChooser();
    fc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
    //Handle open button action.
    int returnVal = fc.showOpenDialog(MainAppGUI.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
      dir = fc.getSelectedFile();
    if (dir.isDirectory()) {
      scanDirectory(dir);
    else{
      // not a directory
    public void scanDirectoryForPhotos(File directory){
      // taking your code
    if (dir.isDirectory()) {
      File[] files = dir.listFiles(new ImageFilter());
      for (int i = 0; i < files.length; i++) {
        if (files.isFile()) {
    // details deleted
    // recurse through directories
    else {
    scanDirectory(files[i]);
    Your exception handling is a little strange. You throw an exception only to catch it immediately to print a stack trace? Not exactly the most common handling I've seen. You should probably just throw the exception and let the next level down handle it.
    Cheers,
    evnafets

  • How to browse image in NeuronDotNet drawing box

    Problem Statement :
    I am working on OCR application , I am using  “NeuronDotNet”. Currently Application taking input via human input using Mouse Control as show in following figure.
    What I need to replicate human input using browse button option , I want to give image as an input. To do that I have written following code in browse button option.
    Note : picTraining is name of Drawingbox object where I have written A
    This code work fine and give me this output.
    I have following questions.
    1. 
    PicTraining.Invalidate() only clear handwritten A , it doesn’t clear browse graphics. Why it happens , does I have write draw strokes rather than to draw graphics?
    2. 
    This continuous to above query , even this code doesn’t entertain browsed image , it only take mouse drawn graphics, so how I can draw as handwritten ?
    Ali Muhammad

    These forums are for MS products. Please post questions related to third party products in their forums.

  • Error: Unable to locate an image file browser...

    I get the error below when I insert an image element and try to associate a picture to it by either double clicking it or using the browse button in the Draw palette.
    I have looked in my install directory and the "FileSystemBrowser.dll" file is present as well as the "ImageFileBrowserIDL.dll" file, so what gives?
    Running LiveCycle ES2 9.0.0.2.20120627.2.874785

    Hi,
    you should be able to fix that problem by re-registering Designer file browser DLL.
    http://thelivecycle.blogspot.de/2014/02/diy-bugfix-image-file-browser.html

  • When I have video clips on my timeline, they do not play in the monitor screen. I hear the sound track but can not see the image. To test if my new files are somehow the problem, I went back and used video files that I used successfully a year ago, and th

    When I have video clips on my timeline, they do not play in the monitor screen. I hear the sound track but can not see the image. To test if my new files are somehow the problem, I went back and used video files that I used successfully a year ago, and they no longer play in the monitor window. I hear the sound track, but do not see any video. Have I changed some setting that controls video playback in the monitor window?

    Randy Ruttger
    Thanks for the follow up.
    Missing in this equation were the version of Premiere Elements that you were using and the computer operating system on which it was running. But...
    The deed is done. But.....Until now and after you went ahead and moved to version 12, we now learn what version of Premiere Elements you were using. We still do not know the computer operating system involved.
    You just said Premiere Elements 10. Premiere Elements 10 is hit by a serious known display issue if the computer uses a NVIDIA GeForce video card/graphics card. In this issue, the only remedy is to roll back the driver version to about May 2013. The description of the problem and how to do the roll back are described in one of the Announcements at the top of this forum. What video card/graphics card does your computer use?
    On another front, Adobe will be releasing a new version of Premiere Elements any day now. No one but Adobe knows the feature set for the new version. That type of information is announced at the moment of release of the new version.
    So the remedy to the problem that you presented in this thread could have been...
    1. Rolling back the NVIDIA GeForce driver version to about May 2013 if possible (Windows 8 or 8.1 64 bit, may not be possible)
    2. Move to another version of Premiere Elements (which you did)
    I offer the above for consideration so that you can review your decisions. We are pleased to learn that Premiere Elements 12/12.1 works for you.
    Please do not hesitate to ask questions and ask for clarifications, but remember that the answers are in the details.
    Best wishes,
    ATR

  • Problem in using different format for Image files

    We are generating a report wherein the logo (Image File) is changed with respect to the company's location.
    Here, we are making use of a Text field using a formula column as its source for getting the file path.
    When the Size is kept as "Expand" or "Variable", then, when the image size changes considerably, it gives problem, wherein the logo is not displayed.
    Then we increased the size of the logo field and kept thte size type as Fixed. But the probnlem which we face is because of the .bmp format which the report accepts.
    This is because, when the format type is bmp, upon increasing the resolution or size of the bmp increases the size by several folds( say from 70kb to almost 1000 or 1500kb) which leads to the error "Memory cannot be read" and leads to abrupt application termination.
    Is their any way by which i can make use of GIF format for the image file and at the same time change the file name at runtime.
    Eagarly waiting for an early solution.
    Thanking you in Advance,
    Ramnath Balasubramanian

    Hi,
    You can only use one Apple ID with iTunes match. Purchasing another match subscription using wife's Apple ID is not a solution. I can only suggest that you use your ID for match and all iTunes music purchases.
    Jim

  • IWeb site update problem-app missing images/files, but site is ok

    I created and uploaded a web site to my .mac (yeah, MobileMe) and it displays just fine. I have visited it from a couple of different comps. The problem is that I want to add/update files/pages, but when I open iWeb, several of the images/audio files do not display: shows a x-through and a centered question mark. They are in the sites idisk folder and in the laptop's copy of the files. When I try to replace the missing images/files by dragging onto the iWeb drafting page the following message appears: "the file can't be used because you don't have access privileges, or because it contains no content or was corrupted."
    I'm afraid to make any updates for fear of losing what is already published.
    Extra info: have family pack and am switching between .mac accounts because iWeb published to the iDisk corresponding to the account/sub-account you are logged into (BIG pain in the ***! It should have a password protected account toggle like Panther used). I have double-checked that the files for this site are only in the one iDisk account (am redirecting my masked domain url to the .mac iDisk server-works great.
    Any ideas?

    The upgrade from '06 to '08 which changed the domain.sites to a domain.sites2 caused more confusion, disasters and lost web sites than the bug ridden introduction of '09.
    I ended up rebuilding all my sites from new, blank domain files in '08 and the conversion to '09 went OK apart from '09's nasty habit of changing media file links.
    Fortunately, I have very little QuickTime content and don't use the iWeb Photos, Albums Blog or Podcast templates.
    Most iWeb built sites look pretty awful when users stick to the default page width. I start from a Blank, Black or white page and trash everything on it.
    I use the "standard" 980 px page width and most, if not all, of the iWeb themes do not adapt to this.
    This is why I constantly ask the question. "Do the iWeb developers actually build any websites with the application?".
    Perhaps if they did, we would get more bug free releases and some of the features that "real life" users are requesting.

  • Elements 9 Organiser "Copy new files only" problem

    Whenever I import pictures into Elements 9 Organiser it still imports pictures that I've previously imported even though in the Preferences "Copy new files only (ignore already imported files" is ticked. I have to deselect all the pictures and reselect the new ones. Never was a problem with Elements 5 & 6.
    Any suggestions..??

    In the download dialog box, have set any constants like owner or copyright fields?
    Once you have downloaded the image for the first time, do you make any changes to the original in PSE?
    Brian

  • Disk Utility problems/making a good image file problems

    Hi,
    I am trying to make a disk image with Disk Utility. But every time when I run the program, it gathers disk info for a long time and then shuts down in unexpected error. What can be the problem here?
    The reason that I want to make a disk image of my cd is this, maybe someone knows a solution for this problem well.
    I have the original game cd of Alone in the Dark 1. I played this always on my pc in the past and now, with the help of a program called Boxer that allows to run dos games on the mac, it can run on my mac, but, the music cannot be found. According to the makers of Boxer this is because the music on the cd is separated from the rest of the data as audio tracks. I'm not a programmer so I don't understand everything behind this, but they advised me to make image file of the cd, mount it and then run Boxer with this mounted file.
    I cannot do this however, because Toast doesn't make a good image file that includes the audio tracks and Disk Utility is shutting down with an error all the time. Maybe someone knows another solution?
    Best wishes,
    André

    Maybe, but this cd if from 1992, did they do that already those days? However, I can make with Toast an image from the game, but the soundtracks are not included then. I can listen to the tracks in Itunes, they are visible like a normal audio cd. My only wish... is to play the games. Visiting the past, so to speak. And I can not play it on Windows, because it is not supported anymore after dos left the stage and I tried so many bootdisks on my pc, nothing works. Boxer therefore was a good help. The music though brings live to the game...

  • Problems with the number of image files

    Hi
    I am currently working in Quark and I have a big problem. Quark can't handle my 250 page, 700 image files document. If I try just scrolling through the documents from start to finish Quark crashes, and it doeesn't even create a rescue file. Now in the Quark forums they tell me to split the document into chapters. Chapters are fine if you are working with others on a projects as it lets different people work on different parts of the book at the same time. But this is all me, and I do A LOT of scrolling back and forth to cross check facts and so on. Having to constantly switch between files would be a huge pain. How would ID handle a document of this complexity?
    Sincerely
    Geir Rosset
    Oslo
    Norway

    But this is all me, and I do A LOT of scrolling back and forth to cross check facts and so on. Having to constantly switch between files would be a huge pain.
    I guess it's a matter of work styles, but I'd much prefer to switch around among a batch of open chapters with a simple key combination, as opposed to scrolling back and forth through pages in linear fashion.
    How would ID handle a document of this complexity?
    With the limited information you've offered, I'd say I have experience with similar documents, (product catalogs/pricelists), that ID handled just fine, and other cases in which seemingly simple files choked it. I can say the same of Quark. No one can answer your question definitively; there are too many variables. Chances are it's not (only) the size and complexity of your document in itself that are causing your problems. There can be any number of hardware or OS issues contributing, to name a couple.

  • CS3 Extended having problems opening image files.

    I had a CS3 Master Collection from The Art Institute forced us to buy that I had never opened because Photoshop 7 worked fine & I didn't need all the other crap that came with CS3 in the Master Collection. So I had been using Photoshop 7 for years & years, but when I got a new computer, Photoshop 7 didn't work anymore. If you can't tell me what's wrong with CS3, maybe you can tell me how to get my old 7 working on 64 bit windows?
    Getting this stuff out of the way:
    *Brand new computer, Windows 7 Pro, 64 bit.
    *Adobe Creative Suite 3 Master Collection, installed about 3 months ago.
    *CS3 Extended was working just fine for 1 or 2 months with no problems.
    *Problem: CS3 stops responding or hangs exsessively when opening image files.
    *Already tried alt/ctrl/shift reset.
    *Already deleted all the printers.
    *Already tried the tilde in front of the TWAIN.
    *This Master Suite takes like 3 hours to install, so reinstalling is something I'd rather avoid.
    *Yes, it's updated.
    *Yes, the licence was renewed.
    PSE Error Log:
    2011:06:05 23:52:09 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:53:08 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:53:55 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:54:19 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:54:54 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:05 23:54:54 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:05 23:54:54 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:55:02 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:05 23:56:22 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:56:49 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:57:17 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:58:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:58:17 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:58:43 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:05 23:59:51 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:00:34 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:00:58 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:01:26 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:01:54 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:02:18 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:02:54 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:03:21 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:05:20 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:05:33 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:06:00 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:09:33 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:16:38 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:20:43 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:22:23 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:23:42 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:25:42 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:31:55 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:34:05 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:35:05 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:37:58 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:38:31 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:39:38 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:40:06 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:40:45 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:41:12 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:41:59 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:42:58 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:44:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:44:31 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:46:09 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:46:47 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:48:18 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:51:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:51:54 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:54:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:56:09 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:56:42 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:57:16 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 00:57:36 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:06 03:22:50 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:06:17 02:18:38 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:17 02:18:38 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:06:17 02:19:00 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:01 05:01:58 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:01:59 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:01:59 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:01:59 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:00 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:00 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:00 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:01 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:02:03 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:04:02 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:10:44 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:01 05:13:42 : ..\winsupp\Printing.cpp : 1297 : REQUIRE failed
    2011:09:03 22:18:39 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:18:39 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:26:03 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:26:03 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:26:49 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:28:02 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:28:02 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:03 22:28:29 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:04 21:18:10 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:04 21:18:10 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:05 15:49:01 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed
    2011:09:05 15:49:01 : ..\..\le\sources\ExifSupport.cpp : 2866 : REQUIRE failed

    Terabyte drive. 80% free space.
    Yeah, I reinstalled. Can't believe I had to go through 4 discs to reinstall one program for the suite.
    Reinstalling windows is overkill when" error check," & "SFC /scannow," & "boot repair" are sufficient.
    Found out that it WILL work if you don't have a browser window open, but I like to listen to stuff on the net when using photoshop. I dunno why the browser makes photoshop refuse to open or create new images, but it would be helpful to know.
    Also, despite not having a printer, the error log seems to indicate that it's part of the problem.
    Oh, I forgot to mention that I did defrag after reinstalling. I know someone will bring it up if I don't.

  • APEX File Browser ITEM - select only XML Files

    HI ALL,
    I have problem with File Browser Item.
    How to I use file browser item select only xmlfile (*.xml)?
    Edited by: Mahir M. Quluzade on Nov 29, 2010 2:33 PM

    Try using the attribute<tt>accept</tt> attribute using the item's HTML Form Element Attributes:
    accept="text/xml"but note the warnings about poor browser support.

  • Nokia Asha 200 image file format problem

    hello. I just bought a Nokia Asha 200 recently, and I am happy with it. The only problem that I am currently having is with my phone's captured image's file format. It used to be .jpg and then it suddenly became .nrw and I can't open it when I tranfer the images to my computer. Whenever I convert it it just becomes black. I restored the factory settings of my phone but the format is still .nrw.
    I want to know what caused it and how can I revert back the image file format to .jpg.
    Thank you so much in advance.
    Good day.
    Solved!
    Go to Solution.

    Because Nokia s40 Phones automatically Enhancing the Image Captured and reduces it's size. The reason why you're Photos is in .nrw format because you didn't wait to process it. Follow these steps so it won't occuring again On the Camera Choose Options > Settings > Image Preview > Choose End Manually. Then wait for pictures to be processed you captured (sometimes you will notice that the image enhanced). It also can be done in the background. Hope it Helps.
    I love T9 Bar Phones | I used to be a Sony Ericson fan before but they leave the low end Phones so I have to switch to Nokia | LG Optimus L5 II and Nokia 206 3

Maybe you are looking for

  • Quicktime 7.2 upgrade

    I downloaded an upgrade for quicktime 7.2 yesterday. Now quicktime wont open. Get an unexpected quit when I open it. Downloaded Perian and still no joy? Can't play anything and my sound seems to have gone as well. Would appreciate any help.

  • SAP BRIM with FICAX and DIMPS  in a single ERP system

    In our existing the ERP system, the DIMP (Industry extension)  business function set is activated, but we are not using any features or capabiliities that DIMP offers. We now plan to use FI-CAX, Does any one know how to deactivate DIMP and turn 'ON'

  • Macbook osx does not see the printer on my xp pc

    After hours I managed to connect my macbook to my PC (wireless ethernet network)and share folders bothways. But now I have another obstacle to overcome. I cannot print from macbook to a canon ip8500 printer connected (via USB) to my PC (Xp pro sp2).

  • "None of your preferred networks are available" But they are!

    This is the one problem that most bugs me with my MBP, i was hoping that 10.5.2 would fix it, but it does not. I use my MBP on two wireless networks. They are both airport expresses with different SSIDs. The first (work) is one airport express and my

  • Ph without camera compatible with whatsapp

    Im looking for a nokia non camera phone compatible with gprs & whatsapp?