I did a presentation with many images and animations, now I need to change only the images without modify the related animations. How can I do it?

I did a presentation with many images and animations, now I need to change only the images without modify the related animations. How can I do it?
I use Keynote 09

Select the image you want to change and go to Format Menu>Advanced>Define as Media Placeholder (or command, option, control i).

Similar Messages

  • I have purchased a logitec cover with blootooth keyboard and have discovered that auto capitilisation does not work. This is very inconvenient. How can I fix this issue kvp59

    Blootooth keyboard auto capitilisation

    cor-el...I cannot thank you enough!!! It took me a while to wrap my mind around your solution to my problem as well as to have the confidence to attempt what you had instructed me to do. After reading your instructions many times it finally made sense to me as to what I needed to do and not be afraid of making changes in my computer for fear I may do something wrong. After following your instructions and making the change I am now able to use the plugin that works with imikimi.com. Have a great day!

  • I have tried downloading snap chat on my iPad and it says error and that I need to change into my uk account ???? How can I change so I can download my app

    I need help ASAP , I have tried to down load snapchat an app and it says it cannot be purchased on a u.s account and that I need to change into my u.k account but I have no clue to what that means and how to change it , I live in the u.k so I'm confused and really need help thank you

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the region where you are located.
    9. Tap "Done".

  • I deleted my iChat. I dragged it into the trash, and then emptied my trash. Now I need it back, but when I search it nothing comes up, how can reinstall it again?

    I really need my iChat back, and i can't figure out how to reinstall it!!! I didn't mean to bring it into the trash though, I was deleting old files and accidently deleted the whole application, and emptied my trash. Help please!!!!

    Hi,
    User Tip about Reinstalling iChat 3.x, 4.x or version 5.x
    9:00 PM      Tuesday; November 22, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • BUG: Popup in page fragment; with many regions and popup binded to backing.

    BUG: Popup in page fragment; with many regions and popup or parent binded to backing bean.
    JDEV11.1.2.1 Popup will not popup.(sometimes works if using RichPopup.Show() in backing bean Java code.)
    I have a bug (Popup will not popup)that only happens when I have more than one of the same region.
    And I have a popup in the page fragment is binded to backing bean.
    My SR guy is out today but we plan to enter one.
    test.jspx
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core">
        <jsp:directive.page contentType="text/html;charset=UTF-8"/>
        <f:view>
            <af:document title="test" id="d1">
                <af:form id="f1">
                    <af:panelGroupLayout id="pgl1" layout="horizontal">
                        <af:outputText value="BUG JDEV11.1.2.1 and IE7. Broken Popup! If I have a jsff fragment and I have many regions of this fragment."
                                       id="ot2"/>
                        <af:outputText value="Inside the fragment I have a popup. If that popup or its parent are binded to a Backing Bean the popup doesn't work."
                                       id="ot1"/>
                    </af:panelGroupLayout>
                    <!-- with a single region it also works (with bindings in place in fragment). -->
                    <af:region value="#{bindings.taskflowemp1.regionModel}" id="r1"/>
                    <af:region value="#{bindings.taskflowemp2.regionModel}" id="r2"/>    
                    <!--
                    <af:region value="#{bindings.taskflowemp3.regionModel}" id="r3"/>
                    <af:region value="#{bindings.taskflowemp4.regionModel}" id="r4"/>
                    -->
                </af:form>
            </af:document>
        </f:view>
    </jsp:root>region.jsff
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
              xmlns:f="http://java.sun.com/jsf/core">
      <af:group id="g1">
      <!-- If I remove the binding for popop or popup group, the popup works fine. -->
    <!--Working code here
        <af:group id="g2">
          <af:popup childCreation="deferred" autoCancel="disabled" id="p1" >
        -->
           <!-- Problem code here   -->
        <af:group id="g2" binding="#{TestBean.popupGroup}">
          <af:popup childCreation="deferred" autoCancel="disabled" id="p1" binding="#{TestBean.testPopup}"> 
            <!-- End problem code -->
            <af:dialog id="d2" title="Dialog Title">
              <f:facet name="buttonBar"/>
              <af:outputText value="Dialog Contents" id="ot100"/>
            </af:dialog>
          </af:popup>
        </af:group>
        <af:panelGroupLayout id="pgl1">
          <af:panelBox text="Region" id="pb1">
            <f:facet name="toolbar"/>
            <af:commandButton text="showPopupBehavior" id="cb1" >
              <af:showPopupBehavior popupId="p1"/>
            </af:commandButton>
            <af:commandButton text="AdfPage.PAGE.findComponent JavaScript" id="cb2" actionListener="#{TestBean.popupTestJavaScript}"/>
            <af:commandButton text="RichPopup.Show() Java" id="cb3" actionListener="#{TestBean.popupTestJava}"/>
          </af:panelBox>
        </af:panelGroupLayout>
      </af:group>
    </jsp:root>TestBean.java
    package view;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    import oracle.adf.view.rich.component.rich.RichPopup;
    import org.apache.myfaces.trinidad.component.UIXGroup;
    import org.apache.myfaces.trinidad.render.ExtendedRenderKitService;
    import org.apache.myfaces.trinidad.util.Service;
    public class TestBean {
        private RichPopup testPopup;
        private UIXGroup popupGroup;
        public TestBean() {
        public void setTestPopup(RichPopup testPopup) {
            this.testPopup = testPopup;
        public RichPopup getTestPopup() {
            return testPopup;
        public void popupTestJava(ActionEvent actionEvent) {
            if(testPopup != null){
                RichPopup.PopupHints ph = new RichPopup.PopupHints();
                testPopup.show(ph);
            }else{
                System.err.println("TestBean.testPopop IS NULL!");
        public void popupTestJavaScript(ActionEvent actionEvent) {
            showPopupTest("r1:0:p1");
        private static void showPopupTest(String popupId) {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ExtendedRenderKitService service =
                Service.getRenderKitService(facesContext,
                                            ExtendedRenderKitService.class);
            service.addScript(facesContext,
                              "AdfPage.PAGE.findComponent('" + popupId + "').show();");
        public void setPopupGroup(UIXGroup popupGroup) {
            this.popupGroup = popupGroup;
        public UIXGroup getPopupGroup() {
            return popupGroup;
    }

    Thanks that fixed the problem.
    "a user error"
    Well I followed your book! Chapter 6 of the "Oracle Fusion Developer Guide - Working with Bounded Task Flows in ADF Regions". I think this comes back to book writer error. I found almost no mention of BackingBeanScope in this chapter. Don't you think this would be an important note?
    "did you know that there is a Java API (on the RichPopup instance) to launch a popup ?"
    Yes I posted in my code! If you read the above code you would see it there.
    I don't really understand why the scope of the bean has anything to do with af:showPopupBehavior or AdfPage.PAGE.findComponent.

  • I have an iphone 5 on contract with 3 but the speaker isn't working , I've spoken with my provider and they said I need to take it back to an apple store .is this correct ? Many thanks

    I have an iphone 5 on contract with 3 but the speaker isn't working , I've spoken with my provider and they said I need to take it back to an apple store .is this correct ? Many thanks

    If you received you phone as part of the contract then surely from a legal pov your contract is with 3 not Apple unless you bought Applecare, if you bought your phone outright then put your 3 SIM into it then yes you'd have to visit an Apple store with your phone's purchase receipt.

  • How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

    How can I filter to find photos NOT pinned to a map? I have 28,000 phots with many mapped and many not. The Search function does not include GPS data. I haven't found  way to search metadata inside or out of Elements.

  • I would like to know if there is a wireless presenter with laser point and vibrating alerts that is compatible with MAC?

    I would like to know if there is a wireless presenter with laser point and vibrating alerts that is compatible with MAC?

    Any device that Palm manufaturers currently should be able to get the data from the older device.
    Although Palm doesn't make handhelds anymore you can get a smartphone and transfer the data over to it without issue.
    If you go to the new WebOS you can transfer the data over it just might take a little work.

  • When previewing images by clicking on the thumbnail in an Event for example, I've been finding that many images preview in a 'zoomed in' way so only a small part of the photos is previewed in a highly magnified view.

    When previewing images by clicking on the thumbnail in an Event for example, I've been finding that many images preview in a 'zoomed in' way so only a small part of the photos is previewed in a highly magnified view.
    Initially I could find no cause. Then I tried right click - Edit and on the affected images, always get this warning:
    "Image Cannot Be Edited - This photo was previously edited with another application or with an early version of Iphoto. Duplicate this photo to edit it." and a "Duplicate To Edit" Button is displayed. 
    The external Editor defined for iPhoto is Adobe Photoshop Elements.
    Now, I reckon the MUST be others out there affected by this same apparent Preview bug, yet my searches have not revealed any answers.  Also seems impossible to find a contact number for adobe???
    Thanks

    Start '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in Safe Mode]''' {web Link} by holding down the '''<Shift ''(Mac Options)'' >''' key, and then starting Firefox. Is the problem still there?

  • I have a Photopshop Elements 10.0 on my Mac, I purchased it in English, did an upgrade of my Mac to OS Yosemite and suddenly the language of  Photoshop is German. How can I fix this ?

    I have a Photopshop Elements 10.0 on my Mac, I purchased it in English, did an upgrade of my Mac to OS Yosemite and suddenly the language of  Photoshop is German. How can I fix this ?

    I have found another solution.  I upgraded to Yosemite and found the the App Store version of PSE 10 (which didn't change) was suddenly in German.  Close PSE if it is open.  Use the Finder and go to the PSE 10 application in the Applications folder.  Right click (or ctl-click) on it and select "Show Package Contents".  Then go to Contents>Locales and delete the de_DE folder.  (I imagine you could also rename it to something starting with a letter after "e".  I think PSE is probably using the first language it comes to in this Locale folder.)  Start PSE.  It worked for me.  Hope this helped.

  • My ical is not populating after i reinstalled my operating system - my Outlook 2011 is ok but I now want to sink my iphone 4 with my outlook and i presume i need ical to be populated for this

    My ical is not populating after i reinstalled my operating system - my Outlook 2011 is ok but I now want to sink my iphone 4 with my outlook and i presume i need ical to be populated for this

    Generally this is a sign that the iPhone had previously been
    hacked/modified/jailbroken and the update relocked it to the
    original wireless carrier. If this is the case, only that wireless
    carrier can unlock your iPhone. You must contact them to see
    if they offer unlocking and if you qualify.
    Where did you acquire this iPhone?
    What wireless carrier did you use before this problem?
    Does the app Cydia appear on your iPhone?
    What does it say when you look at Settings=>General=>About=>Carrier?

  • This morning my PB G4 would not get to the password screen after power on.  I have rebooted many times and very loud noises (like a HD spinning/rubbing) emits. Tried the Install disk and it cannot find the hard drive. Ran HW test and got a "Mass storage E

    this morning my PB G4 would not get to the password screen after power on.  I have rebooted many times and very loud noises (like a HD spinning/rubbing) emits. Tried the Install disk and it cannot find the hard drive. Ran HW test and got a "Mass storage Error Code" message.
    Did my HD just crash and unrecoverable?  Time to replace my notebook?

    I believe your hard drive has failed. Hope you have a backup.
    Failing Hard Drive Sounds http://datacent.com/hard_drive_sounds.php
    Listed by drive manufacturer.  Click on the > next to the drive & you will hear the typical failure sound.
    How to Tell When Your Hard Drive is Going to Fail
    http://www.lifehack.org/articles/technology/how-to-tell-when-your-hard-drive-is- going-to-fail.html
    Grinding And Clicking – Symptoms Of A Failing Hard Drive
    http://pcperformancetools.com/getdata/grinding-and-clicking-symptoms-of-failing- hard-drive.html
    Failing Hard Drives
    http://losangelescomputerhelp.com/computer_networking_news/failing-hard-drives.h tml
     Cheers, Tom

  • I've been texting my friend with iMessage with wifi on and all of a sudden it changed to text message and won't let me send messages. My wifi is still on and working but it won't switch back to iMessage. Please help

    I've been texting my friend with iMessage with wifi on and all of a sudden it changed to text message and won't let me send messages. My wifi is still on and working but it won't switch back to iMessage. Please help

    What I recommend you try doing first is to turn iMessage off then back on.  If that doesn't work, make sure that your Apple ID and password are correct.  If everything seems correct and you still can't send out messages using iMessage instead of text message, I think you should either try calling AppleCare at 1-800-MY-IPHONE (1-800-694-7466) and/or scheduling an appointment at the Genius Bar at an Apple Store (that is, if there's one close to you).
    Hope this helps!

  • Does anyone know how to display (in LabVIEW) the memory use during execution of an image and data acquisition VI to predict when it is time to cease the acquisition to prevent the program crashing?

    Does anyone know how to display (in LabVIEW) the memory use during execution of an image and data acquisition VI to predict when it is time to cease the acquisition to prevent the program crashing?
    I am acquiring images and data to a buffer on the edge of the while loop, and am finding that the crashing of the program is unpredictable, but almost always due to a memory saturation when the buffers gets too big.
    I have attached the VI.
    Thanks for the help
    Attachments:
    new_control_and_acquisition_program.vi ‏946 KB

    Take a look at this document that discusses how to monitor IMAQ memory usage:
    http://digital.ni.com/public.nsf/websearch/8C6E405861C60DE786256DB400755957
    Hope this helps -
    Julie

  • I was trying to add an itunes library to my computer, and now my itunes library can not be found. An ipod can be synced with only one iTunes library at a time. How can I find my Itunes library, complete with playlists ?

    I was trying to add an itunes library to my computer, and now my itunes library can not be found. An ipod can be synced with only one iTunes library at a time. How can I find my Itunes library, complete with playlists ?

    I have the same problem too and tried alot of things like time zone , restarting or changing DNS of wifi connection to 8.8.8.8 still nothing happens .. !!
    iPhone 5s, iOS 8.3

Maybe you are looking for

  • Problems processing a large batch of data within a Weblogic 5.1 cluster

    I have about exhausted my sources of information on this, so I ask the           experts:           The project I am involved with is attempting to build a scheduled           process on a 5.1 cluster which will retrieve hundreds to thousands of     

  • OEM Installation Failed when Upgrading from 10.2.0.4 to 11.1.0.7

    I was upgrading a single instance from 10.2.0.4 to 11.1.07 on Unix. The OEM has never been installed before. I tried to install the OEM during the DBUA upgrade. And it failed. Parts of the log file look like this. Jun 22, 2009 6:58:01 PM oracle.sysma

  • Lightroom Photo Border Bug ?

    I have an issue where my Lightroom seems to display images correctly but once it sends them to the printer they get cropped differently. I did some digging around with the numbers and came to the conclusion that this is probably a bug or a feature th

  • Saving an Interactive Form WITH filled in data

    Scenario: We have created an interactive form in the ABAP environment (SFP). The user receives the interactive PDF form as an eMail attachment. The user needs to fill in the form AND save it WITH the filled in informatiion. Right now, the user cannot

  • Bank Reconcilaiation

    Hello, I got the configuration document in some URL(sap-topjobs) and i configured exactly as same  and now can anyone tell me how to see the result How to reconcile ....... Rag