PSD or JPG files not recognized in the organizer after an editing session

Without any obvious reasons, I am now consistently experiencing the following problem (which I never had before):
1) I choose a JPG (or NEF) image from the Organizer (not renamed - as imported from the camera).
2) I use the FIX menu to open the Editor (full edit) to work on the picture.
3) I save my work under a PSD file format in the Editor.
4) When I am getting back to the Organizer, the file does exist but is shown as broken (missing).
The checkboxes for the inclusion in a Version set and the organizer are both checked.
Software: PhotoShop Element 9
Platform: MAC OS X
I’ve seen similar questions asked, but couldn’t find any solution to this issue.
Is it a known problem which has been resolved in Element 10 or 11?
Thanks for your help.

Aha. You have PSE 9 and you actually looked at the saving files preference panel sometime, didn't you? In the mac version, this causes that to happen, because just opening that panel sets PSE to stop adding the file extension when you save.
The solution is to either add it manually each time you save, or to delete the preferences (quit editor, then relaunch while holding down command+shift+option) and never, never open Editor>Preferences>Saving Files again.

Similar Messages

  • Imovie song does not start at the beginning after I edited the duration of the clip

    my imovie song does not start at the begining after I edited the duration of my clips. The audio clip now starts in the middle of the song. This is occuring with the second song in my video. How do I adjust the audio to start at the beginning of the song.

    For pop ups. From your Safari menu bar click Safari > Preferences then select the Security tab.
    Select:  Block pop-up windows
    safari starts always with top page even I have apple.com as a starting window
    Back to Safari > Preferences. This time select the General tab. You can reset your homepage from there.
    history its not saving or at least not showing when i press the thingy that looks like a little book on the tools bar
    That icon represents your Bookmarks not history.
    To view history, from your Safari menu bar click History > Show History
    Or Option + Command + 2 on your keyboard.

  • My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any

    My LR 4 suddenly no longer recognized my memory cards. I am using the same cards and cameras but consisitently get the error message:"files not imported because the files could not be read. they are jpg and nef files...I am stuck without my workhorse! Any advice is helpful. This has never happened in 6 years

    answered in your other thread LR 4 suddenly no longer recognizes files.

  • Intermittent : The term 'get-date' is not recognized as the name of a cmdlet, function, script file, or operable program.

    I have developed a batch harness whereby all scheduled tasks (W2012) invoke a common powershell script that acts as a wrapper to all our housekeeping jobs.
    The first step in the wrapper is to create a Transcript file using following code
    if ($Host.name -ne "Windows PowerShell ISE Host") # Transcript does not work within ISE
    $timestamp = (get-date -format "yyyy-MM-dd-HH-mm-ss.fff")
    $path = "c:\corp\$timestamp" + "_$pid.txt"
    Start-Transcript -path $path -append
    As expected the folder contains files with timestamp & pid in name
    08/08/2013  11:00 AM            14,388 2013-08-08-11-00-01.158_1620.txt
    08/08/2013  11:00 AM            12,506 2013-08-08-11-00-01.485_936.txt
    08/08/2013  11:00 AM            12,994 2013-08-08-11-00-01.735_9328.txt
    08/08/2013  11:00 AM            12,024 2013-08-08-11-00-01.766_8624.txt
    08/08/2013  11:00 AM            13,902 2013-08-08-11-00-01.860_1756.txt
    08/08/2013  11:01 AM            15,142 2013-08-08-11-01-31.392_10120.txt
    08/08/2013  05:00 AM            14,982 _1692.txt
    However note the last file, it has a zero length date time value in the name
    The error recorded by PowerShell is
    get-date : The term 'get-date' is not recognized as the name of a cmdlet, function, script file, or operable program.
    Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At C:\Corp\Powershell\DMPRun-ScheduledTask.ps1:171 char:18
    +    $timestamp = (get-date -format "yyyy-MM-dd-HH-mm-ss.fff")
    +                  ~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (get-date:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    IE get-date has failed and returned a zero length field as the timestamp
    Can anyone think of a good reason why get-date would fail intermittently?
    Do I have to code defensively for base Powershell functions?

    I implemented David's suggestion and now I intermittently get
    import-module : Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    At D:\temp\loop_jc2_2013_11_25_08_55_02.ps1:15 char:1
    + import-module Microsoft.Powershell.Utility
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Import-Module], UnauthorizedA
       ccessException
        + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.Pow
       erShell.Commands.ImportModuleCommand
    I added a trap chain (My Powershell skills do not yet include recursive trap coding, any suggestions welcome)
    trap {
        trap {
            "Trap1"
            "Exception: " + $_
            "Error: " + $Error[0]
            "Message: " + $_.Exception.Message
            "InnerException: " + $_.Exception.InnerException
            "StackTrace: " + $_.Exception.StackTrace
            "FailedItem: " + $_.Exception.ItemName
            import-module Microsoft.Powershell.Management
            import-module Microsoft.Powershell.Security
            import-module Microsoft.Powershell.Utility
        "Trap2"
        "Exception: " + $_
        "Error: " + $Error[0]
        "Message: " + $_.Exception.Message
        "InnerException: " + $_.Exception.InnerException
        "StackTrace: " + $_.Exception.StackTrace
        "FailedItem: " + $_.Exception.ItemName
        import-module Microsoft.Powershell.Management
        import-module Microsoft.Powershell.Security
        import-module Microsoft.Powershell.Utility
    import-module Microsoft.Powershell.Management
    import-module Microsoft.Powershell.Security
    import-module Microsoft.Powershell.Utility
    trap {
        "Trap3"
        "Exception: " + $_
        "Error: " + $Error[0]
        "Message: " + $_.Exception.Message
        "InnerException: " + $_.Exception.InnerException
        "StackTrace: " + $_.Exception.StackTrace
        "FailedItem: " + $_.Exception.ItemName
        exit 1
    get-date
    Now I intermittently get ..
    Trap2
    Exception: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    Error: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    Message: Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    InnerException:
    StackTrace:    at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.Threading.Mutex.MutexTryCodeHelper.MutexTryCode(Object userData)
       at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData)
       at System.Threading.Mutex.CreateMutexWithGuaranteedCleanup(Boolean initiallyOwned, String name, Boolean& createdNew, SECURITY_ATTRIBUTES secAttrs)
       at System.Threading.Mutex..ctor(Boolean initiallyOwned, String name, Boolean& createdNew, MutexSecurity mutexSecurity)
       at System.Threading.Mutex..ctor(Boolean initiallyOwned, String name, Boolean& createdNew)
       at System.Management.Automation.AnalysisCache.CacheExportedCommands(PSModuleInfo module, Boolean force, ExecutionContext context)
       at Microsoft.PowerShell.Commands.ModuleCmdletBase.LoadUsingModulePath(PSModuleInfo parentModule, Boolean found, IEnumerable`1 modulePath, String name, SessionState ss, ImportModuleOptions options, ManifestProcessingFlags manifestProcessingFlags,
    PSModuleInfo& module)
       at Microsoft.PowerShell.Commands.ImportModuleCommand.ImportModule_LocallyViaName(ImportModuleOptions importModuleOptions, String name)
       at Microsoft.PowerShell.Commands.ImportModuleCommand.ProcessRecord()
       at System.Management.Automation.CommandProcessor.ProcessRecord()
    FailedItem:
    import-module : Access to the path 'PowerShell_CommandAnalysis_Lock' is denied.
    At D:\temp\loop_jc2_2013_11_25_09_19_52.ps1:26 char:1
    + import-module Microsoft.Powershell.Security
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Import-Module], UnauthorizedA
       ccessException
        + FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.Pow
       erShell.Commands.ImportModuleCommand

  • I need help! when I am importing my NEF files from my D3300 camera into lightroom 5 and try to use the "copy as DNG" button I always get an error message saying that "saying the file is not recognized by the raw format support"

    I need help! when I am importing my NEF Raw files from my D3300 camera into lightroom 5 and try to use the "copy as DNG" button I always get an error message saying that "saying the file is not recognized by the raw format support". The whole purpose of that button is so that the file can be recognized... How can I make the "copy as DNG" button work as it is supposed too?? Thank you

    Thank you for responding. So I essentially will never be able to use that button in lightroom 5? do I need to get LR 6? Will there ever be an update for LR 5 that will enable me to use it?
    Does DNG Converter work within LR or do I have to upload pictures to my computer and then make a second copy in DNG format. and then go into LR and use them?
    Thank you @dj_paige

  • Just purchased Nikon D610. tried to import 3 images and got this message: The files are not recognized by the raw format support in Lightroom. How do I fix this frustrating problem. Have been using Lightroom for years also Nikon products without any prior

    How do I import images. Have a message that says: The files are not recognized by the raw format suppot in Lightroom. Am using a Mac version 10.9.4. the import is from a new Nikon D610. Am using LR 4.4 Please help Adobe is useless as a support.

    Each camera must be supported explicity and your LR version is years older than your camera.
    According to Adobe's Camera-support page, you need at least LR 5.3 to work with your D610 NEFs in LR:
    Camera Raw plug-in | Supported cameras
    If you don't want to upgrade to LR 5, or can't due to your OS being too old, then it might work to use the latest DNG Converter and create DNGs from your NEFs, which should open in LR 4.x.  You can find the DNG Converter here:  http://www.adobe.com/downloads/updates

  • Im running lightroom 4 and just purchased the Sony A7 and using its sd card. when I   tried to load the photos, I got a message "the files are not recognized by the raw format support in lightroom"

    Tried loading my raw files shot w my new Sony a7 and its sd card into lightroom4. Got a message: "The files are not recognized by the raw format in lightroom"
    Does Lightroom 4 not work with the Sony A7?
    Thanks,

    Lightroom 4 cannot read the RAW photos from a Sony A7
    You would have to download and install the FREE Adobe DNG Converter version 8.5 and then convert your RAW to DNG, and then import the DNGs into Lightroom 4
    You could also purchase Lightroom 5.5, which will have the capability to read the RAWs directly.

  • Canon 7D Mark II error "Files are not recognized by the raw format support in Light (149)"?

    Has anyone tried to load raw files from a Canon 7D Mark II I get an error "Files are not recognized by the raw format support in Light (149)"?

    Based on previous experience, I expect the final versions of LR, ACR and DNGC to be released simultaneously.  We have so far seen Release Candidates of ACR and DNGC but not LR.
    Unless there needs to be a second ACR/DNGC Release Candidate which happens once every few years for special circumstances, which I don't see any of at the moment.

  • The term 'new-object' is not recognized as the name of a cmdlet, function, script file, or operable program.

    I have a script that runs well the vast majority of the time.  On occasion I get an exception.  I would appreciate any insight as to why it fails on occasion.  I can't understand why the new-object cmdlet wouldn't be recognized:
    Message: The term 'new-object' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    Source: System.Management.Automation
    StackTrace:    at System.Management.Automation.CommandDiscovery.LookupCommandInfo(String commandName, CommandTypes commandTypes, SearchResolutionOptions searchResolutionOptions, CommandOrigin commandOrigin, ExecutionContext context)
       at System.Management.Automation.CommandDiscovery.LookupCommandProcessor(String commandName, CommandOrigin commandOrigin, Nullable`1 useLocalScope)
       at System.Management.Automation.ExecutionContext.CreateCommand(String command, Boolean dotSource)
       at System.Management.Automation.PipelineOps.AddCommand(PipelineProcessor pipe, CommandParameterInternal[] commandElements, CommandBaseAst commandBaseAst, CommandRedirection[] redirections, ExecutionContext context)
       at System.Management.Automation.PipelineOps.InvokePipeline(Object input, Boolean ignoreInput, CommandParameterInternal[][] pipeElements, CommandBaseAst[] pipeElementAsts, CommandRedirection[][] commandRedirections, FunctionContext funcContext)
       at System.Management.Automation.Interpreter.ActionCallInstruction`6.Run(InterpretedFrame frame)
       at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)
       at System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame frame)
    Here is the script I am running:
    param([string]$endpoint)
    $ErrorActionPreference = "Stop";
    try
     [System.Reflection.Assembly]::LoadFile("D:\dotNET_Apps\dotNETCOExBatch\DotNETCOExBatch\bin\DotNETCOExBatch.dll")
     $schedule = new-object DotNETCOExBatch.CallService
     $reply = $schedule.CallWebService($endpoint)
     if ($reply)
      $host.setshouldexit(0)
     else
      $host.setshouldexit(8)
    Catch
     $nl = [Environment]::NewLine
     $evt=new-object System.Diagnostics.EventLog("Application")
     $evt.Source="BatchPowerShell"
     $infoevent=[System.Diagnostics.EventLogEntryType]::Error
     $batchException = $_.Exception
     $logMessage = " "  
     while ($batchException)
      $exMessage = $batchException.Message
      $exStackTrace = $batchException.StackTrace
      $exSource = $batchException.Source
      $logMessage += "$nl $nl Message: $exMessage $nl $nl Source: $exSource $nl $nl StackTrace: $exStackTrace" 
      $batchException = $batchException.InnerException 
     $evt.WriteEntry(" Error starting or process cancellation of $endpoint $logMessage",$infoevent)
     $host.setshouldexit(15)

    Hi,
    Please close your current powershell console, and start a new Window, and then check the result.
    Like David replied, this is a strange issue, hard to find the cuase, but I will report the issue, hope
    someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Regards,
    Yan Li
    TechNet Subscriber Support
    If you are
    TechNet Subscription
    user and have any feedback on our support quality, please send your feedback
    here.
    Cataleya Li
    TechNet Community Support

  • Powershell - The term is not recognized as the name of a cmdlet, function, script file, or operable program.

    I am trying to run the following Powershell in orchestrator to move a new user into a specific OU based on the Department field specified by the creator. 
    $dept = {Department from "Initialize Data"} 
    if ($dept -contains 'IT') {$NewContainer = OU=IT,DC=test,DC=net}
    When I run the Powershell it is returning the following
    The term 'IT' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    How can I get it to not try and pass 'IT' as a cmdlet?

    I think I may have actually found the solution I was missing { } around the command
    I encapsulated the powershell in { }
    $dept = {Department from "Initialize Data"} 
    if ($dept -contains 'IT') {$NewContainer = OU=IT,DC=test,DC=net}

  • My exported JPGs are not recognized by Preview or Microsoft applications

    Just converted from Photoshop to Lightroom on my Mac (O/S 10.7.5). I love the flexibility and speed but my exported JPGs are not recognized by Preview or any Microsoft application (Word, PowerPoint, etc). The only applications that will open them are LR or PS. I am exporting them from LR as JPGs.
    What am I doing wrong?
    Help Please

    That's very odd. Could you attach a screen shot of your Export dialogue? Make sure it includes File Settings and Image Sizing:
    You can use the "camera" icon (in the Forum's Reply tool bar) to attach the screen shot.
    Also, it would be helpful to place one of the ill-behaved, exported JPEGs in a service like DropBox and post a link to it, so we can take a close look at it.
    Hal

  • New-MaiboxRestoreRequest is not recognized as the name of a cmdlet, function, script ?

    I have restored successfully an exchange 2013 mailbox database from backup to the recovery database, but when i try to recover a user's mailbox I receive the following error
    New-MaiboxRestoreRequest -SourceDatabase RDB1 -SourceStoreMailbox "testuser" -TargetMailbox [email protected]
    The term 'New-MaiboxRestoreRequest' is not recognized as the name of a cmdlet, function,
    script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
     I already have the "mailbox import export" management role assigned to the logged in administrator.
    Anand_N

    silly me i spelt the command wrong
    Anand_N

  • Hard drive and dvd are not recognized in the setup menu, what could be wrong?

    The hard drive and dvd drive are not recognized on the setup menu for my Pavilion a4316f desktop computer.  Could it be a failure of the controller?  Can a PCI controller be used to replace the mother board controller?
    This question was solved.
    View Solution.

    The Recovery process would erase you hard drive, and attempt to install a fresh OS. Decidely a bad choice if you wanted to save your data files. The Recovery sets are "tattoo" with the BIOS hardwafre configuration. It will not, IMHO, recognize the PCI Sata card.
    You mentioned the Recovery program on the hard drive actually requested the installer of the controller (PCI card). Try running from that.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • Install error during make of Pro*/C++ - file not recognized:

    Say, anyone seen this error during install? The file or directory "proc" is indeed missing... is this a known shortcoming of this release? Can these make errors be ignored?
    Thanks in advance
    Dennis
    Starting install Link Phase of component Oracle Internet Directory Client Common Files
    Starting install Link Phase of component Required Support Files
    Starting install Link Phase of component Oracle Code Editor
    Starting install Link Phase of component Oracle Database User Interface
    Starting install Link Phase of component Oracle Ultra Search Server Rdbms
    Starting install Link Phase of component Enterprise Manager Minimal Integration
    Starting install Link Phase of component Object Type Translator
    Starting install Link Phase of component Pro*C/C++
    Calling Action unixActions10.1.0.3.0 make
         installMakePath = /usr/bin/make
         installMakeFileName = /app/oracle/OraHome_1/precomp/lib/ins_precomp.mk
         installTarget = relink
         installArguments = ORACLE_HOME=/app/oracle/OraHome_1,EXENAME=proc,
         undoMakeFileName = null
         undoTarget = null
         undoArguments = null
         logFile = /app/oracle/OraHome_1/install/make.log
         progMsg = Linking proc
    The output of this make operation is also available at: '/app/oracle/OraHome_1/install/make.log'
    Start output from spawned process:
    Linking /app/oracle/OraHome_1/precomp/lib/proc
    /app/oracle/OraHome_1/lib/s0main.o: file not recognized: File format not recognized
    collect2: ld returned 1 exit status
    /bin/chmod: failed to get attributes of `/app/oracle/OraHome_1/precomp/lib/proc': No such file or directory
    make: *** [app/oracle/OraHome_1/precomp/lib/proc] Error 1
    End output from spawned process.
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'relink' of makefile '/app/oracle/OraHome_1/precomp/lib/ins_precomp.mk'. See '/app/oracle/oraInventory/logs/installActions2005-07-04_09-24-38AM.log' for details.
    Exception Severity: 1
    *** Cancel Dialog: ***
    User Selected: Stop installation of all products.
    Exception handling set to prompt user with options to Retry Ignore
    User Choice: User selected to stop installation of all components.
    Error in invoking target 'relink' of makefile '/app/oracle/OraHome_1/precomp/lib/ins_precomp.mk'. See '/app/oracle/oraInventory/logs/installActions2005-07-04_09-24-38AM.log' for details.
    Unable to read the list of homes from the inventory.

    If your library is in the standard layout of an iTunes folder containing an iTunes Media folder (and you've already copied over the media) then you can simply copy the iTunes library files and album artwork folder across to the new machine recreating the same layout. If the media folder has been split out from the main iTunes folder then see make a split library portable for a way to get the library into a portable form, after which you can copy over the library files.
    tt2

  • New Nikon Df camera RAW files not recognized in Bridge and Photoshop.

    New Nikon Df camera RAW files not recognized in Bridge and Photoshop.  Is there a fix?  Surely Adobe make a mistake and not keep up with Nikon.

    I looked at the current list http://helpx.adobe.com/creative-suite/kb/camera-raw-plug-supported-cameras.html and did not see the Nikon DF listed.
    Would post in ACR forum and see if they know anything more.  http://forums.adobe.com/community/cameraraw

Maybe you are looking for

  • Database hangs after retrieving some records....

    hi, I create a two level B+-tree index, for the first level i'm using key as logical database name, for the second level B+-tree i'm using some other field in my data. I am retrieving the records based on logical database name. I am using C++ to impl

  • Preview Doesn't Load Preview Help

    Greetings: Since upgrading to 10.4.7, I'm unable to bring up Preview's "Help" feature. Other apps do show Help, and oddly enough, in other new user accounts, Preview's "Help" does pop up. Unsure whether this is indicative a subtler problem which is m

  • Is there any Menu exit for VA01?

    hi, Is there any Menu exit for VA01?

  • External mic problem.

    Have a problem with my external mic, it simply doesnt work. I have no problem using it on any other computer but when i put it in my laptop it doesnt record anything. I've tried everything i could think of. Hp Envy 14-2090eo Notebook PC Windows 7 64-

  • Re: Office 365 / 60 Skype world minutes a month is...

    Hi there, I am having the same problem for last six months and but still it is not working for me . I am having 60 minutes each month but when ever I try to call landline number of lisdted countries it always asked for the credit. If you got the answ