File saved as .5 file type with CS5, How to Open in CS5

I've been working on a certificate and i saved it without looking at the file type. For some reason it set the file type to (.5). What is that? Is there any way I can open it again in CS5? Is there a file converter I could use. I just need to basically open the file agian in CS5 so I can continue to edit the certificate. I have tried opening the file with CS5 and CS6 and I get this message:
"Could not complete your request because it is not the right kind of document."
Thanks!

That's the problem I saved it in Photoshop CS5 and It wont let me open it in that. The message:
"Could not complete your request because it is not the right kind of document."
Pops up when i try to open it with Photoshop.

Similar Messages

  • How to open a CS5 file on computer without photoshop?

    I tried saving files as PDF and JPG but when I try to open the documents on a computer without photoshop (a windows version), they will not open. Isn't there some generic form of PDF or JPG files that can be opened on all computers?
    I only see "save as Photoshop PDF" or "JPEG". Even the regular JPEG option still needs photoshop in order for it to open. Is there a plain PDF option?
    Someone help please! Respond on here or <<private email is discouraged>>.

    Edit: I tried saving files as PDF and JPG but when I try to open the documents on a computer without photoshop (a windows version)
    Both PDF and JPG should meet those requirements anyway.
    The PDF should be able to be opened with Acrobat Reader at the least (maybe you should check if it is the current version).
    You could try using File > Save for Web & Devices to create a smaller JPG, though.

  • On samsung n120 with hyperspace - how to open the update file

    My Samsung N120 has a Hyperspace os. When i clik on the update file to open; says that i need another program to open. So i can't open it.
    thanks.

    You should do a search on the forum before posting your qestion as this has been the subject of discussion in many threads.
    Basically you need to do 2 things:
    1st Thing:
    Look at FileFilters, extend the class File Filter, for example :
    public class XmlFilter extends FileFilter {
    // Accept all directories and ONLYxml files.
    public boolean accept(File f) {
    if (f.isDirectory()) {
    return true;
    String extension = XmlFilter.getExtension(f);
    if (extension != null) {
    if (extension.equals("xml")) {
    return true;
    } else {
    return false;
    return false;
    // The description of this filter
    public String getDescription() {
    return "Xml files only";
    * file to retrieve file extension from a file.
    * Used for filtering in file chooser.
    public static String getExtension(File f) {
    String ext = null;
    String s = f.getName();
    int i = s.lastIndexOf('.');
    if (i > 0 && i < s.length() - 1) {
    ext = s.substring(i+1).toLowerCase();
    return ext;
    2nd thing)
    then on you filechooser :
    myfilechooser.addChoosableFileFilter(xmlFilter); // only xml files
    Check out Swing by Matthew Robinson/ Pavel Vorobiev (published by Manning) who cover this quite well.

  • Re: Microsoft Word file saved to skydrive, file now won't open on iPad?

    I created a file using the Microsoft Word app on my iPad mini, when coming to save the file on my SkyDrive it took longer than usual, but says on the 'recents' list it identifies the source location of the file within the SkyDrive. However when I click to open the file it begins downloading then says "Sorry we cannot open the file..."
    Is there any way I can retrieve the file? Any help would be appreciated as it has important work on.

    Try renaming the file just (filename).key instead of .key.zip then send and import

  • How to Open Photoshop CS5?

    I have been talking to PS Tech.Serv. for a week and they have no solution. I installed PS CS5. When I try to open Photoshop or Bridge I get a message, "This application failed to initialize properly (0xc000001d). Click on OK to terminate the application. I have Windows XP. HELP!

    Edit: I tried saving files as PDF and JPG but when I try to open the documents on a computer without photoshop (a windows version)
    Both PDF and JPG should meet those requirements anyway.
    The PDF should be able to be opened with Acrobat Reader at the least (maybe you should check if it is the current version).
    You could try using File > Save for Web & Devices to create a smaller JPG, though.

  • Lightroom doesn't open image in Photoshop CS5 but does open PS CS5

    I just installed CS5 and uninstalled CS4.
    Now, Lightroom 2.7 when in try to "Edit in Photoshop CS5" Photshop CS5 does open, but the image I am trying to edit does not open in PS-CS5 .  Photoshop just opens and the image from Lightroom is not present.
    Looking at previous threads I have tried the solution:
    Mac OS
    On Mac OS, try the following solutions in order:
    Solution 1: Rebuild the Photoshop plist file.
    Close Photoshop Lightroom.
    Navigate to the Users/[username]/LIbrary/Preferences folder.
    Drag the com.adobe.Photoshop.plist file in the Trash.
    Start Photoshop. Photoshop will recreate the plist file.
    I have updated LR , Mac OS and PSCS to all current versions
    Any other ideas to get LR2.7 and PS CS5 to work together again ?
    Thanks,

    I did delete the LR plist file,
    And yes I have the latest version of Camera Raw updated and installed,
    but the Lightroom still opens PS CS5 but will not open the image too.
    Any other sugestions
    Thanks,

  • App Files Saved as XML and Working with New Versions

    We work with app data in the form of array of large clusters and use LV Anything to XML conversion VIs to save to disk.
    The problem is when new app versions are developed and changes are made to the cluster format; we want the customer to be able to open the old version saved XML file format.
    Usually the saved cluster (in XML) has be changed by adding/removing a field or even changing the options of a ring control for example.
    The app name and version is stored in the XML.
    Question: Is there a way of easily working with XML file formats with slightly different fields?
    In the past we have worked with the raw XML text by searching for fields which are different and modifying them accordingly so they are accepted by the new file format.
    Any tips would be greatly appreciated.

    battler. wrote:
    I have written a software name and version cluster to XML.  How do you read the version field in the XML?  Do you use string search?  Is there a better way?
    Yes, I use String Search (because it is near the beginning of the XML string).  Depending on your XML "flavor", you should be able to uniquely-identify the Version information.
    I'm interested in how best to work with XML.  It seems cumbersome and prone to error to use string functions.  Is there a way or best practice of reading the XML fields directly without converting to cluster?
    XML is, after all, text with specific "tag" information, also text, identifying it.  String functions are pretty much "the way to go", but except in rare circumstances, you shouldn't necessarily "roll your own", but should try to use the utilities that come with your XML package that "know" how to do the mapping between the XML representation of a LabVIEW variable (and its value) and the Variable itself.
    Can you elaborate on these "mapping" and "reading/conversion" routines you're using?  How do they work and what functions do they use?
    An excellent question.  There are at least three XML packages out there for LabVIEW -- the "native" LabVIEW package that NI provides, EasyXML from JKI Software (distributed using VIPM), and GXML, also on the LabVIEW Package network.  I'm afraid that I'm slightly "abusing" XML, and have made some modifications to how I use EasyXML and GXML. 
    If you simply view an XML file in a "smart" editor, you'll see a series of text lines with Begin/End tags (like HTML).  Depending on the XML "flavor", embedded between the tags are data that describe the LabVIEW variable type (e.g. Dbl, Cluster, Array, etc.) and also the value(s) of the Variable.  The "ReadXML" (or similarly-named) function takes this description and (usually) returns a Variant that you can "turn into" the chosen variable (because you know the data type).  [You may need to tell the Reader, in advance, the type of LabVIEW variable to expect so that it "knows when to stop reading"].
    As to how they work, they just do String pattern matching and processing, usually of a pretty sophisticated level, but then you don't have to do the hard work yourself!
    Why do you use Private Project library?  Is your project based on OO?
    The reason I used a Project Library with the "messy details" in the Private parts has nothing to do with OO, but rather with "data hiding".  I actually developed this for my data processing routines.  I had a set of routines that collected and analyzed the data (about 700 VIs).  Let's call this Project "Version 1".
    For Version 2, I basically added a dozen variables to the main  Data Cluster (having over a hundred elements) that characterized the response.  As this Cluster was in a Type Def, I didn't have to change my code very much to accomodate this new data format, so most of my VIs kept the same name, but were "different" because the underlying TypeDefs were different.
    So I have a Version 1 program that can analyze Version 1 data, and a Version 2 program for Version 2 data.  What I want is a Version-independent program that can look at the data, and then call for Version 1 or Version 2 analysis.  By burying the Version 1 and Version 2 code inside of a Project Library, and only exposing the top-level "Analyze My Data" VI, my Analysis routine, which didn't know (and didn't care) about the two different Data TypeDefs, just figures out (from the XML) which Version of data I have and then calls either Lib1:Analyze My Data or Lib2:Analyze My Data.  If I ever change the Version again, I just need to copy the code in the Library to a new Lib3 Library, modify the TypeDef and related version-specific code as needed, and I'm done.
    I may have made this sound easy -- trust me, it was a definite learning experience.  While trying this out, the first thing I did was to "break" my installations of LabVIEW 2012, 2013, and 2014 (curiously, LabVIEW 2011 wasn't broken).  It stayed "broken" for about a week, then "cured" itself (I'd done something illegal, or maybe just immoral, with my Library, and it took a while to purge the badness).
    BS

  • How can I associate file types with Dreamweaver so they open automatically?

    I've just installed Dreamweaver CS4 under Windows XP
    Professional but I've an issue with which files types are
    associated with Dreamweaver.
    When I first ran DW CS4 the application invited me to select
    which type of files to associate with Dreamweaver: .css, .js,
    .xslt, php, etc. I deselected a few as I was using another editor
    for those at the time. However, I would now like to associate PHP
    files with Dreamweaver CS4, so that when I double-click a PHP file
    in Windows Explorer it opens in Dreamweaver CS4.
    How can I do this?
    Is there a way to run the initial dialog box again that
    invited me to select which files to associate with Dreamweaver?
    Thanks in advance
    Gareth

    However, I would
    > now like to associate PHP files with Dreamweaver CS4, so
    that when I
    > double-click a PHP file in Windows Explorer it opens in
    Dreamweaver CS4.
    Browse to any PHP file with Windows Explorer, right click
    then select Open
    With..., Choose Program and select DW CS4 (and tick the
    "Always..." box to
    make this the default file association)
    Regards
    John Waller

  • Photoshop CS6 file saved thumbnail makes file blank??

    Hello,
              I've recenlty seen this problem, the file i process in adobe photoshop CS6 comes blank and the previous thumbnail also disappear. I've checked the settings in finder and adobe photoshop cs6 but i didn't change anything there. Can any one help??
    i need to submit wedding pictures but blank thumbnail makes me lost track of pictures. I'm attaching a picture below, the first row is what i've processed with adobe photoshop cs6 and the thumbnail disappeared.

    I have to make a lot of color corrections because this is film taken from the early 40s to the early 50s. I tried doing it in Avid Studio, Pinnicle studeo and Corel Draws Video Studeo which is what Avid Studio became. None of them alow for the amount of correction allowed in Photoshop. I already owned Photoshop 5 so I upgraded to 6 to take advantage of its advances in video. The plan was to break the converted files up in smaller peices so that Photoshop could handle it and use Premier Pro perhaps to do other post production editing. The origional avi files are a movie about 1 hr and 15 min long and another one about 45 min long. The CODEX is MJPG in avi.

  • I just bought a Dynex mini sd card reader/writer. When I plug it into my MacBook pro I cant see any files saved. Any suggestions on which application i should open it in?

    Please respond to the above. Thanks!

    Speak to Dynex. Does the SD card mount on the desktop? From where did you write files to it?

  • UTL FILE saving as csv file

    I have this line of code:
    DECLARE
    l_Date DATE := SYSDATE;
    BEGIN
    l_file := utl_file.fopen('UTL_TMP_DIR','ZERORISATION_'||l_Date||'.csv', 'w' );
    END;I encountered this error while running my query with the line above :
    PLS-00103: Encountered the symbol "L_FILE" when expecting one of the following:
    := . ( @ % ;
    The symbol "." was substituted for "L_FILE" to continue.May I know what was the problem?

    Try like this
    DECLARE
    l_Date DATE := SYSDATE;
    l_fileName varchar2(50):= 'ZERORISATION_'||l_Date||'.csv'
    BEGIN
    l_file := utl_file.fopen('UTL_TMP_DIR',l_fileName, 'w' );
    END;

  • Saving a .pdf file into the network shared drive from Outlook 2013

    Hello sirs,
    I have one client that having the file saving issue into the shared drive from outlook 2013.
    I have isolated the network portion and confirmed that there is nothing to do with the network. They have 1 host server which has 2 VMs inside (DC & FS). Whenever they want to save .pdf file into the shared drive, "Saving" message box popped up and showed for about 1 min to complete the file saving. I have tested with .xlsx & .dcsx but no error saving those files. only for this particular extension that facing this slowness problem. It has been on going for a month already and I couldn't figure it out what could be the issue.
    Please if anyone experienced this issue, I would really appreciate your suggestions & guidance.
    Thank you.
    This topic first appeared in the Spiceworks Community

    I have a script that I am trying to cobble together, but I am stuck at attempting to execute an SQL query against and ADO connection. My code is as follows:Powershell $FQDNUpper = $Computer.ToUpper() + ".domain.dn1.dn2" $FQDNLower = $Computer.ToLower() + ".domain.dn1.dn2" $shell = New-Object -ComObject "Wscript.Shell" # for use later in script $cnn = New-Object -ComObject "ADODB.Connection" $cnn.ConnectionString = "Connection_String" $cnn.Open() $queryUpper = "SELECT CAST(ID AS nvarchar(50)) ID FROM Machine WHERE Name=$FQDNUpper AND Role = 0" $rs = $cnn.Execute($queryUpper,' ',1) #If statement that will qualify if $FQDNUpper returned anything else try $FQDNLowerWhen executing the code I receive an error:
    PowershellArgument: '2' should be a System.Management.Automation.PSReference. Use [ref].At line:9 char:5+ $rs = $cnn.Execute(...

  • Bridge CS5 will not open on new computer

    I deactivated ps cs5 on my old computer and used my ps cs5 upgrade disk to install it on my new win 7 ultimate computer. It should be clean install but I did migrate many files from the old win xp computer with windows easy transfer. Bridge will not open and I can not find it listed in my programs. I tried to run my old cs4 upgrade disk and it shows that I have bridge cs4 installed even though I never installed ps cs4 on this machine. Is it possible that some old migrated files are now blocking bridge cs5 from opening? I tried to reset preferences by holding the ctrl key and clicking on bridge but nothing will open. Would this be solved by upgrading to CS6 or will I still have the same issue if bridge cs5 does not open? I tried to run the bridge cs5 update but it will not install. I do not get any error message at any time. Adobe support advisor found an unnamed error but can not recommend a solution.

    I ran the creative suite cleaner and removed all files from cs3, cs4. But they are still there listed in c>programfiles (x86)>adobe. I can see adobe bridge cs4 and adobe bridge cs5. when i run bridge.exe from adobe bridge cs5 folder it opens bridge cs5. but i cannot open bridge while ps cs5 is open. I can't seem to delete the cs4 files as it says i need administrator rights, which are somehow not available.
    Update: Somehow it did work, even though the cs4 program files are still there. I opened mini bridge from within cs5 and it said something to the effect that it needed to close cs4 bridge and use cs5, i clicked okay and my files were displayed in mini bridge cs5. I closed that and then clicked the bridge icon from within ps cs5 and bridge cs5 opened. I guess I changed the preferences somehow. Thanks for your answer and suggestion, which may well have been the solution or it led me to the correct step. The big point is that I avoided the big reinstall I dreaded after two days of getting cs5 set up with all plug-ins,etc installed. Thanks for your help!

  • PS CS5 stalls when opening file with type layers

    Macbook Pro / 10.6.7 / 4GB RAM / 2GHz i7 / CS5 12.0.4.x64. No extra plugins or anything. New system, clean install from last week.
    When I open a file (any size/color/dimensions) that has type layers PS with hang for about 25 seconds, then come back just fine. If I clear the font cache (I use FontExplorer X 3) the problem will go away for a brief time (minutes?), then come back. Close and reopen a file, same hang. Close PS, reopen PS, reopen file, same hang.
    Files with no font layers are not affected — no hang, no delay, snappy... unless a file with type layers is already open, then there is the same delay.
    If a file with type layers is open in PS and hung on open, and I open/double-click it again from the finder I get another hang.
    Turing off font preview makes no difference, turning off OpenGL makes no difference.
    But, turning a font on or off in FontExporer does clear the problem for a while.
    Any thoughts?

    It looks like the plug in was the culprit. I have it turned off and haven't had the problem in a while (though I haven't used PS in a bit on text-heavy projects either).
    Thanks for the help.
    c27

  • CS5 6.3 RAW File not reopening with changes saved from .xmp file?

    I recently upgraded from my D70 to a D7000, and downloaded the new plug-in for CS5 RAW (since the D7000's raw images weren't readable).  I have no problem opening my photos in RAW 6.3, and tweaking them (just like before).  When I'm done and want to save my changes I click "Done" and a .xmp file is saved just like before.  However, when I re-open the same RAW file the changes that I previously made seem to have never happened, and I'm back to scratch (which would only happen before if I had deleted the correlating .xmp file).  What's going on??  Help!!
    edit: The .xmp files are saved next to the raw file in the same folder

    In Edit - Preferences - Camera Raw, what is your choice for where to store the settings?
    -Noel

Maybe you are looking for

  • My MacBook pro won't allow me to double click to open files or select the music I want to play, how do I fix this?

    When going to open a file or select a song to play in iTunes or opening links I used to be able to double click on my track pad to open files or links, now I have to tap once with two fingers to open the "right click" option on a normal mouse pad to

  • How do I detect if a new PS/2 mouse is plugged in?

    If I remove my PS/2 mouse, then plug it back in, it no longer works. How do I make the computer refresh and re-detect the mouse without rebooting?

  • RE:Error when processing a transaction in XI

    Hi Guys, When i am processing a transaction in XI,when i am sending the XML from RWB--->Integration Engine-->Test message. the message is successfully processing and it is showing that "Message sent". when i have seen this in SXMB_MONI--->Monitor for

  • Station Options - User Manager tab

    Within the Station Options, I see the User Manager tab.  If I use the default configure location, the Users.ini file will live in C:\Program Files\National Instruments\TestStand 3.5\Cfg\Users.ini.  Is this where BOTH the development and target Users.

  • Reviving a broken G5

    I've got a dual 1.8GHz G5 thats out of warranty and not quite functional. Its logic board has some bent pins on the main cpu socket, and I can't seem to get them bent into the right shape to work. Its possible that one of the CPU's is flakey as well.