Problem with ACTION (move, rotate, etc) in iBookAuthor with a Keynote file

Hi everyone,
I'm doing nice keynote animations with ACTION like rotate an image, move an image, etc. That makes great animation on my Mac screen.
But when i put that animation (keynote file) in iBookAuthor as a widget, the actions are not showing correctly on the iPad. I can't see them anymore.
Do you know why?
Tx
Steeve

It would seem that the Keynote widget can only handle the following animations (looks like what you are trying is not included). See http://support.apple.com/kb/HT5067
Transitions and builds
These transitions and builds work with the Keynote widget:
Transitions
Magic Move
Cube
Dissolve
Drop
Flip
Flop
Iris
Motion Dissolve
Move In
Page Flip
Pivot
Push
Reveal
Scale
Twirl
Twist
Wipe
Builds
Appear or Disappear
Cube
Dissolve
Drop
Move In or Move Out
Pivot
Scale
Twirl
Unsupported builds and transitions will be replaced with Dissolve.

Similar Messages

  • Trying to backup one of my iPhoto libraries I keep getting a error message that basically says that the file could not be backed up because there is another file on the external drive with the same name, etc. There is no other file.

    While trying to copy one of my iPhoto libraries to an external hard drive I get the following error message "You can’t copy “iPhoto Library old” because it has the same name as another item on the destination volume, and that volume doesn’t distinguish between upper- and lowercase letters in filenames." There is no other file on the external drive with this name. I have asked this question before and was told that there are some duplicate photos (files) in my library and I needed to go to "show file contents" and look at certain files to find duplicates and delete the duplicates. I did all of this and the library will still not copy and always stops copying in the exact same place on each attempt. Any help would be greatly appreciated.

    You've been deleting your actual Photos.
    Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things, deleting them or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    Best way forward now is to recover the surviving Originals from this library and start over from scratch.
    Regards
    TD

  • I have a problem with IDVD when I have completed a movie and set it up with menus etc I cannot operate the burn button so I cannot make a DVD.

    I have a problem with IDVD when I have completed a movie and set it up with menus etc I cannot operate the burn button so I cannot make a DVD.

    Hi
    Can You
    Go up to File Menu in iDVD - and here down to
    Save as a DiskImage
    If this works - You can burn Your DVD in another way via Disk Util tool
    Yours Bengt W

  • Problem with action links

    I have a relatively simple DVD project with 10 movie sequences each placed on a separate timeline. DVD has just one menu with a Button: "Watch whole movie" which basically sequences all 10 clips and then back to the menu.
    Then I also have 10 Sequence-Buttons on the menu that should only show the respective sequence and then back to the menu.
    1. I set up the action sequence for "Watch the whole movie" m1-m2-m3-m4-m5-m6-m7-m8-m9-m10-menu. No problem with that.
    2. When I then start working on the first sequence button "SCENE 1" the problem starts. What I want is just Scene1-back to the menu. I tried it without and with end action override but then I disturbed the m1-m2-m3-m4-m5-m6-m7-m8-m9-m10-menu sequence.
    I really couldn't figure out this simple task. Maybe somebody can give me a hint. 

    1. I set up the action sequence for "Watch the whole movie" m1-m2-m3-m4-m5-m6-m7-m8-m9-m10-menu. No problem with that.
    Actually, that is the problem. Instead of making the end action of each timeline the next timeline, create a Playlist and sequence the timelines in there. Your play all button links to the playlist. End action of the playlist is Return to last menu.
    Without end actions that go to the next movie, your Scene buttons will work fine. (The end action on each timeline will be "Return to Last Menu."

  • Keynote action "Move" in iBook problem or limitation?

    Hi,
    I have ran into a problem with getting a Keynote animation to play correctly in iBook.
    The Keynote file contains a couple of "move" actions whereby an oject follows a particular path.
    This is replicated three times on the same slide with similar objects following a different path.
    These actions are sequential, not concurrent.
    It works perfectly in Keynote, however when I drag the file into iBook Author and finally view on the iPad, only the first move works and the other move's don't.
    Is this a problem or a limitation?  I find it odd that the first move works but the other three don't. All other builds work normally.
    Many thanks in advance and kind regards,
    /D

    I have replaced the four separate moves by one single, more complex move and this seems to work on the iPad now. It looks like there is a limitation to the number of move actions one can have on a single keynote slide in the iBook. Unless it is an undocumented feature of course  . Still I am interested to know if anyone else has come across this problem.
    Cheers,
    /D.

  • Problem with QuickTime Movies From iMovie HD

    I posted this earlier (on the second day of Leopard's Release), and did not get much feedback, and so thought I'd try again after people have had time to run Leopard.
    I have some movies that I created using iMovie HD. I have the QuickTime version of the movie for use with Front Row.
    On my G5 iMac running Leopard, the quality of the movies on Front Row is fine. However, in Leopard, the quality is lousy. The movies were made from still photos, using the Ken Burns effect. There are also transitions. On the web, on my iWeb site, the pictures take a while to come into focus. I sort of expect this on the web. However, I've found the same thing with the movie files using Front Row on Leopard. Again, this slowness in coming into focus does not appear when playing the movie on Front Row on Tiger on a G5 iMac.
    Curious if anyone else has encountered problems/issues with QuickTime movies files from iMovie HD. And if so, what if any fixes are available.
    Thanks in advance.
    Russell

    Hmmmm, so it works OK in Front Row but NOT in Quicktime player? Thats odd. Front Row works worse for me!
    It sounds like it may be a rendering problem with Quicktime - It has to process the file in general (or parts of the file, for example, if you export 10 pics looped in Flash, it has to process the 10 image files each time it plays it through, resulting in the first 4 or 5 images to shoot out jerkily [read LAG] unlike the rest of the movie, which is smooth). If these images in your movie are large in file size or contain tons of wacky photoshopped effects, etc, that might be whats causing the problem.
    I'd check everything is updated to the latest version, repair permissions on the disk in Disk Utility, and then see if anythings improved.
    Hope this helps you.

  • Problem with JPanel after rotation

    Hi,
    I am developing a graphics editor like mspaint. I have JPanel as my drawing canvas. now the problem is when I rotate the canvas, co-ordinates on the canvas are also getting rotate with it. for example if top-left corner is (0,0) initially then after rotating it 90 degree top-right corner becomes (0,0) and same for all the points on the canvas.
    the code i m using for rotation is
    contentPanel = new JPanel(){
    @Override
    protected void paintComponent(Graphics g) {                       
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    Rectangle rect=g2.getClipBounds();
    if(rotation!=0){
    double angle = rotation * Math.PI/2;
    g2.rotate(angle,getWidth()/2,getHeight()/2);
    rect=g2.getClipBounds();
    setPreferredSize(new Dimension(rect.width,rect.height));
    super.paintComponent(g);
    revalidate();
    };

    Whats your question?
    If you rotate it, of course the points will rotate, they have to.

  • I have a an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes. All of the other movies on the card download with out a problem.

    I have an iMac 27" and am trying to import some videos of a friends wedding into iMovie however one of the movies won't import. It doesn't say why or give any error message or codes.
    All of the other movies on the card download with out a problem. The movie in question is not 'corrupt' as you can watch it in iMovie direct from the SD card but as soon as you try to import it, it  just says 'error'. iIve tried moving the file to an external drive ( and other variations on this theme) then importing but have had no luck.
    Can anyone please help me.

    The mystery remains....
    Thanks for the pointers. The file type is .mts (a proprietry sony one).
    I have now found some video converter software (Wondershare and iSkysoft) at a cost. Either will convert this file for me into .mp4. This I can then import into iMovie without any problems. I've checked this on the trial versions and it worked well but without paying am left with a giant watermark in the video
    The mystery (which I still havent solved) is why did 20 other .mts files import fine and then this one not?
    If you could point me in the direction of some free .mts converter software that would be the cherry on the cake.
    Thanks

  • Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    haben
    From looking at the specifications of your camera (SJCam 4000), we know already what video compression your camera is using. It is H.264.
    A H.264.mov file should be supported by Premiere Elements 11. On what computer operating system is your Premiere Elements 11 running?
    Do you have the latest version of QuickTime installed on your computer? And, are you running QuickTime and Premiere Elements 11 from a
    User Account with administrative privileges? Please go to Premiere Elements 11 Publish+Share/Computer/QuickTime to confirm that you find
    presets there for the QuickTime choice there.
    What are the properties of these H.264.mov files - is it 1080p30 (1920 x 1080p30)  or something else? Do you know if this camera is recording with a variable or
    a constant frame rate?
    Please review and consider and then we will decide what next.
    Thank you.
    ATR

  • Problems with image movement

    Hello everybody:
    First of all let me tell you that I am not a DVD wise person. I am starting to use iDVD and hope to soon be able to use DVD Studio Pro. The problem that I have is that I created a presentation in Motion using only photographies. The project was done using the Full HD(HDV1080p 30) format and saved as a quicktime file. When the file is played it looks great with smooth movements, but when transferred to iDVD the pictures still look good but the effects and movements are not smooth anymore, they stutter at times... This is the first time that I have this problem, maybe because I tried to do the project in full HD format? Or maybe is a problem of the speed of the data transfer? I know iDVD has a menu that allows to burn a DVD with Pro quality but I am still getting the same result.
    Also please...could someone recommend me some webpage o text regarding dvd recording for beginners?
    Thanks a lot for you help...

    Hi
    One thing
    iDVD - Can't do HD - not any version of it
    DVD Studio pro - most probably
    Roxio Toast™ - at least with Blue-Ray component to Blue-Ray burner/disks (DVD too but very short eg 20-30 minutes)
    Tutorials
    Some of them on internet
    iDVD 5
    www.kenstone.net/fcphomepage/idvd_5stone.html
    iLife6
    www.apple.com/ilife/tutorials/
    iMovie HD 6
    manuals.info.apple.com/en/iMovieHD_6_GettingStarted.pdf
    iLife08 and Mac OS X.5
    www.apple.com/ilife/tutorials
    iMovie08 and Mac OS X.5
    www.apple.com/ilife/tutorials/#imovie
    iDVD08 and Mac OS X.5
    www.apple.com/ilife/tutorials/#idvd
    Karsten Schluter
    karsten.schluter.googlepages.com/im08tricks
    Podcasts Apple
    - Find Out How - Document Apple
    - Find Out How - Mac OS X Apple
    - Find Out How - Movies Apple
    - Find Out How - Music Apple
    - Find Out How - Photos Apple
    - Find Out How - Web
    Books
    David Pogue's books
    • iMovie HD the Missing Manual
    • iMovie 6 & iDVD The Missing Manual
    • iMovie’08 & iDVD The Missing Manual
    • iMovie’09 & iDVD The Missing Manual
    Yours Bengt W

  • TS3477 How can I view movies, pictures, etc from Mac Book Pro (bought in he States) on a Sony TV(in Europe). Do you have change the settings on the Mac to comply with the european TV ?

    I have a Mac book pro ( 7,1  version ) bought in the US and want to see some videos, pictures and movies on a Sony TV with HDMI connection (in Europe).
    When connecting both the pc and the tv, I get on the tv the opening screen of a mac book pro but although a movie is playing on the pc it does not show on the tv. Do I have to change something in the displays on the system preference screen ?
    Thanks for helping out.

    By 'opening screen' do you mean the spiral galaxy desktop?  If so, then, with the TV connected to the MBP, open System Preferences ➜ Displays ➜ Arrangement.  You will see an image of two screens.  At the top of the smaller of the two screens in the image is a small bar, this represents the menu bar at the top of your display.  Drag this small bar to the top of the larger of the two screens in the image.  The menu bar and dock will now appear on the TV which is now the primary display and all the action will take place there.

  • JDeveloper problem with actions

    Hello
    I'm working on my first struts application and I have any problem with actions(I think).
    When I run the application, I don't see any data from DB on my page but when I click any of these 4 buttons, then the data load from DB.....Can anybody help me....I want to see my data when the page loads for the first time, not after the button click. Thanks a lot.
    (The buttons shows the rows of the table....first,previous,next,last)
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
    <html:form action="/zuctzaz.do" >
    <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
    <input type="hidden" name="<c:out value='${bindings.statetokenid}'/>" value="<c:out value='${bindings.statetoken}'/>" >
    <tr>
    <td>
    <table>
    <tr>
    <td>
    <table>
    <tr>
    <td><input type="submit" name="event_First" value="First" STYLE="width:35px" <c:out value="${bindings.First.enabledString}" /> ></td>
    <td><input type="submit" name="event_Previous" value="Prev" STYLE="width:35px" <c:out value="${bindings.Previous.enabledString}" /> ></td>
    <td><input type="submit" name="event_Next" value="Next" STYLE="width:35px" <c:out value="${bindings.Next.enabledString}" /> ></td>
    <td><input type="submit" name="event_Last" value="Last" STYLE="width:35px" <c:out value="${bindings.Last.enabledString}" /> ></td>
    </tr>
    </table>
    </td>
    <td>
    <table>
    <tr>
    <td colspan="3"><strong>Z�&#269;tovac� z�znam</strong></td>
    </tr>
    <tr>
    <td>Date</td>
    <td><input type="text" name="textfield1" value="<c:out value="${bindings['datZuct']}"/>"></td>
    <td><c:out value="${bindings['cisPdo']}"/> AND <c:out value="${bindings['zucZazn']}"/></td>
    </tr>
    <tr>
    <td>Place</td>
    <td colspan="2">Brusel</td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </html:form>

    Hy Again!
    I forgot to say one more thing that could be relevant:
    If i add any action from the struts-config.xml in the provider for the <defaultAction> of the portlet it works correctly.
    So the actions work correctly, the problem is that when sending back to the oracle portal the request with the new action, there is no response.
    Pls help!
    Thanx, and best regards!
    Ado

  • OBIEE - Problem to access a DashBoard with &Action=Navigate&Format=pdf

    Oracle Business Intelligence Product Version 10.1.3.4
    Hi,
    I have a problem to access a dashboard with &Action=Navigate&Format=pdf
    This works:
    http://company.com:9999/analytics/saw.dll?Dashboard&PortalPath=/shared/XXXXXXX/_portal/Dashboard1&Page=Page1&Action=Navigate
    This works
    http://company.com:9999/analytics/saw.dll?Dashboard&PortalPath=/shared/XXXXXXX/_portal/Dashboard1&Page=Page1&*Action=print*&Format=pdf
    BUT this doesnt work_
    http://company.com:9999/analytics/saw.dll?Dashboard&PortalPath=/shared/XXXXXXX/_portal/Dashboard1&Page=Page1&Action=Navigate&Format=pdf
    When I try &Action=Navigate&Format=pdf I have a error:
    Assertion failure: rElement.countChildElements() <= vColumns.size() at line 453 of Sun/995545/RH_Linux/vobs/8554.45.3325/analytics_web/main/project/websubsystems/xslfopostprocessor.cpp
    Error Details
    Error Codes: OQ78YWIW
    I really need use &Action=Navigate because I'll pass some parameters on the PROMPT.
    Oracle Business Intelligence Product Version 10.1.3.4
    Can somebody help me ??
    Thanks.

    Looks like a bug related to bug 7298035 - dashboard print to pdf causes assertion error!.
    If possible check this doc ID 1054523.1
    Btw: Whats the BI version?
    If helps pls mark

  • I have a big problem, I don't know what I touched but when I open up my iTunes I can't see all the icons. The only icons showing are "podcast, iTunes U and Downloads" so in other words I can't find the movies, music etc. Which means I can't buy/rent!

    I have a big problem, I don't know what I touched but when I open up my iTunes I can't see all the icons. The only icons showing are "podcast, iTunes U and Downloads" so in other words I can't find the movies, music etc. Which means I can't buy/rent!

    Not all content types are available in all countries - in each country Apple can only sell what they are licensed to (and in some cases what a country's laws allows them to). A list of what is available where is shown on this page : http://support.apple.com/kb/TS3599
    Do you have access to other music and film purchase download sites ?

  • Does anyone have problems with iTunes movie rentals freezing in the middle of the movie?

    Does anyone have problems with iTunes movie rentals freezing in the middle of the movie, requiring a force quit, which causes your rental to disappear? This has happened multiple times to me recently. Last time Apple didn't refund my money after reporting the problem. I have been using iTunes for many years but am about to give up.

    Correction: I was refunded for the previous movie freeze.

Maybe you are looking for

  • Issue in RFCLookup UDF

    Hi All, Requesting your help in fixing an UDF issue. This UDF is to check for a table entry and if not found it will create an alert with some source values. Now the problem is, alert mails are getting created but the values are not getting passed. H

  • Generate PDF FORM with editable fields

    Hi, my requirement is to create a document wich has a number of fields which users can fill in. By default, these fields need to be filled in with the data from the database, but editable by the user, the rest of the document has to be non-editable.

  • Problem selecting a column

    According to the user guide: "1. Select any table cell so that the reference tabs are showing. 2. To select a column, click its reference tab (above the column)." When I do that the whole table is selected. Is this a bug or am I doing something wrong

  • What's the deal with the 'stacks' icons in the dock?

    I'm still getting used to stacks in the dock. What I can't understand is why I have to look at icons that have nothing to do with the item? My Applications folder stack shows the Address Book item on top and my Utilities folder stack shows the Activi

  • Unable to get lightroom 2.7 to see new printer profile

    I installed a new printer profile from ilford into my windows 7 system.  Photoshop cs3 shows it in the profiles, but lightroom only has my canon printer papers.  I am runing 64 bit mode. Bart