.pse multi-page document created in Elements 6 won't open in Elements 12.

Recently upgraded to Photoshop Elements 12 from version 6 (Mac). When I try to open a .pse multiple page document created in 6, I get the error message "can not open this multiple page document".

The only workaround i can think of offhand is to open the individual files that make up the pse into photoshop elements 12.
Right click on the pse file and click on Show Package Contents
Then in the finder window that opens you should see a folder with the individual psd files inside.
Those psd files should then open in the pse 12 editor.

Similar Messages

  • Pages Documents created on my iPad won't open on my MBP

    My daughter has a MBP running 10.8.3 with Pages ’09 v4.3. and an iPad 2 running 6.1.3 with Pages  1.7.2 that she takes to Uni.
    Pages documents that she creates on her MBP and saves to iCloud will open on both her MBP and her iPad but Pages documents that she created on her iPad and saved to iCloud will not open on her MBP.
    The error message states-
    "You need a newer version of Pages to open this document. Use Softwear Updtate to install the latest version of iWork"
    She has run Software Updates on both devices and everything appears to be up to date.
    Suggestion on how to fix this problem would be appreciated.
    Gary

    Does she happen to have an older version of iwork on her Mac by any chance? I wonder if the document has somehow been attached to an older version of Pages & that is why the error is showing? I had the same problem with a quicken file. when I downloaded the web connect file, I got an error that the file couldn't be opened. I think I had to right click on the file & then choose 'open with' to find the correct application.
    If that doesn't fix it, it might also be worth emailing herself the document to see if the issue is in the export from the ipad, or if it's with the icloud part of the equation.

  • Pages Document created on Macbook Air cannot be opened on Ipad Mini. I get a message that reads, "only documents saved in pages '09 may be opened." These devices are one week old and I just downloaded Pages for each.

    I just got a Macbook Air running 10.8.2 and an iPad Mini. I downloaded Pages for both. I created a document in pages on the MBair and tried to save it to the iPad Mini so I could work on it while commuting and the file does not show up on the mini. I have tried to saved the file through iTunes app page and the message keeps telling me I can only transfer files saved in Pages 09. What gives? I can transfer files made in Microsoft word no problem, but files made in the same program do not work. Any help?? Very frustrating.

    You are aware that Pages for Mac and Pages for iPad /iPhone/iPod are 2 different program?
    Looks like you have Pages for Apple mobile devices but not for your Mac.
    If that's the case
    Pages for Mac: https://itunes.apple.com/au/app/pages/id409201541?mt=12
    Pages for iPad/iPhone/iPod touch: https://itunes.apple.com/au/app/pages/id361309726?mt=8

  • How to create a scrollable ( multi page) document using Acrobat 5.0 for Windows

    How do I create a multi page document that can be scrolled through? I want to place one drawing, which I have in pdf format, on each page of the document then send it via email so the recipient can open it and scroll through the pages to see all the drawings.

    Thank you so much for the prompt and succinct reply. I tried what you suggested and it worked very well. I am new to Acrobat and it is nice to know there are knowledgeable professionals that can grasp the essence of the problem and lead the way to the solution. Thanks!
    Best Regards,
    Aaron

  • When creating a multi page document, some of my thumbnails become linked and can't be separated for editing. What am I doing wrong and how do I correct this?

    When creating a multi page document, some of my thumbnails become linked and therefore impossible to rearrange. What am I doing wrong and how do I correct this?

    The pages in sections stick together because the text flows between the pages.
    Insert a section break to isolate pages between sections.
    Now this all works in Pages '09, unfortunately Pages 5 doesn't let you.
    Peter

  • Save each page of a multi-page document as a separate file using spawned file names with javascript

    Hello
    We are currently changing our hard-copy personnel files and converting them to pdf files.  We have scanned the entire file into one multi-page document.
    I am wanting to save each page (or groups of pages) as separate files.
    In order to facilitate this, I have duplicated field names--such as FirstName, LastName, EmpNo on each page.  This information should be static for the entire file.
    However--I also need information that will change for each individual "page" or document--such as TypeOfDoc, Date, etc.  I have used the Spawn fields using the overlay method on each of the pages in the document.  Then I went in and filled in the information for each page of the document--such as TypeOfDoc, DateOfDoc.
    Now I want to save each page of the document as a separate file using the field names as the file name.
    I first created an action that would split all the pages into separate files and save them into a folder.
    Then I want to save each file as a specific file name based on the information in the fields.
    My problem is obtaining the name of the spawned field name.  The rest of the field names I am not having a problem with.
    This is what I have so far to name the file.
    // Get the field value
    var oPage = this.pageNum;
    var fn = getField("P" + oPage + ".TEMPLATE.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    // Save the file
    myTrustedSpecialTaskFunc(this, fp);
    This code is also accompanied with folder level scripts.
    My problem is obtaining the name of the spawned fields using javascript.  Each document has several pages--so I would like to obtain the field name through script.
    I receive the following error.
    TypeError: getField("P" + oPage + ".TEMPLATE.DATE") is null
    I think this is due to the fact that I have extracted all the pages as individual files.
    If I were to do the above, but not extract the pages first--I do not know how to just save one page at a time.
    Please help.  This is a massive project, and if we have to save each file individually, it will take a lot of time.
    I am a beginner, so any assistance is appreciated.
    Thank you

    I am not understanding exactly where to put the curly brackets.  I have tried two different ways, and still get the same error.
    This is one way
    var oPage = this.pageNum;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    for (var i = 0; i < this.numPages; i++) 
    var fn = getField("P" + oPage + ".template.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    {this.extractPages({  
    nStart: i,  
    cPath : fldr + fn + ".pdf"
    The other is this
    var oPage = this.pageNum;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    for (var i = 0; i < this.numPages; i++) 
    var fn = getField("P" + oPage + ".template.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    this.extractPages({  
    nStart: i,  
    cPath : fldr + fn + ".pdf"
    Thank you for your help.

  • Export Multi-Page Document as Individual PDF's, Exporting Layers

    I'm not sure if there is a way to do this (I've scoured through the Export dialogues and I'm not sure if what I am looking for is counter-intuitively labelled or just doesn't exist). What I would like to do is take a multi-page document and export it so that each page is it's own PDF - from a single Export. I know that there are ways to split PDF's in Acrobat, but we are trying to streamline our workflow so I'd prefer if this can just be done in one step at the time of PDF creation.
    The other issue I am running into, when I export a PDF with layers, the elements on the layers are rearrangting themselves. For example: I have a 45 page document, with 3 layers (Dieline, Background, Artwork). When I export the PDF, all of the layers are in the proper order, but only Page 1 has the creative elements on the proper layers (Pages 2-45 take all artwork and move it up to the top-most layer).

    You’ll need a script. What version of InDesign? Is it fully patched? How are you viewing the PDF?
    Bob

  • Multi-page document with multi Master-pages

    Using InDesign CS6 (Mac): 
    I'm to start a 50-page document that's single-pages (not spreads) for 3-hole-punch book. I'm using 2 Master pages, which are alternating between the front and back of each sheet. So page 1 is master A, page 2 is B, 3-A, 4-B, etc.
    So that I don't have to manually add alternate pages to the Pages window — is there an elegant way I could tell InDesign at the "New Document" level to create those 50 alternating pages?
    Thanks!

    Thanks, Jdanek, but after posting my question here I realized a better place to post it is in the InDesign forum, and I already got the answer there, which is to create a facing-page document with one master page, that has a larger margin at the binding side. The pages will be read as spreads, even if this a 3-hole-punch book. I then will save it as a single-page PDF for production.
    You can see the thread at Re: Create multi-page document with multi Master-pages

  • Printing multi-page documents

    I have a 25-page .psd document that I want to print in CS6 in one hit, but I only seem able to print it by opening each page individually and processing it separately. What can this be done?

    Photoshop for whatever reason does not print multi-page documents as you would see in PDFs. Acrobat does not accept psd files for conversion into PDFs,
    So I nicked the following from here: How do I create multi-page PDFs from PSDs on Photoshop CS5? - Quora
    Its not a one step process but kind of a workaround really -
    STEP1 Export all your files as JPEG or PNG.
    If there are lot of files you can do it in one go using File > Scripts > Load Files into Stack then create a new PSD with all the files you want exported. Then go File > Scripts > Export Layers to Files and export it as one of the above image formats
    STEP 2 As mac user - Go to the folder where all the above files are exported and Cmd Open it all together in "Preview" application, then click Print, but instead of printing save as PDF. There is an option to save as PDF in the popup you get before printing. So JOB DONE
    As a PC user - I am not 100% if they have inbuilt utility of saving as PDF while printing but I remember I used a third party software (which was free) I think it was called bullzip PDF print or something like that. And then you can do the same in Windows as well like mac. You can either load all your JPEG or PNG files in windows image viewer or I think Word should definitely work. Like you will need to copy all your images in there and then "Save as PDF"

  • Ill.CS3 - Why can I only work with one sheet on the desktop? I want to design a multi page document...

    ill.CS3 - Why can I only work with one sheet on the desktop? I want to design a multi page document...

    Use this ancient work-around:
    Create mutli-page PDF | Illustrator

  • Multi-page documents in Muse?

    In Adobe Muse, do I have to hyperlink each page of a multi-page document, as with next and back buttons? I am ruling out scroll bars or pages connected to anchors as awkward for the end user. It would be good if I could simply paste into Muse multiple pages from InDesign, after these pages are saved as HTML, but I assume that doing so would only create a single long page. Comments/suggestions?
    (I realize that alternatively, I could export everything from InDesign to Dreamweaver and do an ftp upload, but I am not skilled enough to program Dreamweaver with the kind of menu widgets which are a slam dunk in Muse. Otherwse, content which I have in InDesign is what I would like to display in Muse.)

    Thank you. I appreciate the imput. But I must not have been clear. What if I want to place text from a 20 page Microsoft Word document into Muse? If I do not wish to use anchors or scroll bars, it would seem to me that I  have to create upwards of 20 pp. in Muse, manually cut and paste from Muse page to Muse page until all 20 Word pp. are placed (after awkwardly deciding how much fits on each page without crowding a footer), and then manually hyperlink each of these Muse pages. Correct?
    I realize that a horizontal menu widget will allow me to group, say, 20 pp. as subordinate to a single page, but clicking on the associated menu will only bring me to the first page of this group. From there I would need manually created hyperlinks to the second, third, fourth page, and so on, would I not? My 20 pp. represent a continous article, and I would not want 20 menus for it. Obviously, I can chunk the 20 pp. with subheadings, but I am simply trying to ask if it is a fact that I will need hyperlinks for content that spans more than one page. I speak of 20 pp. in this example, but for a site that hopefully will have hundreds of often changing pages, the prospect of manually entering next and back buttons is daunting. In fact, I am not sure if Muse, however good for single pp., is a good fit for my project.

  • Can not add function to pages-document created with Applescript

    If I create new document using the GUI (New document) I can place the cursor within any table-cell, type "=" (equal sign) and f.e. "2+2" which will result in a cell showing a "4".
    If I create a document with Applescript, I can not add new functions (neither by typing = nor by using Insert >> Function (may be different, I have German version here). Already existing functions (which already were in the template) can still be used and work as expected but can not be altered.
    Any idea?
    I use Pages '08, Version 3.03
    Code I used to create the document:
    tell application "Pages"
    launch
    make new document at front with properties {template name:templateName}
    # Angebotsnummer ins Dokument schreiben
    tell body text of front document
    make new paragraph at after paragraph 1 with data angebotsNr
    set paragraph style of paragraph 2 to "Überschrift"
    end tell
    # Datei abspeichern
    set dateiName to missing value
    repeat until dateiName is not equal to missing value
    set dateiName to text returned of (display dialog "Datei Name:" default answer angebotsNr & "_" & kundenName) as text
    end repeat
    save front document in angebotsOrdner & dateiName
    end tell

    I apologize but the given script can't run.
    The variable templateName is undefined.
    The variable angebotsNr is undefined too.
    About the described behavior, it's a bug which I never discover before.
    It's always striking in Pages '09.
    Here is the report which I filed :
    Bug ID# 8704270
    Summary:
    +Odd behavior of tables in Pages documents created by a script+
    +Steps to Reproduce:+
    +Run this huge script+
    +tell application "Pages"+
    +make new document at front with properties {template name:"Blank"} (* "Vierge" on French systems *)+
    +end tell+
    +Insert a table+
    +try to insert a formula+
    +Expected Results:+
    +I assumed that I will get the formula editor which I get when the document is created by hand+
    +Actual Results:+
    +There is no way to get the editor, no way to insert the equal character.+
    +This odd behavior strike in all versions of Pages '09 and Pages '08+
    Regression:
    +None to my knowledge+
    Yvan KOENIG (VALLAURIS, France) dimanche 28 novembre 2010 11:30:29

  • How do I print selected pages from a multi page document

    How do I print selected pages from a multi page document?
    This question was solved.
    View Solution.

    Hi,
    It depends on the software you are using, what is it ? In general you can select a range or just a number of pages.
    Regards
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I am having trouble printing multi-page documents on my Epson printer. 13" Macbook Pro, Adobe InDesign, Epson WF-7520

    I have a multi-page document and I want to print some of the pages, double-sided, to check my work. I can't seem to get the interface to recognise that I want to print a specific range of pages, so it will print just one page [no double-sided] or, I assume, it will print the WHOLE LOT [not good at this stage!] HEEEELLLLPPP!! 
    To explain, the dialogue box which opens when you hit Command+P has an option of 'Pages' or 'Range' but 'Range' gives you only two options:  All Pages or A4V. If I click the 'Printer' button I get another dialogue box with more options and from there I can choose to print 'All' or 'Pages' . . . and you change 1 to 1 to say, 1 to 3 for example. There is also an option to print double-sided. But nothing seems to be working and as soon as you finish with this second dialogue box it seems to forget every parameter you choose there. The summary page on the first dialogue box also seems suspiciously sketchy on details of what, exactly, it is about to print. By the way I have installed the latest driver set from Apple for this printer. Is anyone else having the same problem?

    Thank you so much Eric. I did what you said. I still had the same result, but finally [somehow] I ended up clicking on something which doesn't even look clickable - this is a tiny set of back- and forward arrows in the 'Range' option. Using this feature seems pretty hit-and-miss but I persevered and was able to get it to accept my parameters, i.e. "1 - 2" in range. You have to go into the second ["Printer"] dialogue box each and every time you print, to enable two-sided printing. At last I was able to get it to print pages 1 and 2 of my three-page document. Now maybe I can test-print pages from my 108 page tome! Fingers crossed . . .   

  • Pages Documents created on iPad or iCloud will not open in iWork Pages on Macbook

    I recently purchased the iPad Air and installed the latest version of Pages on it to share and create documents in Pages over iCloud between my devices. Before, I never had any issue creating a Pages document, say on a Windows OS at work, and then opening it up on my Macbook Pro in the latest version of Pages (5.0). Now when I attempt to open a Pages document created or edited on my iPad or through a browser using iCloud, it will give this message on my Macbook:
    "You need a newer version of Pages to open this document. You can download the latest version of Pages from the Mac App Store."
    I have repeatedly checked and all software is up to date. I have also attempted turning iCloud off and on again on both devices. One of the biggest reasons I bought the iPad was to have my documents on the go, but if I can't edit them later on my laptop, what's the point? Any ideas?

    Jeff,
    In the few moments after answering your first reply, I double-checked the Mac App Store and it revealed an update for Pages 5.1 -- Issue Resolved! I guess it was just cranky software today. Thanks for your patience.
    Kimberly

Maybe you are looking for

  • When I loose signal I have to make a call to force the signal to return, anyone else suffer this?

    At times when I'm in an area with no signal coverage, my signal doesn't return automatically when I return to a place which I know has signal coverage. I must dial a number which then forces the signal to return. Anyone else suffer from this or have

  • Can I set up a repair iphone

    ???

  • Icons in 10g form

    I have 2 oracle applications that I am converting to Forms 10.1.2.0.2. These 2 applications share some icons that are .gif files. In one application the icons appear the correct size, but in the other application the icons appear smaller and run off

  • Itunes movie not working

    i purchased the "hancock" movie recently, it does not work in my iphone and so with my pc laptop, it stops all the time. also, do we have a video to use at the old iphone? i feel like i need to know more about this. manual doesn't explain that much i

  • What is the software?

    what is the software?