I am unable to save a keynote file as powerpoint. The 'save as' option is not showing in the files menu

Hi, I downloaded the Keynote from the App store. I shoudl be able to save the presentation as a powerpoint, but the 'Save as" option is not showing in the file menu. Please help with a solution.

Export
If you are using Lion, there is no Save As in iWork apps. It is no longer a menu item.

Similar Messages

  • The "save as" option does not show up when selecting the "file" selection

    Recently installed OS X 10.9.2  When using Numbers the "Save As" option no longer is displayed under "File".  The help screen indicates that it should.  Any suggestions?

    AS,
    Thte Save As... command is an optional command in the File menu. To reveal this command, press the Option/Alt key while viewing the File menu.
    Jerry

  • Hi I am using MAC OS Yosemite 10.10.2. I am unable to save images post processing in CC 2014. Error given - "Unable to save image Write Access not granted"

    I am a new user to the Photoshop CC 2014. I am unable to save images post processing. Error given is "Unable to save image Write access not granted". Can some one please help me with this.
    I am using Mac OS Yosemite Version 10.10.2
    Regds
    Shashi

    In a finder window highlight and right click the folder you are trying to save to and select Get Info. In the window that opens look at the bottom to see if you have Read/Write permissions. If you don't click the Plus sign and add your Admin Username to the list and give it full Read/Write permissions.
    Open Disk Utility and on the First Aid tab select Repair Permissions and let it run.

  • I am making my first keynote presentation.  I transferred the slides from a power point.  I did not use a 'theme' from keynote.  Keynote will not let me 'name' the presentation and the 'save as' option will not come up in the menu.  What have I done wrong

    I am making my first keynote presentation.  I transferred the slides from a power point.  I did not use a 'theme' from keynote.  Keynote will not let me 'name' the presentation and the 'save as' option will not come up in the menu.  What have I done wrong

    When it comes to Keynote, I try and start with a presentation that's 1680 x 1050 preset or something in that range.  Most projectors that you'll get at a conference won't project much higher than that and if they run at a lower resolution, it's better to have the device downsize your Keynote.  Anything is better than having the projector try and upsize your presentation... you work hard to make it look good, and it's mangled by some tired Epson projector.
    As far as slides go, scan them in at 150 dpi or better, and make them at least the dimensions of your presentation.  Keynote is really only wanting 72dpi, but I do them at 150, just in case I need to print out the presentation as a handout later, and having the pix at 150 dpi gives me a little help with their quality on a printer.
    You'd probably have to drop in the 150 versions again if you output the Keynote to .pdf or Word or something, but at least you have the option.
    And Gary's right (above) go ahead and scan them as TIFFs.  Sooner or later you'll want to do something else with these slides (like make something for an iPad or the like) and having them as TIFFs keeps your presentation looking good.
    Finally, and this is a big one, get to the location for your presentation ahead of time if you can, and plug the laptop in and see what you get.  There's always connection problems. Don't let the AV bonehead tell you everything will work just fine ('... I don't have any adapters for a Mac...') .  See it for yourself... you're the one that's standing up there.  Unless it's your boss, then you better be really sure it works.

  • To download file but still the Save Dialog box still not show? Please help.

    Hi All,
    Below is my full code to download file but still the Save Dialog box still not show..
    <%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"
    %><%@ taglib prefix="asset" uri="futuretense_cs/asset.tld"
    %><%@ taglib prefix="assetset" uri="futuretense_cs/assetset.tld"
    %><%@ taglib prefix="commercecontext" uri="futuretense_cs/commercecontext.tld"
    %><%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"
    %><%@ taglib prefix="listobject" uri="futuretense_cs/listobject.tld"
    %><%@ taglib prefix="render" uri="futuretense_cs/render.tld"
    %><%@ taglib prefix="siteplan" uri="futuretense_cs/siteplan.tld"
    %><%@ taglib prefix="searchstate" uri="futuretense_cs/searchstate.tld"
    %><%@ taglib prefix="locale" uri="futuretense_cs/locale1.tld"
    %><%@ taglib prefix="dateformat" uri="futuretense_cs/dateformat.tld"
    %><%@ taglib prefix="blobservice" uri="futuretense_cs/blobservice.tld"
    %><%@ taglib prefix="satellite" uri="futuretense_cs/satellite.tld"     
    %><%@ taglib prefix="date" uri="futuretense_cs/date.tld"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %>
    <%@ page language="java" contentType="text/html;charset=UTF-8" %>
    <%@ page import="java.io.File" %>
    <%@ page import="java.io.OutputStream" %>
    <%@ page import="java.io.FileInputStream" %>
    <cs:ftcs><%-- france/test_template
    INPUT
    OUTPUT
    --%>
    <%-- Record dependencies for the Template --%>
    <ics:if condition='<%=ics.GetVar("tid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("tid")%>' c="Template"/></ics:then></ics:if>
    <%
    String fileToFind = request.getParameter("file");
    if(fileToFind == null) return;
    File fname = new File(fileToFind);
    System.out.println("Save As: "+fname.getName() );
    if(!fname.exists()) return;
    FileInputStream istr = null;
    response.setContentType("application/octet-stream;charset=ISO-8859-1");
    response.setHeader("Content-Disposition", "attachment; filename=\"" + fname.getName() + "\";");
    try {
    istr = new FileInputStream(fname);
    int curByte=-1;
    while( (curByte=istr.read()) !=-1){
    out.write(curByte);
    out.flush();
    } catch(Exception ex){
    ex.printStackTrace(System.out);
    } finally{
    try {
    if(istr!=null) istr.close();
    } catch(Exception ex){
    System.out.println("Major Error Releasing Streams: "+ex.toString());
    try {
    response.flushBuffer();
    } catch(Exception ex){
    System.out.println("Error flushing the Response: "+ex.toString());
    %>
    </cs:ftcs>
    Can anybody help me with this??? What is lacking...
    Thank you in advance.

    Put this code into a servlet rather than a JSP.
    JSP are for returning text based HTML pages. It adds extra carriage returns into the response that will corrupt the file, and prevent the dialog showing up.
    This code is much better off being in a servlet
    If you are using a FileInputStream, you should be using a ServletOutputStream rather than the JSP writer: response.getOutputStream()
    When dealing with file input in a JSP/Servlet you should use the methods of ServletContext. getRealPath() turns a website relative file into a real location on disk. getResourceAsStream() opens the file for you. getResourceAsStream() is more reliable as it will work even if the web app is deployed in a packed WAR.
    Cheers,
    evnafets

  • BUG: "Save As" dialog is not showing

    sometimes i have the problem (since CC) that the SAVE AS dialog is not showing.
    the window does not show when i select SAVE AS.
    SAVE works.. but i often want to save a new version without overwriting the old.
    i don´t know why it happens but it seems that BIG files (panoramas or many layers) are affected more often.
    happens 3-5 times a week.
    never had this problem with PS prior to CC.
    my system:
    intel I7 2600K
    16 GB ram
    GTX 770 (latest drivers)
    240 GB SSD (OS windows 7 64 bit)
    120 GB SSD (60GB free for scratch files)
    2 TB harddisk (1 TB free for scratch files)

    Photoshop should not crash even with big files so apparently there is something wrong.
    yeah obviously...
    Have you tried resetting Photoshop's preferences yet? That sometimes cures malfunctions.
    i have resetted the preferences yes.
    photoshop should not crash i agree.... but as you can read here in this forum it does.
    no software is free of bugs.... and i have worked long enough with computers to burry that expectation.

  • Can not under save as type, is not showing extentions before saving

    Can not under '''save as type''', is not showing '''extensions''' before saving / Options '''Save as type''' show only '''Vueprint''' or '''All files'''. Neither allow the visual aid. Thank you for your time.''''''bold text''''''
    Please advise. Don Fl

    If you have upgraded to Mountain Lion, Save As… has returned to the File menu when you hold down the Option/alt key. But you don't really "save" as other file types, you translate & export as Word or RTF or text or PDF & that is easily done by going to File > Export or Share > Export.
    Also, please do us all a favor & don't use all capitals in your posts, either the body of the post or the title. All caps is the internet equivalent of shouting & is very hard to read.

  • I Recently updated the latest firmware ios7 now unable to open my keynote files. Please advise.

    Recently updated to the latest firmware ios7 now unable to open the keynote files which i am getting from my collegues.

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Delete the app and redownload.
    Downloading Past Purchases from the iTunes Store, App Store and iBooks Store
    http://support.apple.com/kb/ht2519
     Cheers, Tom 

  • Keynote file menu missing save as and duplicate

    Running latest versions of mountain lion and iwork--just upgraded, but have this curious problem only in keynote.  When I use shift-command-S get nothing; pressing option activates "close".  I listed this in the keynote forum but no help from there so far... any ideas?  Anyone else have this problem?

    Thanks for the response.  I got a fix for it.  Went to another account on the mac and keynote had the proper file menu options listed.  Under library/Preferences I trashed all the iWork related plist and the Cache file--Rebooted and all was back in order.  Wish I could say I figured this out all by myself, but Apple support walked me through it.  FYI if you run across anyone else with this type of issue.

  • Keynote file menu and file operations very slow

    Anyone else seeing specific slow downs when you open, save, etc or access the file menu on the new version of keynote 5.1 using 10.6.8.
    Any fixes?

    I will try to make a WebDAV repository out of one on Monday. 
    I just tried something different though.  I logged on as a user with administrator rights, it only took 13 seconds to list the directory instead of 3 minutes plus.  The regular user has rights and eventually sees what they should, it is just painfully slow.

  • Phone will save ringtones/pictures but not show them in the media folder.

    As my subject said, my phone will save pictures and ringtones, however will not show them in the media folder, but if I got through the long way, through the "files" icon in applications all of the new ringtones and pictures are there. So any help would be much appreciated, thank you.

    Hello TyRamos and welcome to the BlackBerry Support Community Forums.
    Remove your battery followed by your media card.
    Reinsert your battery first and allow the device to complete the reboot. Once done, insert your media card. You should get a pop saying media card is inserted.
    Go to your Media folder and check for your photos and ringtones.
    Let me know how you make out
    Thanks
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Unable to Create Fact and Dimension tables from the Tools menu in EIS conso

    Hi All,
    In the EIS console, I am unable to create the fact table and the dimension tables to produce my OLAP model from the TOOLS menu whereas I am able to create them by dragging from the left panel where the tables are displayed. I am geeting the below error message:
    "An exception occured while retrieving OLAP model metadata. Please verify you are connected to the catalog and try again"
    Any help appreciated.
    Thanks,
    Raja

    I have fact and dimension tables in one server and i moved those stuff to another server.If I do that what happen to essbase and about totale EPM System.I want to know how to do this and what I can expect?
    Please reply

  • W520: Unable to boot from USB - device does not show up in boot menu

    I have a W520, and I am trying to boot from a USB key. The USB key is bootable, my old T61p boots just fine from it, and so does another computer I tried.
    The W520, after pressing F12 on power on, immediately shows the Intel PXE agent and then some blue boot menu, which only shows hard drive and LAN as available boot options.
    I have tried all three USB ports but the results are always the same - the USB device does not show up. Is there any trick or BIOS setting to enable boot from USB?
    Thanks,
        CS 

    Hello Neil
    Thanks for getting back to me
    The issue was that the usb drives were disabled in the bios from the  Startup menu.
    To enable
    1. Enter bios
    2. Select boot
    3. If you do not see the boot device you require use the down cursor key until the "Excluded from boot priority order" becomes visible.
    4. Select the device you require (in my case USB HDD)
    5. Save and exit.
    You can now boot from a usb stick and install the Linux distro of your choice :-)
    Cheers

  • When quiting Firefox 3.6.17 you get 'SAVE & QUIT' option but not with Firefox 4. How would I do it. Email in detail at barsideboo@hotmail.co.uk

    When upgraded to Firefox 4

    Firefox now always stores the old session, and you can access it by going to the History menu and selecting "Restore Previous Session"
    If you want Firefox to display the message to save the session, it can be turned back on by changing some preferences.
    # Type '''about:config''' into the location bar and press enter
    # Accept the warning message that appears, you will be taken to a list of preferences
    # Locate the preference '''browser.tabs.warnOnClose''', if its value is set to '''false''', double-click on it to change its value to '''true'''
    # Repeat this for these 3 preferences '''browser.warnOnQuit''', '''browser.warnOnRestart''' and '''browser.showQuitWarning'''
    If you always open the last set of tabs, an alternative approach is this:
    # Click the orange Firefox button, then select options to open the options window
    # Go to the General panel
    # Change the setting "When Firefox starts" to "Show my windows and tabs from last time"

  • Unable to saver images in a note within a Test Plan - STWB_2

    Hi all,
    While trying to edit a note in Tx STWB_2 (Test Plans), I'm not able to save an image on it. I can add and save text but no images. Other odd thing is that even when I click on "Save Active", the message "Document saved as raw version" appears. In case of text, the data is saved (as mentioned earlier). No mutter save mode I select the note is always saved as a raw.
    Is this behavior the standard one or should I perform some actions? Could this message be linked to the fact that I canu2019t saved images in my notes.
    Your help is highly appreciated
    Solman Version: 7.1 (Windows server 2008 R2/SQL server 2008 R2)
    Windows Microsoft Office 2007

    Hi all,
    While trying to edit a note in Tx STWB_2 (Test Plans), I'm not able to save an image on it. I can add and save text but no images. Other odd thing is that even when I click on "Save Active", the message "Document saved as raw version" appears. In case of text, the data is saved (as mentioned earlier). No mutter save mode I select the note is always saved as a raw.
    Is this behavior the standard one or should I perform some actions? Could this message be linked to the fact that I canu2019t saved images in my notes.
    Your help is highly appreciated
    Solman Version: 7.1 (Windows server 2008 R2/SQL server 2008 R2)
    Windows Microsoft Office 2007

Maybe you are looking for

  • How can I display and use the full RAW file?

    Hi, my camera (Canon S95) has a sensor with 4:3 aspect ratio and thus saves all RAW files in this format. Additionally, the camera can automatically create JPGs with a cropped ratio (e.g. 3:2 or 16:9). This is very helpful because you can see the tar

  • Error while running forge post Endeca integration with ATG

    Hi All, We have integrated Endeca application with ATG and then tried running the Endeca baseline update script. However the script failed with the below error message Parsing XML dimensions data with validation turned on Parsing project file "C:\app

  • Burning directly to DVD from FCPX fails ...

    When I try and burn from Final Cut Pro X there is no share monitor and it just processes and then does nothing.

  • Ways to configure VISA properties associated with the EOS character in LabVIEW

    I am having a great deal of trouble reading consistently from an instrument (HP5328A Universal Counter) and am investigating the EOS character. In ibic, there are 6 properties of interest accessed through the ibconfig command. The following are the p

  • Landscape v portrait orientations

    Uploaded my book package yesterday.  Received report ticket from itunes connect.  Portrait view doesn't show any of my images.  How do I solve this problem?  I did attempt to copy and past the images from landscape view into portrait.  I ended up wit