Changing slide transition direction

Hi, I was wondering if it's possible to change the slide transition "wipe" to go from right to left, instead of left to right. Is this possible or are we stuck with what is default in Captivate? I'm on Captivate 7. Thanks!
Kev

Hi there
You could simulate it though by inserting a Highlight Box object that would cover the slide and configuring it with an effect.
Cheers... Rick

Similar Messages

  • Script keynote to change slide transitions

    any ideas how to script keynote to change all the slide transitions across multiple documents to the same thing? I've got 200 or so documents with the wrong transition set so it would be great not to have to do this manually.
    thanks

    you will tap and hold on the slide in side bar you wish to promote or demote, and slide it above or below the frame you wish to promote/demote.

  • I'm new to keynotes and I have a lot of powerpoint presentations I'm trying to salvage.  I can't get the slides to change on a click plus I can't find the way to change the "transition" time changes within each slide.  Where can I find the answer

    I'm new to keynotes and I'm trying to salvage several powerpoint presentations.  I can't control my slide presentations by clicking to change slides and/or for transitions within the slides.  I'm sure there's an answer but I can't find it.  Can someone please give me directions.

    Show the Inspector;   view > show inspector
    to run a presentation using manual control:
    Inspector > Document: set Presentation to Normal
    many transitions set in PowerPoint are not available in Keynote;  to set the transition options:
    Inspector > Slide > Transition
    select the effect you want and either choose auto or manual control

  • Slide transition animation and image in the slide master

    Hi,
    I placed an image in one of the slide masters, because I want that image static in the slide background. But when I add a transition to the slides made with that master, the image I placed is animated too. Should I do something else in the slide master so the image I placed is not affected by the slide transition?
    Macbook Pro Retina with OS X Yosemite and Keynote 6.5
    Regards.

    There is no such thing as an object transition, objects are animated using Builds or Actions:   Inspector > Animate
    I'm referring to "Object Effects" in the Transitions pull down (Object Push, Object Revolve, Object Flip, etc). So yes, technically there is an Object (transition) effect where objects transition between slides.
    Backgrounds do not animate when using Builds or Actions.
    True. However, if you use the last version of Keynote (before 6.5 and the Yosemite update) and place an image on the master slide it will not animate when applying many of the Object Effects.
    When an action or or Build is applied to an objet, the slide or the background does not animate, only the object animates.
    Same point as I made above.
    No EnzoFT said,  "when I add a transition to the slides made with that master, the image I placed is animated too."
    EnzoFT was using a slide transition therefore any object on a slide will be included in the effect.
    If you try what I said above in the previous version of Keynote, it will not animate. However, I found out how to make an image on the master slide NOT animate in Keynote 6.5 (I made a comment earlier in the thread about this). Open the master slide, select the Slide Layout, change the background to Image Fill, and the image won’t animate from one slide to the next when you apply an Object Effects transition to a slide.
    That is a very narrow minded personal opinion.
    Selecting a transition, Build or Action should be based on how it enhances the presentation and what you want to animate; the slide, the object or both.
    Narrow minded personal opinion?!? Do you really need to go there? I was simply making an observation.
    Use Builds or Actions.
    There has been no change;  Transitions affect the whole slide, Builds and Actions affect objects on a slide.
    If you try what I mentioned above there has been a change. Thanks for offering advice, but doing a little research in the future before replying to issues will help with providing more accurate information.

  • Change Slider Effect in Dreamweaver

    Hi,
          I am working on the tutorials provided by Timothy Framework / Web Design Services. The tutorial deals with building a website called the "Manchester Project". The link is -
    www.manchestertemplate.info/
    There is a slider on the main page that fades to white before the next image appears. I assume there is some editing that has to be done in the "JS-Slider" script file. Any suggestions on how to change the visual effect of the slider transition would be appreciated.
    Thank you.
    The code is as follows -
    // Timothy Framework - www.timothyframework.com
    // This work is licensed under the MIT License - http://www.opensource.org/licenses/mit-license.php
    // Developed By: Boban Karišik -> http://www.serie3.info/    Version: 1.0 - MIT Open License
    (function($){ 
        $.fn.s3Slider = function(vars) {      
            var element     = this;
            var timeOut     = (vars.timeOut != undefined) ? vars.timeOut : 4000;
            var current     = null;
            var timeOutFn   = null;
            var faderStat   = true;
            var mOver       = false;
            var items       = $("#" + element[0].id + "Content ." + element[0].id + "Image");
            var itemsSpan   = $("#" + element[0].id + "Content ." + element[0].id + "Image span");
            items.each(function(i) {
                $(items[i]).mouseover(function() {
                   mOver = true;
                $(items[i]).mouseout(function() {
                    mOver   = false;
                    fadeElement(true);
            var fadeElement = function(isMouseOut) {
                var thisTimeOut = (isMouseOut) ? (timeOut/2) : timeOut;
                thisTimeOut = (faderStat) ? 10 : thisTimeOut;
                if(items.length > 0) {
                    timeOutFn = setTimeout(makeSlider, thisTimeOut);
                } else {
                    console.log("Poof..");
            var makeSlider = function() {
                current = (current != null) ? current : items[(items.length-1)];
                var currNo      = jQuery.inArray(current, items) + 1
                currNo = (currNo == items.length) ? 0 : (currNo - 1);
                var newMargin   = $(element).width() * currNo;
                if(faderStat == true) {
                    if(!mOver) {
                        $(items[currNo]).fadeIn((timeOut/6), function() {
                            if($(itemsSpan[currNo]).css('bottom') == 0) {
                                $(itemsSpan[currNo]).slideUp((timeOut/6), function() {
                                    faderStat = false;
                                    current = items[currNo];
                                    if(!mOver) {
                                        fadeElement(false);
                            } else {
                                $(itemsSpan[currNo]).slideDown((timeOut/6), function() {
                                    faderStat = false;
                                    current = items[currNo];
                                    if(!mOver) {
                                        fadeElement(false);
                } else {
                    if(!mOver) {
                        if($(itemsSpan[currNo]).css('bottom') == 0) {
                            $(itemsSpan[currNo]).slideDown((timeOut/6), function() {
                                $(items[currNo]).fadeOut((timeOut/6), function() {
                                    faderStat = true;
                                    current = items[(currNo+1)];
                                    if(!mOver) {
                                        fadeElement(false);
                        } else {
                            $(itemsSpan[currNo]).slideUp((timeOut/6), function() {
                            $(items[currNo]).fadeOut((timeOut/6), function() {
                                    faderStat = true;
                                    current = items[(currNo+1)];
                                    if(!mOver) {
                                        fadeElement(false);
            makeSlider();
    })(jQuery); 

    Hi,
         I figured it out. You have to go into the index.html, main.html, and main.dwt files to change the "time out" setting in millaseconds....if anyone is interested and working on "The Manchester Project".
    MobieBoy

  • Powerpoint Animations Flicker Between Slide Transitions

    Version
    Captivate 6.0.1.240
    Output type
    Flash SWF, and MP4
    I have a powerpoint (2010) I imported into Captivate.  The slides do contain animations, mostly fade in, and fly in.  No exit animimations, all are enterance.  Captivate is using the animation times set in PowerPoint as I expect, and that works well for me.  I did add narration audio using Captivate for each slide.  After I have everything set, I produce the project as MP4 successfully.
    However, then I view the video when the slides transition to a slide that has animations, there is a quick flicker that shows the animations for the slide even though they are not really seen until sometime into the slide.  This effect is very distracting and takes away from the impact of the slides having seen a flicker of the exposed animations.  It almost seems it is adding a video frame of the final slide.
    I have tryed the following:
    -Reapplied the patch
    -Added fade slide transistion in Captivate (This only makes the flicker last longer)
    -Tried the different produce settings
    -Tryed produce to Flash, but same effect.
    I am looking for a solution to this, or a workaround I should be concidering.  My final option is to pull the MP4 into Premier to remove the frames, which is not why I bought Captivate.

    I am seeing the same thing. I just recently updated to ver 6. This is very much not good.
    Also, by buttons keep resizing themselves to little tiny boxes if I change any properties.
    Please fix these fast!

  • Varying the Slide Transition Time Interval in Slide Show with Music

    I have this old iPhoto 4.0.3 version in my PowerBook. Is it possible to create a slide show that's put to music? More importantly, can the transition from slide to slide be varied (e.g., one slide changes after 4 seconds; the next slide changes after 10 seconds; the slide after changes after 6 seconds, etc.) or am I limited to one consistent slide transition interval? Do I need to upgrade to a newer version of iPhoto? Or do I need to use an entirely different application to do varying slide transition time intervals?
    Thank you.
    Michael

    No, you can't vary the time interval in the same slide show.
    There are many ways to produce slide shows using iPhoto, iMovie or iDVD, but they all have one thing in common: they reduce the quality of the photos to that of a movie still frame and sometimes limit the number of photos you can use.
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, place text exactly where you want it, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico: http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie 6 as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, then send it to iDVD 7, or Toast, for burning.
    You will be pleasantly surprised at how professional the results can be!

  • Automatic slide transition timing

    I'm putting together a presentation with multiple actions on each slide. The actions are all timed and I want each slide to be displayed for exactly 30 seconds before transition to the next slide.
    But I can't figure out how to set this up. Is the automatic slide transition delay timed from the when the slide appears or when the last action finishes? I tried working it out both ways and it doesn't make sense.
    e.g
    I have a slide where a picture appears after 20 seconds. I then set the auto slide transition to 10 seconds. I expected the slide to change at 30s but it actually does it nearer 40s?
    What's going on?
    Thanks

    I tried a new experiment with a fresh, new Keynote presentation. Plain white background. Three words that animate, each On Click. Move In, Bottom to Top. .2 second speed. Dragged my WAV narration file to the slide. Recorded the presentation, animating each word manually at the appropriate point in the narration. Playing back the recording in Keynote looks and sounds as intended. Exported to QuickTime. Narration starts, first animation doesn't appear in time. As soon as first animation appears, audio cuts off completely. Other two animations appear, with no audio.
    I even tried a different font this time (a standard OS X font). This can't be a problem with my presentation file.
    Something is wrong with the QuickTime exporting function. I'd love to know if anyone has had success (visuals and audio in sync) exporting to QuickTime after importing your narration (or sounds) by dropping an audio file on the slide.

  • Disable mouse click change slide

    Hello!
    I am making screen casts and would like to be able to actually click on a keynote presentation without the transition happening.  I would like to be able to just use the arrow key to change slides/builds.  I use screen flow and it allows for some neat features when a mouse is clicked in post production.
    Thanks,
    -Josh

    table.setEnabled(false) ?edit And there's no such thing as a "table cell component".
    if you're referring to the renderer, that isn't a real component at all. The component is used only for rendering -- drawing -- the cell.
    The editor, on the other hand, is a real component.
    Edited by: Darryl.Burke

  • Slide Transitions

    I would like to set up my presentation so that there are no slide transitions between slides.  I don't want any slides fading in or fading out.  I thought this could be done by going into the General Properties and setting Transition to No Transition.  I've done that for all of them, but I am still getting some fading in and out.  What am I doing wrong?  Thanks.
    Terri

    Hi Terri
    Slides themselves typically don't have transitions unless you specifically choose to add them.
    Odds are the objects you have on the slides have the transitions applied. Normally objects (Buttons, Captions, Etc) have a Fade in and Fade Out transition. So you will need to explore changing the transitions for the objects.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • I'm changing from powerpoint to Keynote.  In powerpoint you can change slides by typing in the slide number and hitting enter.  I want to do the same in keynote without the slide switcher popping up at the top.  Possible?

    I'm changing from powerpoint to Keynote.  In powerpoint you can change slides by typing in the slide number and hitting enter.  I want to do the same in keynote without the slide switcher popping up at the top.  Possible?

    Wow, I may be losing my mind, you're right.  I guess I was doing what you said out of old habits and not even realizing it.  Much appreciated.

  • Why can't i use the old remote control to change slides in the latest version

    why can't i use the old remote control to change slides in the latest version of keynote

    It would help to know what remote control your talking about, there are hundreds out there.

  • Airplay mirroring problem:when i change slide mirroring from off to on ,my new i pad lost wi fi connection and apple tv lost wifi connection:ihave last software for both.Can u help me?thanks

    when i change slide mirroring from off to on ,my new i pad lost wi fi connection and apple tv lost wifi connection:ihave last software for both.Can u help me?thanks.
    when i use i pad with apple tv for see my photo,youtube and movies all ok.

    I suspect that the problem is in your router. Do NOT consider your router to be blameless if some other devices seem to work with it.
    Try restarting your WiFi router by removing power for 30 seconds. Don't just turn it Off. On many routers that doesn't really do anything but put the router into standby mode. If that does not help check for a firmware update for your router. If none exists which corrects the problem consider replacing the router.
    There is a chance that some services turned on in your router could be causing problems. Look for a setting called QoS (Quality of Service). If ON turn it OFF.
    If you need more help please give the make, model, and version of your WiFi router and how you have it configured.
    See also here: http://www.apple.com/support/ipad/wifi/

  • Change of transitions

    Hi again all!
    I would like to change of transition type. There is just one type of transition for appearence of a component, is it possible to do like on Microsoft PowerPoint (for example) with a chekckerboard transition, for example.
    Thank you for your help^^

    You can add various effects to your timeline to create different transitions.  For example, use a Fade effect (stretched out over time -- use the Smooth Transition button to do this automatically) to have the component fade out.  Or use a Resize to have it shrink down to a pinprick.  Or you can use Rotate 3D to spin it until you're viewing it edge-on (so it's just a vertical line), followed by a quick Fade out to make it fully invisible.
    There's not an easy way to create a checkerboard effect, but here's one way to fake it: If you have a solid-colored background you could put a bunch of rectangles on top of the item that appear at the start of the timeline (do a quick Fade in, or Set Property visible->true), then resize until they fully cover the item.
    Hope that helps,
    - Peter

  • How to change slider control digital display precision from program

    I want to change slider control digital display precision from my Labview 2013 program. I can not find property that changes slider digital display format. 
    Solved!
    Go to Solution.

    rt clk the digital display>create>property node>format string
    you could also do the slide scale, if needed...
    from the front panel:rt clk properties>goto display format tab>goto drop down list and pick "digital display 0" and format

Maybe you are looking for

  • BizTalk published WCF service throwing HTTP 404 error using ISA reverse proxy settings

    I have published my schemas as a WCF service from BizTalk 2010 "Publish WCF Service" wizard. I used Wcf-basicHTTP adapter in receive port. I am able to run the service successfully on localhost IIS and I tested my biztalk solution by sending request

  • Issue for running complex insert statement

    Hello expert, I have a complex insert statement in store procedure. when I run this statement in toad, it takes only 1 minute. but when I monitor execution of this procedure, it takes about 2 hours. this insert statement is as " insert into table sel

  • Index size

    Hello! I have found 'general purpose' info about estimated size of the text indexes. Where I find more info about size of each index segment ? (ie: I_TABLE, K_TABLE, R_TABLE, N_TABLE, I_INDEX and P_TABLE). Thanks, Laszlo

  • ABAP interfaces build using BDC and BAPIs can be used/replaced with the XI?

    Hi,   We have develeloped our interfases using BDC and BAPIs. Now our client has decited to implement XI. Now could you please help in finding whether these interfaces can be used/replaced with the XI.       If yes, please let us know how? Thanks and

  • Problem Web Dynpro Java applications using JasperReports

    Hello all, We have followed the footsteps of these blogs but we can not make it work. Part I --> Part-I: Print Web Dynpro Java applications using JasperReports Part II --> Part-II: Print Web Dynpro Java applications using JasperReports Part III --> P