Is it possible to make a slideshow or presentation without the fading (and horizontal l and vertical) so no transition at all?

Is it possible to make a slideshow or presentation without the fading (and horizontal l and vertical) so no transition at all?
(I would like my dog to 'run' more smoothly across the webpage in a very quick slideshow)

Hi,
You can set the transition to any of the three options available (fade, vertical and horizontal ) and set the transition speed to  "0" . This would remove all sorts of transition effects from your slideshow.
Please refer to this screenshot :- http://prntscr.com/4rdaqm
Hope this helps
Regards,
Rohit Nair

Similar Messages

  • How to make a slideshow/video similar to the "photo a day" videos?

    I was just wondering what the best way to make a slideshow/video simial to the "photo a day" videos like this one: http://www.youtube.com/watch?v=6B26asyGKDo
    I'm not looking to do one of my face, I just want to do one of all my photos set to music, its a couple hundred pics and I want them to go just as fast (blink and you'll miss them) with no transitions or effects. (It's kind of the same, a progression of sorts).
    I have the standard iphoto, power point, imove/idvd stuff that comes with the mac, but is there something else that I should use?
    Thanks for any help!

    For editing at the level of control - less than once second edits - you'll need to use a movie editor with a timeline. Imovie for Final Cut.
    Regards
    TD

  • Is it possible to make .dll file of .vi project then load it to CVI and use the APIs in the dll to CVI project

    Is it possible to make .dll file of .vi project then load it to CVI and use the APIs in the dll to CVI project?

    Hi Kumar,
    It is possible to make .dll from Labview and i think we can call the same from other programming application also.
    Pls refer the
    below link
    http://zone.ni.com/devzone/cda/tut/p/id/4038
    GAnesan KAni

  • I am using my Description as the caption on Slideshow.  I ticked the "Show Title Slide" button and iPhoto physically copied the description on the first slide onto the end of every other description.  I can find no way of removing them other than by hand.

    I am using my Description as the caption on Slideshow.  I ticked the "Show Title Slide" button and iPhoto physically copied the description on the first slide onto the end of every other description.  I can find no way of removing them other than by hand.  Unticking the "show title slide" did not reverse the situation back to my required state.   Any ideas why it might have happened or how it might br resolved?   Regards, Marshfrog1

    Attached is Dennis Linam’s Audition – “Log File” and “Log – Last File”
    Contact information Dennis [email protected]
    Previous contact information with your organization (DURIM):
    Dennis - i just finished my audition trial and bought the subscription the 2014 version.
    created by durin in Audition CS5.5, CS6 & CC - View the full discussion 
    DURIM - Okay.  I would expect the "Cache Warning" message because your default directories would not be the same as the ones in the settings file I generated.
    If you go back to the "7.0" directory and open the "Logs" folder, can you copy the "Audition Log.txt" file and send it as an attachment to [email protected]?  We'll take a look in that logfile and see if it gives us more information about why this is failing now.
    Also, do you have any other Adobe applications installed on this machine, such as Premiere Pro?  If so, do they launch as expected or fail as well?
    I do have the trial Pro version of Adobe reader, but I have not activated it, because I fear the same thing will happen did it. I cannot afford to activate the subscription for that product and take the chance of it not working either. I depend on those two programs religiously. Here is the files that you requested. I appreciate any help you can give me to get this audition program started
    Audition Log- file
    Ticks = 16       C:\Program Files (x86)\Common Files\Adobe\dynamiclink\7.0\dynamiclinkmanager.exe
    Sent from Windows Mail

  • Is there any way to sort the alarms differently in the Clock app? I have alarms for multiple days during the week, all of which overlap each other. It makes no sense to me that the alarms sort by time and not day. Thanks!

    Is there any way to sort the alarms differently in the Clock app? I have alarms for multiple days during the week, all of which overlap each other. It makes no sense to me that the alarms sort by time and not day.

    No, there is no way to change the sort order.
    Submit your feedback requesting this feature directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • Is it possible to make an object to always face the camera (in 3d)?

    I have an animation with a camera flying through a map in 3D.
    Is it possible to make all my texts layers automatically "face" the camera, no matter what movement the camera makes in 3d?
    Thanks in advance,
    Morimitsu Yamauchi

    Sure, just use the Basic Motion > Point At behavior and make the camera the target. You'll need to tweak the settings a bit.

  • Is it Possible to Make a Flash Playable DVD for the iTouch

    Is it possible to make the same kind of "virtual" DVD player file in Encore for an iTouch audience that works like the Flash output in Encore?
    I am under the impression that the 3G iTouch can play flash files but if that is not correct then I guess my question is no applicable.  I just felt that some interactive linking would be possible since the iTouch is equipped with a WiFi connection to the internet.  Any thoughts or suggestions?
    Thanks!!

    John,
    You know that Encore has a FLV output that produced a flash file that
    behaves exactly as a DVD player with player controls.  This is why I felt
    that this was possible, the flash file is certainly not a DVD formatted
    file.

  • Is it possible to make my serial numbers same as the project automatically

    I would like configure SAP B1 so that when I choose the serial numbers, that serial number also becomes the value of my projct.
    Is this possible?
    Thanks!
    Riza

    Hi,
    Sorry, missed to attach this thread. Check and let me know.
    http://scn.sap.com/thread/3525783
    Thanks & Regards,
    Nagarajan

  • Is it possible to make a javafx ui application without using layout managers ?

    I want to make an user interface application without using layout managers. In my previous attempt i made an application in java swing. There i used the setBounds() function. Is there any function like setBounds() in javafx ?

    There really isn't any more to it than that.
    Again, I have no idea why you would do things this way (either in JavaFX or in Swing), but:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.Pane;
    import javafx.stage.Stage;
    public class ManualPositioningExample extends Application {
        @Override
        public void start(Stage primaryStage) {
            final Pane root = new Pane();
            final Button button = new Button("Click me");
            final Label label = new Label("A Label");
            final TextField textField = new TextField();
            root.getChildren().addAll(button, label, textField);
            label.relocate(25, 25);
            textField.relocate(75, 25);
            textField.setPrefSize(100, 20);
            button.relocate(25, 50);
            button.setPrefSize(150, 20);
            Scene scene = new Scene(root, 400, 200);
            primaryStage.setScene(scene);
            primaryStage.show();
        public static void main(String[] args) {
            launch(args);

  • Is it possible to erase a Power Mac G5 without the disk

    Is it possible to erase/clean a Power Mac G5 without the disc? We have the disk, but when ever we try to start up from it, the fan just gets louder and louder, and the circle spins on the desktop and never loads. We are trying to clean the computer off so we can sell it. Any advice would be much appreciated.
    Thanks!

    We have the disk, but when ever we try to start up from it, the fan just gets louder and louder, and the circle spins on the desktop and never loads.
    I'd make a quick run at resurrecting the opticl drive first. Optical drives get dirty and that can make them stupid. For US$5-15, you can get a brush-type drive cleaning disk. It is remarkable how many seemingly dead drives come back to life with a cleaning.
    I'd also examine the disk closely to see it it's damaged or dirty. I had a disk that refused to work in a drive that worked with everything else. Looked closely at the offending disk and found there was peanut butter(!) on it. Washing it off in the kitchen sink and a loving chat with my peanut butter-eating son fixed the problem.

  • How can I make a new admin account without the password or cd?

    I got this Mac 5 off ebay, and it works fine.. but I can't download Silverlight, or update itunes.
    I've the reboot, terminal thing, but either I'm stupid and not doing it right, or it doesn't work.
    I can't make a new user, or change the password, and PLEASE help.

    We need a better description of what you bought. "Mac 5" doesn't ring a bell with me and I've been her a long time. Do you mean "iMac G5?"
    If so, the latest versions of SilverLight require a Mac with an Intel processor--the G5 iMac is not an Intel-based computer so it will not install.
    If it's a really a G5, neither can it run OS10.6 as shown in your equipment line. 10.5.8 is as high as it can go.
    I can't make a new user, or change the password,
    Call the seller and get the gray system install/restore disks that originally shipped with that computer, They are as much a part of the computer and the hard drive, and needed for resetting the password. I consider any used Mac sold without tose disk to be missing a part and therefore worth much less money.
    So---right now we're fighting conflicting info. Please do "About this Mac" from your Apple menu and post what is says about the processor and the OS version. If the processor description includes the word "Intel," you have a much newer Mac than the pre-2006 iMacs this forum covers and should repost in the forumfor newer iMacs here:
    iMac (Intel)

  • Slideshow Pop Up WITHOUT the Photo Page

    Hi,
    I would like to skip a step when using iWeb to display photos. When you drag in a photo album a thumbnail image is creating on the page, then a photo page detailing all the photos and a description of the contents etc is created.
    When the user clicks the small thumbnail picture of the photo they are taken to the photo page - I however would like to skip that step and for the slideshow popup to appear instead.
    I have tried to copy and paste the slideshow button link that is present in the photo page but it wont let me. Any ideas how I can achieve this?
    Thanks,
    Will

    Welcome to the Apple Discussions. You can't go to the slideshow by itself. Cyclosaurus explains it in this topic: http://discussions.apple.com/thread.jspa?messageID=9083483&#9083483
    If you want a slideshow in a new window from a text based or image hyperlink you will need to use a flash type of slideshow. It would be something like this: Like This.
    There are a lot of different types of flash presentations. These are just a few:
    Flash Album Exporter Postcard and AutoViewer Slideshow Themes
    SimpleViewer and Flash Album Exporter
    Jalbum
    Another method is to create a streaming movie of the slideshow and add it as in this demo page so when the thumbnail is clicked on it will open in a new window and begin playing: Opening Item in a New, Precisely Sized Window
    OT

  • Is it possible to make only one page landscape while the rest are portrait?

    Hi,
    I have a long Pages document with everything in portrait view, but I want just one page to be in landscape. Is it possible to do this?
    Thanks

    Rotating the page contents is completely different than rotating a page.
    Using the A4 format, a landscape page may display a rectangle whose width is 297 mm, height is 210 mm.
    A rotated object in a portrait page is restricted to a width of 210 mm.
    On these two screenshots, the text boxes in page 2 are containing the same piece of text.
    Compare the true landscape one to the the portrait one rotated of 90°
    or
    compare the true portrait one to the the landscape one rotated of 90°.
    They are completely different.
    This is why I will continue to write that we can't use two pages orientation in a single document !

  • Is it possible to make an iframe full size to the browser inside muse , if using insert htm

    using iframe code , it is coming in a small box want to use it to full browser

    Hi,
    You can use :
    <iframe src="enter page link here" style="position:fixed; top:0px; left:0px; bottom:0px; right:0px; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
      Your browser doesn't support IFrames
    </iframe>`
    Enjoy working with MUSE !
    Thanks
    Prabhakar Kumar

  • It's possible to make ios apps in Windows with the new Flash Pro Cs5.5?

    It's very difficult to find a concrete answer for that question some people says yes and other no; i need to know before i pay the developer license fee.
    I will aprecciate alot the help.
    Thanks

    It's probably talking about your Apple Developer Certificate. Apple issues you a .cer file that you need to generate a legit .p12 certificate to sign your application with. In your provisioning portal you also have to set up the application with a unique ID and then export a distribution provision pointing toward that app ID. The iOS portal has a very straight forward guide on doing all of what I just said. Then when exporting your app you select to export it for the store rather than quick debugging or adhoc. Then it will have the correct code.
    After you submit your app and it's approved iTunes does all the work of installing your app on peoples devices if they choose to install it.

Maybe you are looking for