Unable to create Keynote Keynote in 2048x1536 px. for iPad w/ retina display. This option doesn't appear under "Slide Size". Keynote 5.1.1.

I have tried creating a Keynote document for iPad 3 but 2048x1536 does not appear under thre options for slide size.
The biggest is 1920x1080. I have updated all software and Keynote is on the latest version 5.1.1. I have tried on two different machines but I get the same issue.
Any ideas what it could be?
Any help appreciated.
Thanks.

you create a custom size:
inspector > document > slide size

Similar Messages

  • Keynote issue: Why does my iPhone 5 not detect my iPad with Retina Display when both devices are up-to-date?

    I have an iPhone 5. I am trying to pair it to my iPad with Retina Display. However, the devices do not detect each other when trying to pair over Keynote.
    My apps and iOS are up-to-date. What is the problem? I have even tried wi-fi. I successfully paired the device to my iMac and it works.

    This is for you and any other person that needs it. I didn't know how to use it properly.
    Therefore, I guess it is operator error on my part.
    You have to go into your Presentation tools and enable the remote from there.
    Thank you for the link.

  • If i selected to "Create a new backup" and then cancelled that option but want to go back and select "Inherit backup history"; how do i go back and do that since now when i plug in my HD, that option doesn't appear anymore?? Any Help?

    If i selected to "Create a new backup" and then canceled that option but want to go back and select "Inherit backup history"; how do I go back and do that since now when I plug in my external hard drive, that option doesn't appear anymore?? Any Help? I bought a MacBook Air, but decided to return it for the newest model, and I wanted to back it up so that I can then back it up on my new MacBook Air. I didn't understand the option to Inherit or start a new back up, and therefore selected the option to create a new backup. I believe I should have selected to Inherit backup history so that when i back it up on the new MackBook Air, it appears the same as the one I'm returning.... Is there anyway that i can re-select the option to Inherit backup history for time machine?

    Thanks for sharing this link.
    I've posted a question here https://discussions.apple.com/message/22049103#22049103 describing my situation. Are you able to suggest me the right option?

  • I have a new computer with Windows 7 professional, Office 2007, Adobe XI. I have just created a word document and tried save it as a PDF but the PDF option doesn't appear in the drop down menu. Any ideas please? Thank you.

    I have a new computer with Windows 7 professional, Office 2007, Adobe XI. I have just created a word document and tried save it as a PDF but the PDF option doesn't appear in the drop down menu. Any ideas please? Thank you.

    What is "Adobe XI" - Reader, or Acrobat?
    But either way, 'Save as Adobe PDF' is a Word function, independent of what Adobe software you have installed.

  • Creating a soft return in Pages for iPad

    I would really like to create a space between numbered items in Pages but I can't figure out how to do it.  Does anyone know how to create a soft return in Pages for iPad.

    daisybrain2663 wrote:
    Why isn't that in the help topics for Pages?  Frustrating.
    I guess that we could ask that question about a few different things Apple related.
    I'm glad that you got the hang of it.

  • HT4623 I have iPad mini retina display purchased in Jan 2014. When I try to download apple numbers, pages & keynote, it asks me for payment though I believe it should come free. Can you please help?

    I wanted to download apple pages, numbers & keynote. I believe it comes free for iPad mini with retina display bought in Jan 14. But these apps ask for payment in my store and not allowing to download for free. Any help?

    How to get all the iWork apps, iPhoto, and iMovie for free on an eligible iPhone or iPad
    http://www.imore.com/how-get-all-iwork-apps-iphoto-and-imovie-free-eligible-ipho ne-or-ipad
    About Free Apple Apps for iOS 7 compatible devices
    http://support.apple.com/kb/HT5913
     Cheers, Tom

  • Unable to create a subtask within a task for cProjects

    Hi All,
    I am unable to create a subtask within a task using BAPI_BUS2175_CREATE. When I pass the GUID of the project definition and fill the corresponding task structures to the BAPI, a task gets created at the phase level. But when I pass the GUID of the task along with the task
    information, subtask does not get created. The BAPI returns the following error message:
    DPR_SHARED 051: You cannot create Task for (Task Name).
    Steps for recreating the error message are:
    1. GUID is found out using function module CONVERSION_EXIT_DPRCE_INPUT.
    2. GUID and task information is passed to BAPI_BUS2175_CREATE.
    3. Task is created if project definition GUID is passed, but if task GUID is passed, there is no subtask created. An error message is displayed:
    DPR_SHARED 051: You cannot create Task for (Task Name).
    Any help would be appreciated.
    Thanks,
    Tom

    Hi all,
    I have used the same and it works absolutely fine.
    here is a code sample
    CONSTANTS:
       lc_rfc_none        TYPE string VALUE 'NONE'.       " RFC on same server
    DATA:
      lv_header_task_guid TYPE bapi_ts_guid-parent_guid, " Header Task GUID
      ls_sub_task TYPE bapi_ts_task,
      ls_sub_task_upd TYPE bapi_ts_task_upd,
      lt_crtask_return TYPE TABLE OF bapiret2,
      ls_extension_in TYPE bapiparex,
      ls_extension_out TYPE bapiparex,
      lv_task_guid TYPE bapi_ts_guid-parent_guid. " Task GUID
    * Assign sub-task name. (Task Number is internally generated)
    ls_sub_task-task_name = 'ST 1.1'.
    ls_sub_task_upd-task_name = 'X'.
    * Assign Sort Number
    ls_sub_task-sort_number = '00010'.
    ls_sub_task_upd-sort_number = 'X'.
    * Assign Duration
    ls_sub_task-duration = 30.
    ls_sub_task_upd-duration = 'X'.
    * Assign Work.
    ls_sub_task-planned_work = 240.
    CALL FUNCTION 'CONVERSION_EXIT_CUNIT_INPUT'
      EXPORTING
        input          = 'H'
      IMPORTING
        output         = ls_sub_task-planned_work_unit
      EXCEPTIONS
        unit_not_found = 1
        OTHERS         = 2.
    IF sy-subrc <> 0.
    ENDIF.
    ls_sub_task_upd-planned_work = 'X'.
    ls_sub_task_upd-planned_work_unit = 'X'.
    CALL FUNCTION 'BAPI_BUS2175_CREATE'
         DESTINATION lc_rfc_none
         EXPORTING
             iv_parent_guid   = lv_header_task_guid
             is_task          = ls_sub_task
             is_task_upd      = ls_sub_task_upd
             is_extension_in  = ls_extension_in
          IMPORTING
             es_extension_out = ls_extension_out
         TABLES
             return           = lt_crtask_return.
    * If task is successfully created,
    READ TABLE lt_crtask_return WITH KEY type = lc_success number = '114'.
    IF sy-subrc = 0.
    * Get task GUID
    lv_task_guid = lt_crtask_return-message_v1.
    CALL FUNCTION 'BAPI_CPROJECTS_COMMIT_WORK'
      DESTINATION
        lc_rfc_none
      TABLES
        return = lt_bapiret2.
    endif.
    In order to find the GUID of the header task use function module:
    DPR_GET_GUID_BY_ID_FROM_DB
    with IV_Number  = task number for the header task and IV_OBJECT_TYPE = TTO
    Read the documentation for 'BAPI_BUS2175_CREATE' before using it.
    make sure you have maintained IS_TASK_UPDATE structure as well.
    Regards,
    Reema.

  • Unable to create SC since commitment already exist for IO

    Hi SAP Guru
    SRM 5.0 / Extended Classic  Scenario / CCM2.0
    1) User has created one shopping Cart  with two line items
    2) Distributed the First Line item to two quantities with different account assignment of internal orders :-
    Quantity 46,090 to IO 20003620
    Quantity 2811 to  IO 20003585
    User has created the credit memo for Quantity 2811 and cancelled the confirmation for this quantity too.
    But still he is saying that seeing the commitment for quantity 2811 in internal order 20003585 and because of that unable to create another SC using this internal order.
    Thanks & Regards
    Jayoti

    Hello Pruthvi ,
    See these threads
    Uninstalling MaxDB
    Work process Ended.
    Thanks
    Chandran

  • How can I create a line break in pages for iPad?

    On the Mac you can hold the shift key while pressing the return key to creat a line break. Only pressing the return key will creat a new paragraph of course.
    On the iPad you only can creat paragraphs. Pressing the shif key does not change that.
    Does anybody know how to force a linebrek on the pages app for iPad?

    Tap and hold where you wish to insert the line break. Select Insert from the pop up menu, then Line break.
    this might be helpful for future reference: http://help.apple.com/pages/ipad/1.7/

  • I am unable to connect my mobile hotspot as wifi for ipad - Always dismiss

    I am unable to connect my blackberry mobile hotspot as wifi for ipad  but during connecting message comes as dismiss

    What router are you using? make/model/version
    What security type are you using? If it is WEP then symbolic (non hex) keys may be converted to hex in different ways by different operating systems. Is your laptop a Windows PC?
    If you are using WEP then drop it and move to WPA2. WEP has been deprecated by the WiFi alliance since 2004 as insecure (it can be hacked in seconds).

  • Genius on iPhone only displays "This song doesn't have enough related songs to create a Genius Playlist"?

    I have 30 days worth of music on my (128 GB) iPhone and it displays the message "This song doesn't have enough related songs to create a Genius Playlist" for even the most popular Beatles tracks. My iTunes library will create Genius playlists with no problem at all, but my phone will not. The only thing I can think of is that I updated Genius after actually putting the music on the phone, but I have turned Genius off/on again on the phone itself to encourage results to be reestablished and yet still nothing. I have also synched the iPhone multiple times since.
    I really do not want to remove and re-add 12,000 (75 GB worth) songs from my iPhone just to get some valid Genius results. Does anyone have a solution?

    It is like the message says. You do not have enough similar songs for Genius to work.
    Genius for iPod and iPhone

  • I am unable to create folders in Pages on my new iPad

    I've tried clicking edit, selecting the documents to have the yellow frame, holding down till they pop up, and dragging them together, but when I release they just spread back out.  Any thoughts?

    Try it again? You seem to be doing it correctly except for one little detail. Just slide the thumbnail slowly on top of another one - not next to it. You don't pull the documents together - unless I am misreading your post. That is what it sounds like you are doing.
    It's basically the same way that you create a folder on a home screen. Try it a couple of times and practice it. If you tap Edit and then you tap a file and get the yellow border and then hold down on that doc until it pops up you are doing everything correctly up to that point.
    If it still doesn't work after a few more tries, quit Pages completely and restart the iPad and try again.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • Unable to create  followup and view transaction types for InteractionRecord

    Hi,
    We are currently working in crm 7.0 environment.
    we are not able to create followup transaction for Interaction Record -
    Transaction Type -  Business activity(0010).
    We are not even able to view the standard transaction types available
    when we select followup both in UI and GuI.
    Any inputs in this regard are rewarded and appreciated.

    Hi sreenicrm,
    Have you configured anything in the "Allowed Channels for transaction types".
    If not, it may be worth copying the standard transation type and then setting the values in the above screens.
    if you set a values of "interaction Center"(IAC) and "CRM Server"(GUI) then you shoudl see the activity.
    I am using CRM 5.0 but would imaging it is similar in 7.0.
    HTH
    Gaz

  • I would like to create instructional videos on 'how to' for iPad.

    Hi,
    I would like to create instructional videos for teachers on how to do various tasks on the iPad.
    At the moment I have an iPad and a PC.
    I have tired an App called 'DispRecorder' to get the capture from the iPad, but I am unable to find an app to add arrows as highlights. Any suggestions?
    Am I going about this the wrong way? Is there are better way? Or are they apps that I cannot find.
    Thanks in advance for your help. It is greatly appreciated.
    Hopefully I will be able to create instructional videos soon.
    Thanks
    Brendon

    With the wireless card in your Mac you can set up a network to which the iPhone can connect: obviously your Mac would have to be on for this to work. Or you could buy a wireless router such as the Airport Extreme, which might not be much more expensive, and use that to connect the iPhone. You could use an Airport Express, but you would need to already have a router so that there was a spare ethernet socket for it.
    This was the best reference I could find for setting up a network from your computer:
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8339.html
    However note that it apparently only supports WEP encryption, which is far from secure, not WPA which is what you should be using.
    Another factor is that if this is a Mac Pro, you may have problems installing the card. As I remember some models can be fitted with a card if ordered with it initially, but retro-fitting is difficult and really needs to be done by an engineer. Given all this I would suggest investigating the Airport Express, bearing in mind the issue of needing a router if you don't have one built into your modem.

  • Is there a way to create my own template on Pages for iPad?

    Hi, I've searched for this topic but can't seem to find a recent thread. I need to know if there's a way of creating a new template for Pages on my iPad. Would love to use the iPad more in school but can't seem to get it to do what we want it to! If this isn't possible then can anyone suggest an App that would be more useful. Many Thanks!

    This was discontinuted in CS5 howerver you could migrate that plugin to CS5.  I don`t know if you can do this with CS6.
    To my knowledge they only provided a revised Contact sheet II script for CS6. In my opinion a very bad idea because they should have put all efforts and resources to enhance the Output Module PDF contact sheet that has far more options.
    Still not using web galleries but the goal for web gallery was also to use this in the Adobe Output Module, maybe that provides you the options you want?

Maybe you are looking for