How can I add a Ken Burns type transition between slides?

I can't find a way to have the Ken Burns transition type?   Is this possible?

It's just an effect of reposition and scale on an image;

You will need images with a resolution high enough to deal with the intensification of the image.

Click on the image on the slide: Inspector > Animation > Action > add effect > scale

then adjust the position and scale of the image 'ghost' as required

Tags: iWork

Similar Questions

  • How can I add two very simple Questions to a slide?

    Hello

    I would like to be able to add two very simple questions to a slide, but don't know if (or how) this can be achieved. I've explained this more in detail below:

    ====================================================================================

    Scenario of

    The slide must contain two questions:

    Question 1: with two check boxes for the options Yes and No

    Question 2: with five check boxes for options 1 2 3 4 and 5

    A button (for example named Submit) to verify the responses from users by triggering a tip Action that verifies the radio buttons that have been selected.

    ====================================================================================

    The checkbox Widget looks like it could work for this scenario, because it allows each value to be assigned to a variable. However, when you try to put in place the tip Action I couldn't see all the variables I named in the checkbox Widget.


    If anyone has done this kind of thing before and can offer advice on the best way to create custom questions, I'd appreciate any help.


    For reference, I use 8 Captivate.


    Thank you


    Ross

    I indeed used interactions of checkboxes or radio buttons many times for this kind of slides. That's why I'm confused and I first want to know if you want an answer to the second issue as well? For the first question, it is clear that you need an interaction of option buttons, I don't know if you want to allow more than one choice for the second question. Only when you need to allow more than a choice will you have the interaction of check boxes, in the other scenario, option buttons will do the trick. It makes a big difference, because the radio button widget has only one associated variable that will store the selected element. For the widget checkboxes, you need a variable for each choice.

    Maybe my blog could help clarify, you can also download a descriptive table with all interactions of CP8 training

    Advice - Training interaction - Captivate blog

    BTW, I moved this thread to the Quizzing subspace.

  • How can I add music to my itunes for the slide show I created in Photoshop 5.0.  I followed the steps carefully, but nothing happens.

    I have Adobe Photoshop 5.0 and use all the time so decided to make my first slideshow. I want to add music from my itune library which is on the same pc.  When I click on 'Add media' I have 2 choices: add audio to audio file Organizer or Ad.  I can only add music organizer sample (I don't know how to get my music in to the Organizer) or music sample of music from my PC folder.  He won't get the music in my iTunes library.  I created a nice slide show, but it's nothing without the music. Can someone help me?

    I think that your problem is more on getting the audio as an MP3 or WAV file from iTunes, only a problem with Photoshop.  Are these songs you download from the iTunes store?

    This might help, but I guess your problem to a certain extent

    https://support.Apple.com/en-NZ/HT204310

    If you use Windows, then your music folder should contain some sample tunes.  Try practicing with one of those starting with

  • How can I add a 2nd introductory screen to a slide show in LR?

    I was able to create an introductory screen. Now I want a 2nd screen right after that for credits/website. How can I do this?


    Bob

    Way the easiest is to design it in Photoshop (or illustrator, if you have one), save as a high enough resolution psd or tiff, import into Lightroom and just in the show as another slide. This works very well and gives you complete control over the design of the slide.

  • How can I add a mailto content type Firefox 4 under Applications?

    I have Windows 7 Professional 64-bit and upgraded to Firefox 4 when it is out of beta. I can click on mailto links in IE and it loads Eudora 7.1.0.9 very well fill out the to and if the link has it, the message as well. Worked well in previous versions of Firefox. In Firefox 4, mailto links do nothing. I went to control panel and set the default settings of the internet program. Eudora has mailto and send mail. When I go in the options of Firefox 4 and select Applications, there are no mailto content type and no option to add types. Anyway to add it?
    In about: config
    Network.protocol - handler.expose.mailto status: default type: Boolean: false
    Network.protocol - handler.external.mailto status: default type: Boolean: true
    Network.protocol - handler.warn - external .mailto status: default type: Boolean: false

    Edit for more information:

    Looks like mailto content type is not the problem. A friend who has Windows 7 64-bit, Firefox 4 and the same (last) version of Eudora edition has the same problem. However, it has the mailto content type and it is set to Eudora. However, clicking on mailto links don't do anything in Firefox 4, but fine work in IE 9.

    Try 'Reset download Actions'

  • How can I add a php file type?

    I use windows xp. There was a file type "php" but used with 'Print Shop quick print' which I removed because of the conflict. I want the "php" that is used with "hyper text preprocessor. I tried just to add "php" as a new type of file, but without any criteria, I don't think that it is recognized.

    What do you do with your php files?  What application you want to use to handle (for example, modify) them? Normally, the php files are used by php on a web server engine. If you want to edit or create php files, you can use the Notepad Notepad ++or application such as Dreamweaver web development.

    Assuming that you have an application in mind that you want to use to open the php files, the best thing to do is:

    • Find a php file
    • Right-click on it and select open with > choose program
    • Locate the executable file of the application you want to use
    • Check the box "always use this program to open this type of file.
    • Click OK
  • How can you add item (object) complex "nested table"?

    Hello I did some reading on * "Associative" * and * "Nested Table" * and I would like to enumerate the collection using the later version (http://www.devshed.com/c/a/Oracle/Database-Interaction-with-PLSQL-Nested-Tables/2/)
    -know list "Nested Table"

    However, encountered problem try to * 'EXTEND' * my nested table (add items to the complex type or OBJECT I defined, namely 'TmpHierarchyMapObjType' below) - detail as follows:

    -NOTE 1: Here's how to create the type object (be well if I just say "CREATE or REPLACE TYPE TmpHierarchyMapObjType AS OBJECT (_TMP_HIERACHICAL. ROWTYPE_)"instead of having to duplicate the column definition.
    CREATE OR REPLACE TYPE TmpHierarchyMapObjType AS OBJECT
    (
    ID numeric (19.0),.
    ParentId numeric (19.0),.
    ChildId numeric (19.0),.
    ...
    TmpUID varchar2 (32),
    ReferencedId numeric (19.0),.
    ...
    );

    -NOTE 2: I can't put 'TmpHierarchyMapObjType' inside the package, but it's not crucial, I guess.
    Types of CREATE or REPLACE PACKAGE
    AS
    TYPE cursorType IS REF CURSOR;
    TYPE TmpHiearchyMapTableType IS TABLE OF THE TmpHierarchyMapObjType; / * Use 'Nested Table' instead of an associative array * /.
    / * TYPE TmpHiearchyMapTableType IS TABLE OF THE TMP_HIERARCHYMAP % ROWTYPE INDEX DIRECTORY. */
    END;

    -NOTE 3: Here is my FUNCTION TABLE that now returns a "Nested Table" as assumed to 'Associative' (with a syntax different enumeration)
    FUNCTION to CREATE or REPLACE spGetParentsTable
    (
    Number to the ObjectId,
    ObjectClassifier varchar2
    )
    RETURN types . TmpHiearchyMapTableType -now a 'Nested Table', not 'voluntary '.
    IS
    Types of TmpHierarchyMap. TmpHiearchyMapTableType;
    ThisTempId varchar2 (32);
    CURSOR spGetParents_cursor IS
    SELECT
    ReferencedId Id,
    ParentId,
    ChildId,
    ...
    OF TMP_HIERARCHYMAP
    WHERE TmpUID = ThisTempId;
    BEGIN
    SELECT sys_guid() IN the double ThisTempId;

    spRecursiveGetParents (ObjectId, ObjectClassifier, ThisTempId);

    -(Commentary) TmpHierarchyMapMAX: = 0;
    FOR oMap in spGetParents_cursor LOOP
    -(Commented out) TmpHierarchyMapMAX: = TmpHierarchyMapMAX + 1;

    -QUESTION: FAILED here! How can I add/elements of complex types?
    TmpHierarchyMap.EXTEND (cast (oMap as TmpHierarchyMapObjType));

    /*
    NOTE: (In the comment) use is not "Associative", now using "nested table" instead.
    TmpHierarchyMap (TmpHierarchyMapMAX). ID: = oMap.Id;
    TmpHierarchyMap (TmpHierarchyMapMAX). ParentId: = oMap.ParentId;
    TmpHierarchyMap (TmpHierarchyMapMAX). ChildId: = oMap.ChildId;
    ...
    */
    END LOOP;

    DELETE FROM TMP_HIERARCHYMAP WHERE TmpUID = ThisTempId;

    RETURN TmpHierarchyMap;

    END spGetParentsTable;

    -Finally, I would like to enumerate the nested table.
    DECLARE
    types of oMappingTable. TmpHiearchyMapTableType;
    BEGIN

    oMappingTable: = spGetParentsTable(2,'ThinkFundamentals.Util.Security.SystemUser');

    -NOTE 4: this is my final goal!
    Select * from table (cast (oMappingtable as types.) TmpHiearchyMapTableType));

    dbms_output.put_line ('done!');
    END;


    REF:
    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14261/Collections.htm#LNPLS005
    http://www.DevShed.com/c/a/Oracle/associative-arrays-in-Oracle-PLSQL-introduction/2/
    http://www.DevShed.com/c/a/Oracle/database-interaction-with-PLSQL-nested-tables/2/

    Hello

    Try this,

    TmpHierarchyMap.Extend();
    TmpHierarchyMap(TmpHierarchyMap.Count) := TmpHierarchyMapObjType( oMap.Id
                                                                    , oMap.ParentId
                                                                    , ... );
    

    Kind regards

    Christian Balz

  • How can I add an additional cc field? I have exhausted the 3 listed, but have to send more people

    Try to add more than 3 people to an email, once exhausted the 3 to/cc/BCC where and how can I add extra?

    As you have discovered there are three visible TO/Cc/BCC fields.
    but this does not mean only three are available.

    These fields even act as if you were typing an email.
    When you want a new line, you can click the enter/return key.

    This type or select e-mail address and press ENTER to switch next to the box.
    When you are on the last entry 'visible', press the enter/return key, and the other one becomes available.

    You should see a scroll bar appears on the right side to see the previous entries.

    You can also just pull down from the top of the section of e-mail content to reveal more if you want to see everything. See picture to show this.
    Put the mouse cursor over the edge to put in place a double arrow head.
    left click and hold to get the edge.
    Slide down to reveal more and release the mouse when it is happy.

  • How can I add a prefix digital (such as an area code) to several cells in a column?

    I have a column of numbers without area codes.  I need to add the same area code to each cell.  How am I able to do this?

    Bonus question would be, I have a column of numbers with and without area codes.  How can I add an area (same area code) code to ONLY 7-digit cells?

    Formatting is 111-111-11111 and 111-1111 for the cell without an area code.

    I use version numbers 3.6.1

    If it is a one-time problem, then you can add a temporary column and use a formula to doctor up phone numbers.  Here is a simplistic solution, which could be longer than refined:

    Column C contains a formula that conditionally updates the value in column B.

    Select cell C1 and type (or copy and paste it here) the formula:

    = IF (B1 <>"", IF (LEN (B1) < = 10, "314-", ""), "" ") & B1

    shortcut for this is

    C1 = if (B1 <>"", IF (LEN (B1) < = 10, "314-", ""), "" ") & B1

    Select cell C1, copy

    Select the column C, paste

    You can also use an AppleScript to do the job.  After the back if you need Applescript

  • Watch does not recognize the weight class as exercise-how can you add the duration of activity manually because none of the presets eg elliptical etc. is appropriate. Also does not count calories for example 35 when the rest of the group is around 500

    Look does not recognize the weight class as exercise-how can you add the duration of activity manually because none of the presets etc for example elliptical is appropriate and therefore do not count toward the daily goal. Also does not count calories for example 35 when the average of the others in the group is around 500.

    Hello

    When you use the application of the training session, choose the type of activity that best fits your business. For anything else - like weight - select the other category.

    During the follow-up of one year to the next helps:

    • Activity app will credit the ring of progress of exercise with one minute for every minute of the workout.
    • Active calories will be based on the data recorded by the heart rate sensor or a brisk walk, whichever is greater.

    Note, however, that the heart rate sensor is likely to give better results for the workouts that involve rhythmic (for example running) rather than the irregular movements.

    More information:

    Use of the workout on your Apple Watch - Apple Support

  • How can I add titles of chapters to headers?

    How can I add titles of chapters to the headers in a long document?  My document has several chapters and I want to include the correct chapter title in the header on every page.

    Section = chapter

    Menu > insert > Section break

    at the end of each chapter and you can type a Unique Header /Footer in each Section.

    Make sure you only select also all of your text:

    Toolbar > Document > Section > headers & feet > uncheck section previous Match

    Peter

  • How can I add artist and song to a c and d names

    How can I add a name and title of the song of the artists in a little burnt c and d?

    If burn you an audio CD of songs in your library, you cannot add CD Text afterwards. There are also very few CD players that read back data so it can be interesting to use.

    TT2

  • Hello Mr President! I have a few questions about the Word report generation please.1.How can I add a border to a page in word? 2. How can I add gridlines to a table generated related word?. Can 3. how I add a border to a picture of the Word report?. Thank

    Hello!

    Sir, I have a few questions about generating word reports using (C language in labwindows) please.

    1. How can I add a border to a page in word?

    2. How do I add border lines and grid to a table generated in Word report (not "cvi control table"inserted from gui, I wonder about the table generated in Word report)?

    3. How can I fill a table cell of report word with the data type other than 'character '.

    And sir a question on the use of the timer in labwindows cvi please.

    Sir, I'm trying to set a time minimum interval timer to 1millisecond (0.001 s), that I have set, timer cares about the interval set by me he only meets the minimum default time interval which is, I think as 10milliseconds (I'm using windows xp service Pack 3 version 2002).

    Concerning

    Imran

    Pakistan

    Have you read this statement ? It explains how to set the registry value:

    If the REG_SZ useDefaultTimer does not already exist, you must create it under HKEY_LOCAL_MACHINE\SOFTWARE\National Instruments\CVI Run-Time Engine\cvirte. "" This can be done navigate to the appropriate folder, and then click Edit "New" string value. Then, click on means the name of the new value created, select Rename, and then specify useDefaultTimer as the name. Finally, double click on the name and specify the value True or False.

  • I just got a new supplier of cable installed at home and now we find that our usual printer print wireless. How can I add this to the new network?

    I just had a new supplier of cable installed at home and now we recognize that our habit of printing wireless printer, how can I add this to the new network?

    Hello

    • What is the brand and model of the printer?
    • What happens when you try to print?
    • You receive an error message?

    You can view these methods:

    Method 1:

    Disable the firewall and check.

    The Windows Firewall is enabled by default in this version of Windows. To make sure that it has not been disabled, follow these steps:

    1. open the Windows Firewall by clicking the Start button, then Control Panel. In the search box, type firewall and then click onWindows Firewall.

    2. in the left pane, click turn Windows Firewall on or off. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    3. below for each type of network location, click on disable Windows Firewall, and then clickOK. We recommend that you turn on the firewall for all network location types.

    For more information, visit the following link:

    http://Windows.Microsoft.com/en-us/Windows7/Understanding-Windows-Firewall-settings

    Note: Run the computer without antivirus software or firewall is a potential threat to the computer; Be sure to activate security software after completing the troubleshooting steps and after identifying the problem.

    Method 2:

    Printer in Windows problems

    http://Windows.Microsoft.com/en-us/Windows/help/printer-problems-in-Windows

    See also:

    http://Windows.Microsoft.com/en-us/Windows7/install-a-printer-on-a-home-network

  • How can I add things to my toolbar

    original title: toolbar!

    How can I add things in my toolbar... for example.  Calculator ect... Please help... because I am a rookie! :)

    On mon, 19 Sep 2010 17:49:10 + 0000, Barry Strawn wrote:

    How can I add things in my toolbar... for example.  Calculator ect... Please help... because I am a rookie! :)

    Which toolbar you ask the subject. Do you mean the taskbar? Or maybe
    you mean that the Quick Launch bar (located in the taskbar of)
    by default, but can be moved elsewhere)?

    If you mean that the Quick Launch bar, drag a shortcut from anywhere where it is
    in the Quick Launch bar.

    Ken Blake (MS-MVP)

Maybe you are looking for

  • drive hard Max presario cq61-402sa

    The hard driveon my presario cq61 402sa laptop is dead. So I need a new SATA drive. What is the greatest player that I can install it. The BIOS seems to be v20

  • Installer - CVI 2012 forces restart

    Hello First of all, I looked at this link.  He lists three possible reasons for the installer, forcing a re-start.  It is perhaps a bit dated (2004) In any case, I would delete forced reboots after the installation of CVI 2012 of an appliction on Win

  • How can I reinstal vista without cd

    Im having trouble with my computer and want to reinstal vista Home premium to solve the problem I can't remove all explore 9 beta how.r - This is a public forum so never post private such as e-mail or telephone information You have problems with prog

  • Windows Update will not find or install the updates

    I turned on my laptop last night after several months of inactivity, and when I ran Windows Update I met an interesting problem. Windows Update took a long time to look so I decided to let it run all night. When I checked on this subject in the morni

  • Issue backup Smart Link

    I have a small business RV042 router.  I have the Dual WAN setup Smart Link Backup mode. WAN1 is configured with a DNS servers for ISP 1 and the specified static IP address. WAN2 is configured to 2 PSI with a dynamic IP Addess (obtain an IP address a