Trouble choosing a save folder in pages

I'm having trouble choosing where to save a new pages file.
I choose Save As and then enter the folder name I'm looking for into the search window.
But the resulting folder names are greyed out so I can't choose them. Any solutions?

Pages '09 will remember the last folder location of the previously saved document. If you quit Pages and restart it, the open dialog presents the folder and last file(s) you saved there.
If you want the search feature to work on save as, you need to switch into the indicated Finder mode. Here I am searching for a folder (test-folder) that is two-levels deep in my home directory.
The folder is found, and displays the files already located in it. Now all I have to do is name the file and press Save. No preferences were harmed in this demonstration.

Similar Messages

  • I choose to save and quit when I close Firefox, but recently my pages dissapear on new session for few times. Is the new version unstable?

    I choose to 'save and quit' when I close Firefox, but recently my pages disappear on new session for few times. After I reopen firefox, it's only my default homepage left, all my other pages that I previously save before closing firefox are all gone. It has happened for a few times with this new version, which I do not have this kind of problem before with other version. I wonder is this version unstable? Or is there any other way to deal with it? Thanks!

    You should update to Firefox 3.6.13. See Help > Check for Updates.
    If you use [[Clear Recent History]] to clear the 'Browsing History' when you close Firefox then restoring tabs from the last session ("Save & Quit" or "Show my windows and tabs from last time") doesn't work.
    * http://kb.mozillazine.org/Session_Restore

  • HT204655 how do i choose a photos folder for my screen saver.  iPhoto used to be listed as a dropdown choice.  now only folder is listed.

    how do i choose a photos folder for my screen saver.  iPhoto used to be listed as a dropdown choice.  now only folder is listed.

    You cannot take a folder out of the Trash to your Desktop without erasing the one on the Desktop. You need to first change the name of the folder on the Desktop. Or you can open the folder that's in the Trash and drag the files onto the Desktop assuming there aren't too many of them.
    But if you have a duplicate on the Desktop why do you need to remove the one that's in the Trash?
    If you feel you must take the folder out of the Trash, then you need to rename the duplicate that's on your Desktop.
    If you wish to put the folder back where it was when you deleted it, then open the Trash window, select the folder, then CTRL- or RIGHT-click and select "Put Back" from the context menu.

  • Changing Default Save Location in Pages?

    Recently moved my wife from Microsoft Word to Pages in Lion
    All her work docs have been in Word (saved to many different particular folders in Dropbox)
    Whenever she opens in pages and edits I would like it to save back to the same folder it was edited from (and ideally overwite the old Word document as a 'default save option' is that possible?
    At the moment the default save is to "Documents" and you have to navigate back to the old folder manually and save new pages document. Then you have to  back to finder and deleting the original Word document (otherwise duplicates with same name just without the .doc ending). It is a very awkward workflow which I know will drive her nuts and is open to easy errors of her filing
    Any help much appreciated
    Nic

    When you open a Word document with Pages, you are in the same condition than when you create a new document from a template.
    There is no path linked to the created document so, the save dialog will default to the late folder used to save.
    I assume that there is at least one third party tool allowing us to behave differently but I don't know which one.
    Here is a short script which may help.
    It doesn't treat several docs at a time.
    Just use it to open a Word document. The script will be aware of the original document so it will be able to save automatically a Pages version in the source folder.
    If a Pages document with the same stripped name than the Word doc already exists, the new Pages document will be date_time stamped :
    In such case, azerty.doc will be not be saved as azerty.pages but as azerty_20110819_165721.pages
    --{code}
    --[SCRIPT Doc2pages.app]
    Save the script as an Application Bundle.
    Run it or drag and drop a Word's doc icon on its icon.
    It export the doc file as Pages one in the source folder.
    Assuming that we start with:
              trucmuche.doc
    it will be exported as:
              trucmuche.pages
    If a file with the short name already exists
    it is saved as:
              trucmuche_20080128-221639.pages
              the serial number is a packed version of the date/time of the save process:
              2008/01/08-22:16:39 .
    Yvan KOENIG (VALLAURIS, France)
    2011/08/19
    property srcTypeId : "com.microsoft.word.doc"
    property deleteWarnings : true
    true = close possible warning displayed after Word import
    false = don't close possible warning displayed after Word import
    --=====
    on run (* lignes exécutées si on double clique sur l'icône du script application
    • lines executed if one double click the application script's icon *)
              set fichier to choose file of type {srcTypeId} (*
    dans un bloc System Events pour avoir un titre de dialogue "localisé"
    • in a System Events block to get a localized dialog title. *)
              my main(fichier as text)
    end run
    --=====
    on open (theSelection) (* sel contient une liste d'alias des éléments qu'on a déposés sur l'icône du script (la sélection)
    • sel contains a list of aliases of the items dropped on the script's icon (the selection) *)
              my main(item 1 of theSelection as text)
    end open
    --=====
    on main(un_document)
              tell application "System Events" to tell disk item un_document
                        if type identifier is not srcTypeId then
                                  if my parleAnglais() then
                                            error "“" & un_document & "” isn’t a Word document !"
                                  else
                                            error "“" & un_document & "” isn’t a Word document !"
                                  end if
                        end if
                        set dossier_source to path of container
                        set nom_doc to name
                        set name_extension to name extension
                        set mod_date to modification date
              end tell
              if name_extension is "" then
                        set nom_court to name_doc
              else
                        set nom_court to text 1 thru -(2 + (count of name_extension)) of nom_doc
              end if
              tell application "System Events"
                        if exists disk item (dossier_source & nom_court & ".pages") then
                                  set nom_pages to nom_court & (do shell script "date +_%Y%m%d_%H%M%S.pages")
                        else
                                  set nom_pages to nom_court & ".pages"
                        end if
      make new file at end of folder dossier_source with properties {name:nom_pages}
              end tell
              set new_pages to (dossier_source & nom_pages) as alias
              tell application "Pages"
                        if deleteWarnings then set warnings_avant to my get_warnings()
                        set nbDocs to count of documents
      open file un_document
                        repeat
                                  if (count of documents) > nbDocs then exit repeat
                                  delay 0.2
                        end repeat
      save document 1 in new_pages
              end tell
              if deleteWarnings then
                        set warnings_apres to my get_warnings()
                        if (count of warnings_apres) > (count of warnings_avant) then
                                  repeat with f in warnings_apres
                                            if f is not in warnings_avant then
                                                      my close_warnings(f)
                                                      exit repeat
                                            end if -- f is not
                                  end repeat
                        end if -- (count of warnings_apres
              end if -- deleteWarnings…
    end main
    --=====
    on get_warnings()
              tell application "Pages" to activate
              tell application "System Events" to tell application process "Pages"
                        return (get name of every window whose subrole is "AXSystemFloatingWindow")
              end tell
    end get_warnings
    --=====
    on close_warnings(w)
              tell application "Pages" to activate
              tell application "System Events" to tell application process "Pages"
                        tell window w to click first button
              end tell
    end close_warnings
    --===== 
    on parleAnglais()
              local z
              try
                        tell application "Pages" to set z to localized string "Cancel"
              on error
                        set z to "Cancel"
              end try
              return (z is not "Annuler")
    end parleAnglais
    --=====
    --[/SCRIPT]
    --{code}
    Yvan KOENIG (VALLAURIS, France) vendredi 19 août 2011 17:16:31
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • How do i save a multi page spreadsheet as a multi page pdf

    how do i save a multi page numbers 3.5 spreadsheet as a multi page pdf?  has this feature been removed?

    I don't use Numbers - so I don't know if it had that option.  Here is a kluge, if you print a Numbers sheet to PDF using print from the File menu, then open that PDF file in Preview, then choose the Thumbnail View options you can drag any desired page(s) from that Numbers converted to PDF file to your desktop or folder.  Those files will have a  (dragged) #.pdf name in them.
    Edit: I misunderstood you to say how do you print multiple page PDF Numbers as Multiple page PDF.
    To Jerold's reply below, you have to make sure you select all pages.  I think it defaults to current page.  You can also export via Numbers to PDF.

  • Trying to save as in Pages

    I am trying to save as in pages and that is not an option. When I save to the cloud (the default) and try to attach document to email, the email cautions me that the file is empty. Can you direct me to resource for this challenge?
    Thanks!
    <Re-Titled By Host>

    Hi Cynthia,
    I'm not sure where to begin. In Lion, and also in Mountain Lion, making a copy of a document is most easily done by clicking on the Document Name at the top of the Pages Window and Selecting Duplicate.
    If you are looking for "Save As" because you want to change the file type, choose File > Export instead.
    If you don't really need iCloud and don't care to spend time tring to figure out what is causing the null files, just turn off Documents in iCloud preferences and your options for saving in Pages will revert to just showinng the local drives.
    Some people have troubles exporting as a PDF Mail attachment. If works, but again, if you don't want to work through the issues that might be prevenging it, simply Print > PDF > Save as PDF and then attach the PDF file to your separately created email.
    Have I come close to addressing your challenge? If you can help me to understand the motivation I may be able to focus in a bit.
    Jerry

  • Saving a PDF file when printing is not supported. Instead, choose File Save.

    I am using Mountain Lion (10.8.2) and I was using Adobe Reader version 9. In the past, I've always been able to print to file using the File -> Print dialogue but all of a sudden it stopped working. I read somewhere that installing the latest version of Adobe Reader (version 11) would remove the old printer, so I did so. It took me about an hour on version 11 to even find the pdf print to file option, but I am getting the same message. For what it's worth, when I try print to file from Microsoft Word, I have no problem. I have no idea why things changed all of a sudden, but does anyone have any idea how I can get this working again?

    I checked with Adobe.  No luck. 
    Allow me to clarify my problem: 
    I have Adobe Reader XI. I also use a Mac--imac and a MacBook Pro.   My adobe was updated on 12/24.  Prior to that point, I could open my print dialogue box and there was a PDF tab on the bottom left.  In the drop down menu there were many choices, including but not limited to Open in PDF Preview, Print PDF, Save PDF, email PDF.  If I selected one page of 30 pages from a document saved in Adobe, I could extract just that one page and save it or email it, without having to send the entire document.   After the update, when I open a PDF file using ADOBE READER XI, and then open the print dialogue box, and follow those same steps, I get the message "Saving a PDF file when printing is not supported. Instead, choose File > Save."   My question is why is this feature now unavailable and is there a way to fix it? 
    The answer I got from Adobe was that Adobe never had this function, so it must have been via my print or preview programs..which are apple.  Does anyone have any thoughts?
    Thank you.
    https://forums.adobe.com/message/7124567 

  • Suddenly, I can't save Safari web pages as PDFs. ???

    I often download website documents to my Mac Pro by choosing the "Save as PDF" option in the Print dialog box. Suddenly, that option is "grayed-out" and unavailable. There's a Save as Postcript option which ultimately fails, and I can print the document on paper, which is not an acceptable alternative.
    This problem appeared after I downloaded the latest System 10.4.9 update, but I can't say whether that's the cause.
    I can still save Safari pages as PDF files on my G4 Power Book, also running 10.4.9, but not on the Mac Pro. Both computers have Adobe CS2's PDF capabilities in addition to Apple's Preview software.
    Any ideas? (Previous posts on similar problems did not have an answer.)
    2.66 GHz Mac Pro & 1.5Gz PowerBookG4   Mac OS X (10.4.8)   Airport network, firewire external drives (5x160GB)

    Hello David:
    Hard to tell what happened.
    I would do a couple of things:
    Clear the Safari cache.
    Trash the preference file (com.apple.safari.plist) and restart.
    If that does not help, you could (depending on how important the function is to you) run an archive and install:
    http://docs.info.apple.com/article.html?artnum=107120
    Barry

  • This document can't be opened because it's too old.To open it, save it with Pages '09 first.

    Bought new MAC desktop tried to open old Ipages and I get this message, what do I do now?
    This document can’t be opened because it’s too old.To open it, save it with Pages ’09 first.
    Thanks

    If you migrated your old system to the new Mac you should still have Pages '08 in your Applications/iWork folder.
    Open your document in Pages '08 and Export it to Word .doc/.docx and open that in Pages 5.
    Peter

  • Message error: "Saving a PDF file when printing is not supported. Instead, choose File Save."

    I have 2 problems creating a .ps file.
    As i know, there are 2 ways of creating a Postcript file from a PDF.
    The first is from the Print monitor. I go through menu File/Page Setup i give the exact dimensions from my spreaded pages and after that i go to Print and when this window opens,
    i go down and left and i open the pop-up menu on"PDF" and i choose "Save PDF as Postscript"
    There is where i get the above error message :
    "Saving a PDF file when printing is not supported. Instead, choose File > Save."
    And the second scenario, i get an equal problem.
    If i go to Page setup and give the right dimensions of my spreaded document, after that i go to the File/Save as command, there is choose from the bottom pop-up menu, the option at Format: Postscript
    If i do that i get the following message:
    "The document could not be saved. An internal error occured."
    What is wrong with all this?
    Can anyone help me out?
    System preferences.
    Mac OS X 10.4.11
    Acrobat professional 8.1.2
    Thank you

    Jon Bessant asked:
    "Does this occur on every PDF file? The internal error message that is ..."
    Yes, it happens on every PDF

  • Cant I save a web page with its pictures in safari?

    hi there,
    when i used save as... to save a web page, it can only save the page as text only, is there any way to save text and the pictures as well.
    im using safari 1.3.1 in os 10.3.9

    You can only save a page with images in Safari 2.x which comes with OS X 10.3.x. For earlier versions you can go to Print > Save as PDF to capture and image of the page. You can use Firefox or Camino to save a page in standard html format along with a folder of images. This method allows you to view the page with any browser whereas Safari's webarchives can only be viewed in Safari.

  • How do I save a web page so that someone else can open it?

    Sometimes I want to save web pages as archives for future reference. I thought printing as a PDF would be the most widely readable format, but items on the page are often lost and I end up with question marks.
    I have just tried "Save As" to a web archive, and that works well in Safari (meaning that Safari can reopen it perfectly), but when I emailed the file to a PC user they couldn't open it. I assumed a web archive format would be readable by any web browser; obviously that's not the case.
    How do I archive a web page so that it is universally readable without losing any content?

    A web-link won't work because the particular page I want to send requires a subscription. The story about this particular page I want to send: four of us are planning a 7-day hiking trip through some Tasmanian wilderness, and we don't go unless the weather forecast is fine. I am subscribed to a weather website, but when I send this link:
    http://www.weatherzone.com.au/models/meteogram.jsp?lt=twcid&lc=9350
    they don't get the meteograms (graphs of various weather aspects out to 10 days).
    So, I want to save the particular page and send it off. In general, though, I simply want to archive certain pages.
    In my limited testing it looks like:
    • Safari can't save a web page accurately;
    • Firefox can, but it generates a separate folder of files ( I would have to combine the two, then zip them, then email);
    • iCab may be able to, but I haven't tested it yet.
    I didn't think saving a web page, incorporated into a single file, would be so complicated.

  • Acrobat Reader DC Save Folder

    I have just upgraded to Acrobat Reader DC. The problem is that I had a shortcut to a commonly used drive in the default location. However, now this does not help me as it does not show the shortcut. I am also unable to create a shortcut since it does not show a specific folder. It also does not save my shared drive as a recent folder. Is there something that I can do so that I won't have to click on choose a different folder then have to scroll for my shared drive each time. This is done thousands of times per month and always to the same location. Thanks for the help.

    If you do not use online storage, you can change the Save As dialog to Windows' Save As dialog.
    Steps:
    1. Launch Reader DC.
    2. Go to Edit > Preferences.
    3. Select General from Categories.
    4. Uncheck "Show online storage when saving files" option.
    5. Click OK button.

  • Milo: "The settings you choose in Save Adobe PDF dialog...

    Something has changed in CS4 for me on my XP based PC.
    When I try to save a PSD as a PDF now, I get a box that pops up with the message
    "The settings you choose in Save Adobe PDF dialog can override your current settings in the Save As dialog box".
    "OK" is the only option.
    But beyond the fact that I don't know why this comes up and that I'm taken to another screen with the title "Save Adobe PDF"
    where I have to click  "Save PDF", one of two things then happens:
    1)  I click Save PDF and no PDF is created in the folder OR
    2)  I click Save PDF, the PDF IS created, but my PSD goes away and I'm being show the .pdf file in Photoshop.
    Hoping someone recognizes what could be behind all this.
    In your response, please remember that I'm not all that much of a tech-y and my system knowledge isn't deep.
    Thank you so much!

    ***You chose File --> Save As... instead of Save Copy. Normal behavior - the PDF becomes your working file,
    *** but if you ever saved your original PSD, it will still be there.
    I've pasted a number of screen prints at http://www.improventures.com/temp/temp2.htm including one showing
    that my version (11.0) of CS4 does not have a Save Copy option.  But I've been using Photoshop CS2 and CS4 for years
    and I don't think I've ever had to do more than say "Save As..." and choose PDF to make a copy of the current
    PSD as a PDF without leaving the PSD.  It certainly works that way for .jpg, making a copy without leaving the
    original PSD!  But I guess it's possible that I've done this infrequently enough that I have that wrong...but it still doesn't
    explain why I'm being taken to the "Save Adobe PDF" screen instead of the "Save As..." like I had been.
    Or why I'm missing the Save Copy option you mention.
    ****Your PDF options have a conflict somewhere, so no file is saved. Hard to tell  without seeing your settings.
    I've pasted a BUNCH of those setting on the webpage above, hoping to help diagnose this because I'm sure stumped.  Though I may have found it...I have a feeling one cannot create a PDF from a multi-layered PSD.  When I saved a copy and flattened it, that version created the PDF correctly!
    *** As for the warnings - normal and "good software design" Simply have them not  show again by clicking the checkbox, if they are annoying you...
    oh, now, I may not be tech-y, but that much I knew.  :-)  he he.   It's not the fact that it's telling me this that's the problem.  It's the fact that either I should only be taken to the Save As screen or that I think I have something "off" in my PDF settings, as you say.
    Thanks, Myl!

  • Why can't I save a home page in Yosemite?

    I have tried several times to save a home page in the preferences folder, but Yosemite reverts to its own search engine.

    Is this Safari 3 or Safari 4?
    You have to wait for the PDF to be 100% loaded before the Save As option is available.

Maybe you are looking for

  • Mini no longer detecting Sony firewire DL dvd burner

    Hello, I picked up an external sony dvd burner for cheap and it worked fine for quite some time. My mini only has a cd burner so it was a perfect solution. I was using Toast with it just fine. Out of no where my mini does not pick it up at all. I kno

  • How do I get all my ID3 ratings into iTunes?

    Hi Have recently moved to Mac from Windows. I have over the years rated thousands of my songs on Windows on various software like Windows Media Player and Media Monkey. Now I have moved to Mac iTunes does not show any of the ID3 tag stored ratings. H

  • Problem in extending material master data using BAPI?

    Hi all, I have created a program to upload material master using BAPI_MATERIAL_SAVEDATA WITH VIEWS Basic view, purchase view, account view , storage view and MRP view. I am successful while uploading this data while not  taking  the valuation type  f

  • Is any one having problems with Lion, I feel like it is the 1980's all over again

    bad experience with lion download, worse experience with apple store, is this the 1980's all over again?

  • Returning a Large ResultSet

    At the momoent we use our own queryTableModel to fetch data from the database. Although we use the traditional (looping on ResultSet.next())method of loading the data into a vector, we find that large ResultSets (1000+ rows) take a considerable amoun