Getting back old themes in Keynote 13

I upgraded to the new Keynote, and while I like some of the new Apple themes, I'm missing a few that they decided to get rid of. Specifcally, I used the "Imagine" and "Story" themes all the time (I teach), and now they're gone??
Is there any way to get them back?
I use keynote every single day, and I think this might be one of the biggest Apple changes I've ever had to get used to (and I've been using Macs for 20+ years)!

If you upgraded from iWork '09, you should still have a copy of Keynote 5.x in your Applications folder.  It is probably in an iWork '09 folder now.  Anyways, if you still have it then you should be able to create documents using those two themes.  Once you do that, you can then open them in Keynote 6 and go to "Save Theme…" in the File menu.  Then you will be asked if you want add it to your theme chooser.  After adding it, you will now see a My Themes tab in the theme chooser in Keynote 6.  Hope that helps.

Similar Messages

  • I previously uploaded images onto my desktop to work on in Lightroom 5.2. I worked on a few of the images days ago and just now getting back to them. My problem is I can only access the images I previously worked on and all the rest it says images not ava

    I previously uploaded images onto my desktop to work on in Lightroom 5.2. I worked on a few of the images days ago and just now getting back to them. My problem is I can only access the images I previously worked on and all the rest it says images not available but all the images are still right on my desktop.

    ... and all the rest it says images not available
    Normally this happens because you moved, renamed or deleted these photos (or the folders that contain them) outside of Lightroom. This is how to fix the problem: Adobe Lightroom - Find moved or missing files and folders

  • Get back old Photo Booth effects?

    Is there anyway to change the given effects in Photo Booth and get some old ones back? Or do I just downgrade PB in general?

    If you are not running Lion, you probably won't have these new effects. Lion comes with some cool new features like full screen Photo Booth, or new Photo Booth effects. If the person who posted the pic was your friend or family member, just ask them how they got those effects.

  • How can I get back old issues from my TIME app?

    Hi, I hope someone can help me.  I've been trying to get help for a month now.  I had purchased several issues from TIME app but when I just got my ipad 2, I couldn't get the issues back.  I used the same ID and password.  I decided to try buying a new issue and when I did, I had an email from itunes warning me that it was not my usual ID.  I am very confused.  I wrote to TIME and they say I should contact itunes.  I have spent hours trying to contact itunes for help.  They seem uncontactable.  Can someone please tell me if I can somehow get my old issues back?
    Karen

    If they were not backed up or part of photostream, then no, you cannot.

  • How Do I Get My Old Themes Back?

    I had to wipe my hard drive and reinstall my Operating System and Applications including iLife06. But all I have are the recent 6.0 iDVD themes. Anyone know how I can get the 5.0 and 4.0 versions back?

    That's nuts... Don't you get free support with iLife '06? Call Apple and report that.
    Seems I recall an option to install those... No?
    Do you have any previous versions of iLife?

  • How can i get back old text messages? from the iphone 4s

    i need to retrive old text messages that were deleted off of my iphone but i dont know how to get them back? any help please!! let me know. thank you!

    Only way is to restore from your backup, if that backup included those text http://support.apple.com/kb/HT1766

  • How do I get back old emails that were lost when I changed my email address?

    I changed email providers. I have the new account set up. I then went to Tools/Account Settings/Account Actions. I then removed the old account (assuming that it would stay in my inbox and just not try to send or receive) and all of the old incoming and sent emails that I had been saving under that account in my inbox and sent files folders disappeared. How do I get them back?

    Which program do you use for email: Thunderbird? Outlook Express? Other?
    As you may know, you can set up accounts using two different protocols: POP3 and IMAP. With POP3, you actually download copies of all mail and Sent messages are stored locally. Removing your account should be no problem. With IMAP, you are viewing a mirror of your mail which really lives on the server. Removing an IMAP account might remove the folders, although I can't recall ever trying it.

  • How to get back old windows view on photoshop cc?

    Hey all,
    It seems like somebody else must have asked this question at some point... but here it is again, because I can't find the answer! The old PS windows view was exactly what I needed. (the option for one or multiple views of the same file in different non-floating windows, located in the center menu bar. Mine is in 5.1.) It isn't there in PS CC (in the default view or any other that I can find, anyway.) I really need to have this so that I can display and compare several slightly different working versions of the same file side by side, one on top of the other, etc. This is also the easiest and most straightforward way to easily drag content from one comp to another, IMHO, but that's not the biggest issue. Being forced to work with floating windows as the only option is just not something I'm willing to do. It's almost getting to the point where this is the biggest single issue that would keep me from moving to CC.
    Is there any way of bringing back this old windows view option? It's hard to believe that there wouldn't be-- I can't be the only one who needs this for the best workflow-- but who knows... All thoughts and info appreciated.

    Look under Window>Arrange.
    The Application Bar was removed starting in cs6, but all the same stuff should be under Window>Arrange

  • Get back old values into Form Building Application

    I have a database trigger that raised an error message when a record is no allowed to change/update. I would like to know how I go back to the old values and reflect these into my application.
    I use Oracle Forms Building Version 9.0.2.10.1 (Production) under Window XP system. Below is the database trigger code:
    CREATE OR REPLACE TRIGGER "DBDSCHM".AAPT_REVIEWS_BUR
    BEFORE UPDATE ON AAPT_REVIEWS
    REFERENCING OLD AS OLD NEW AS NEW
    FOR EACH ROW
    DECLARE
    Aaap_approved          EXCEPTION;
    BEGIN
    IF (Aapfn_List_Items_Desc(:OLD.AREV_STATUS) = 'APPROVED' AND
    :OLD.AREV_CREATED_BY = 'AAPTRF' AND
                   :OLD.AREV_MODIFIED_BY = 'AAPTRF') THEN
    RAISE Aaap_approved;
    END IF;
    EXCEPTION
    WHEN Aaap_approved     THEN                                                            RAISE_APPLICATION_ERROR(40509,'This Review cannot be modified. '||
         'AAP Approved prior to Conversion');
    END aapt_review_bur;
    SHOW ERROR

    Thanks John, but the proposed of this trigger is to prevent any user to update the records that were loader prior to the Data Loader. That is the reason that this trigger has a condition to compare the old value with the new value. Please, see the syntaxes below:
    CREATE OR REPLACE TRIGGER "DBDSCHM".AAPT_REVIEWS_BUR
    BEFORE UPDATE ON AAPT_REVIEWS
    REFERENCING OLD AS OLD NEW AS NEW
    FOR EACH ROW
    /* This trigger prevents to modify any AAP review */
    /* that was already approved PRIOR TO THE Conversion.*/
    BEGIN
    IF (Aapfn_List_Items_Desc(:OLD.AREV_STATUS) = 'APPROVED' AND
    (:OLD.AREV_CREATED_BY = 'AAPTRF') AND (:OLD.AREV_MODIFIED_BY = 'AAPTRF')) THEN
    RAISE_APPLICATION_ERROR(-20090,'This Review cannot be modified. AAP Approved prior to Conversion');
    END IF;
    END aapt_review_bur;
    What I really want is that when the above trigger fire and the user receive the raise application message meaning that the user could not updated the record. But the wrong value still show on the form and it will keep getting this error until you put back the previous value. What I really want is to be able to raise the application error and to show back any values that were tried to modify.

  • My iPad crashed when I updated latest iOS software. After resetting the system, I am unable to get back Pages, Numbers and Keynote Apps. Anyone has same problem? And how can I get back the apps?

    My iPad Air crashed after updating latest iOS software. After resetting the system, Pages, Numbers and Keynotes are not available. How do I get the apps back into my iPad?

    You can also re-download the apps.
    App Store>Purchased>Re-download apps

  • Getting back old calendar enteries

    I did not know my options were set that it only stored for so many days. I have changed it to keep them forever now, but I want my old enteries back in my calendar????? HELP PLEASE!

    Hey kellyarps,
    Welcome to the BlackBerry Support Community Forums.
    Do you synchronize your calendar with Outlook?  You can perform a synchronization with all calendar entries to re-add these entries.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Is it possible to get back old music and videos i've bought through the store? I'm on a different computer

    I'm on a new computer and i have bought a movie and alot of music but i'm on a new computer is there anyway i can get my music from my account? Even if i'm not on that computer anymore? I'm a little annoyed since i used some of my own money to buy a whole lot of that music.. Someone told me i can connect me ipod to the itunes and the music will go over to it but it wont show my video b/c i'm old school and have the old ipod...

    Go to the iTunes Store, log into your account, and click the Purchases link under the Quick Links. From there you should be able to re-download some or all of your purchased content. Note that not all content has been licensed for re-downloading in all countries at this time; you can see what content you can download here:
    http://support.apple.com/kb/HT5085
    You can also do this from an iOS device.
    For more information, see:
    http://support.apple.com/kb/ht2519
    Or you can just copy the content over from your old computer, or restore from your backup.
    Regards.

  • Help Get back old Address Book

    I recently had some type of virus sending out a link from my contact book through Yahoo!, but only while my computer was physically turned off. I read online other people having this problem deleted their address book to get rid of it. I did that assuming I could delete it, then sync from my Mac Address Book.
    Except it went the other way, now both are empty. I really want my address book on my Mac back as it linked BDays to Calendar and had photos of everyone.
    Can someone tell me how to do this? I tried going into Time Machine to before I deleted, but it did not work. I assume restoring the Address Book only restores the software not the data it held. Can I restore the data that was in the Address Book at a given point?
    I appreciate any help.

    On your first point I agree, I could have avoided this by simply backing up my Address book data - takes a few seconds and it was silly not to.
    On your second...It could very well be a coincidence that the email went out while the computer was turned off. It is a fact that an email went out (twice - 6 weeks apart) from my account to my entire Yahoo! contact list containing only a link to something malicious that luckily only one person clicked on and required their computer to be wiped. I promise you it does in fact exist. It was very much in my sent box and most friends replied immediately to let me know it happened.
    I am sure you see the idiocy in your comment that if it hasn't happened to you, or anyone you know - it doesn't exist.
    Anyway - it worked perfectly, I do appreciate your time. By chance do you know if there is some literature or a site that explains how the Sync works. What I mean is, for example, my wife and I both sync our calendar and contact lists through Mobile Me. If we both make changes between syncs, does it make both match the one that made the most recent change, or can you set up some type of master? I don't mind looking for the answer myself, but if you know a starting point I'd appreciate it.
    Thanks again.

  • Created new iPhoto library and can't get back old one?

    I was importing photos from my iPhone to my MacBook Air and it got stuck on one photo and wouldn't move. It wouldn't let me quit the application so I had to restart my computer. When I turned it back on it told me it had detected inconsistencies and stuff, so I let it do it's thing, but then it told me that I needed to create a new iPhoto Library. I did, then the next time I opened iPhoto, it was on this brand new, totally-clear-of-any-photos Library. Where have all of my photos gone? How can I go back to my old photo library? Help!

    Hold down the option key while launching iphoto until the select library window appears - how many libraries do you see?
    Probably the quickest recovery is to restore your backup from just before you had the problem
    LN

  • Getting back old settings

    i am having a problem with the that tool bar is set up. my firefox updated and change the settings, i have a search engine by the tabs on the window that i cant get rid of. Also when i open a new tab that search engine is what open not the most opened windows page. How do i get rid of the search engine and set the most open window page as my new tab?
    thank you

    hello stawberry235, this sounds like a problem possibly caused by adware/malware on your pc. please go to firefox > addons > extensions & remove any suspicious entries (toolbars, things that you have not installed intentionally, don't know what purpose they serve, etc). also go to the windows control panel / programs and remove all toolbars or potentially unwanted software from there and do a full scan of your system with the security software that you have in place and/or a different tool like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes].
    [[Remove a toolbar that has taken over your Firefox search or home page]]
    [[Troubleshoot Firefox issues caused by malware]]
    afterwards you can also install the search reset addon - it will revert the most common customziations those adware programs do in firefox back to the default: https://addons.mozilla.org/firefox/addon/searchreset/

Maybe you are looking for

  • Windows 7 laptop can't connect to new Airport Extreme.

    I had a NetGear router, but got fed up of not being able to use all of my devices, so I bought the AirPort Extreme and use the NetGear as a modem (wireless turned off). Our iPads, iPhones, Macbook, Windows Vista laptop and desktop all connect fine, b

  • BAPI for ME32K

    hi I need to change the payment term and inco term of a contract agreement within a update task ,i tried BAPI_AGREEMENT_MAINTAIN but a call transaction is called inside this BAPI so dumb is occuring. Then i tried BAPI_CONTRACT_CHANGE ,but error is ge

  • Update process form

    I want to be able to update a process form (AD User) before the user is created by using a process task instead of pre-pop. I did a search on the forum and found this: searchMap.put("Objects.Name", "AD User"); objresultSet = moObjectUtility.findObjec

  • Importing PDFs into Photoshop

    Hi, Easy question I assume, but for some reason am stuck. Have been creating linework in CAD and printing to PDFs. Set up a new document in photoshop, A1, 300ppi, RGB colour 8 bit. When I go to 'Place' the PDFs into the blank document, all the linewo

  • Just got T61...some questions on finger/hand print

    I have been a loyal customer for Dell number of years. But, I have been sick of their poor build quality. For example, I have seen that a part of the palm rest area of my current laptop (Inspiron 6000) was completely peeled off (I can see beige color