Simple Photo slideshow hyperlink firefox

I have a very short slideshow with only 4 images and I've exported it to quicktime for the web. Everything works great in the Safari beta browser, but in the latest Firefox, the last slide's hyperlink to go back to the first slide does not work. Also in Firefox 2.0.0.6, if you click around the video trying to make the hyperlink work, the whole thing ends up disappearing all together. Is the a quicktime/mozilla issue?
To begin with, I've wanted to simply have the last slide go back to the first on click without the hyperlink anyway, however I can't seem to find a way to do this in Keynote. Am I missing something simple?
(I just got iwork today so I'm a bit of a newbie and would appreciate any help getting me going.)
Thanks

Oops! Could someone please move this question to iWorks 08'.
My bad.

Similar Messages

  • Photo slideshow app?...

    Hi all,
    I'm after an app which can create some very simple photo slideshows, but with a few specific functions.
    a) I want to be able to change to the next photo manually by a click - I'm not interested in being able to set a certain time, but manually change it (more like with Keynote, for example).
    b) In addition to this, I was hoping to be able to animate some slides ever so slightly w/ a Ken Burns-style effect.
    I've looked into the o obvious choices (i.e. iPhoto, Keynote), but they both come with some drawbacks for my needs:
    I am unable to create a slideshow with which I can manually change the photos when I please - I can only set pre-determined times. This is because the Export format is a mov, so it'd clearly not be possible like this.
    Keynote is the other option, as it does allow you to manually change slides/photos with a click. However, as I am after the ability to create a slight animation on some photos (a-la Ken Burns), Keynote has two really annoying features:
    1) Although it doesn't have a Ken Burns animation built in, you can sort of create your own. But for some reason, you are unable to loop this. This means that once the animation is finished, it will be motionless until I change the slide.
    2) If I purposely set the animation duration higher than it will need to be, I'm not able to interrupt that animation to move to the next slide before the animation duration is complete. This means that said slide could end up being on for too long.
    One way around this, I have found, is to export a slideshow from iPhoto with just 1 photo in it, w/ the Ken burns effect. I can then import this movie into Keynote, and set that to loop. This way it will continue w/ the motion forever until I interrupt it (which is possible this way). This, however, seems extremely long-winded, and I'm worried about clogging the slideshow up with lots of large files.
    I'm sure there must be a more suitable app out there, but I have so far failed to find it. Anyone have any suggestions?!
    Many thanks,
    Steve

    Hey 02_drummersteve_02. I didnt know how to directly message you, so Im asking here. Did you find a solution for the interference you were talking about on this topis?
    https://discussions.apple.com/thread/2189000?start=0&tstart=0
    I am having the same problem...
    Thanks

  • Flash Prof. CS5 simple photo album/slideshow template

    I am trying to use the "simple photo album" template that comes with Flash Prof. CS5. I have it working except I want it to play by default. The actionscript that came with the template is below (in blue), but if I set var autoStart:Boolean = true; I get the following error and the controls do not work:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at nt_fla::MainTimeline/fl_startSlideShow()
    at nt_fla::MainTimeline/frame1()
    // USER CONFIG SETTINGS =====
    var autoStart:Boolean = false; //true, false
    var secondsDelay:Number = 2; // 1-60
    // END USER CONFIG SETTINGS
    // EVENTS =====
    playPauseToggle_mc.addEventListener(MouseEvent.CLICK, fl_togglePlayPause);
    function fl_togglePlayPause(evt:MouseEvent):void
    if(playPauseToggle_mc.currentLabel == "play")
      fl_startSlideShow();
      playPauseToggle_mc.gotoAndStop("pause");
    else if(playPauseToggle_mc.currentLabel == "pause")
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextButtonClick);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevButtonClick);
    function fl_nextButtonClick(evt:MouseEvent):void
    fl_nextSlide();
    function fl_prevButtonClick(evt:MouseEvent):void
    fl_prevSlide();
    var currentImageID:Number;
    var slideshowTimer:Timer;
    var appInit:Boolean;
    function fl_slideShowNext(evt:TimerEvent):void
    fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC =====
    function fl_pauseSlideShow():void
    slideshowTimer.stop();
    function fl_startSlideShow():void
    slideshowTimer.start();
    function fl_nextSlide():void
    currentImageID++;
    if(currentImageID >= totalFrames)
      currentImageID = 0;
    gotoAndStop(currentImageID+1);
    function fl_prevSlide():void
    currentImageID--;
    if(currentImageID < 0)
      currentImageID = totalFrames+1;
    gotoAndStop(currentImageID-1);
    if(autoStart == true)
       fl_startSlideShow();
       playPauseToggle_mc.gotoAndStop("pause");
    } else {
      gotoAndStop(1);
    function initApp(){
    currentImageID = 0;
    slideshowTimer = new Timer((secondsDelay*1000), 0);
    slideshowTimer.addEventListener(TimerEvent.TIMER, fl_slideShowNext);
    if(appInit != true){
    initApp();
    appInit = true;
    // END FUNCTIONS AND LOGIC
    Does anyone have any idea how to fix this so that the slideshow starts automatically and stops when the pause button is clicked?
    Thanks,
    Lisa

    I finally got it to work, but had to edit the action script because it seemed to have a logic error. Here is the action script I finally used; maybe this will help you:
    // USER CONFIG SETTINGS =====
    var autoStart:Boolean = false; //true, false
    var secondsDelay:Number = 3; // 1-60
    // END USER CONFIG SETTINGS
    // EVENTS =====
    playPauseToggle_mc.addEventListener(MouseEvent.CLICK, fl_togglePlayPause);
    function fl_togglePlayPause(evt:MouseEvent):void
    if(playPauseToggle_mc.currentLabel == "play")
      fl_startSlideShow();
      playPauseToggle_mc.gotoAndStop("pause");
    else if(playPauseToggle_mc.currentLabel == "pause")
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    next_btn.addEventListener(MouseEvent.CLICK, fl_nextButtonClick);
    prev_btn.addEventListener(MouseEvent.CLICK, fl_prevButtonClick);
    function fl_nextButtonClick(evt:MouseEvent):void
    if(playPauseToggle_mc.currentLabel == "pause")
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    fl_nextSlide();
    function fl_prevButtonClick(evt:MouseEvent):void
      fl_pauseSlideShow();
      playPauseToggle_mc.gotoAndStop("play");
    fl_prevSlide();
    var currentImageID:Number;
    var slideshowTimer:Timer;
    var appInit:Boolean;
    function fl_slideShowNext(evt:TimerEvent):void
    fl_nextSlide();
    // END EVENTS
    // FUNCTIONS AND LOGIC =====
    function fl_pauseSlideShow():void
    slideshowTimer.stop();
    function fl_startSlideShow():void
    slideshowTimer.start();
    function fl_nextSlide():void
    currentImageID++;
    if(currentImageID > totalFrames)
      currentImageID = 1;
    gotoAndStop(currentImageID);
    function fl_prevSlide():void
    currentImageID--;
    if(currentImageID <= 0)
      currentImageID = totalFrames;
    gotoAndStop(currentImageID);
    if(autoStart == true)
       fl_startSlideShow();
       playPauseToggle_mc.gotoAndStop("pause");
    } else {
      gotoAndStop(1);
    function initApp(){
    currentImageID = 0;
    slideshowTimer = new Timer((secondsDelay*1000), 0);
    slideshowTimer.addEventListener(TimerEvent.TIMER, fl_slideShowNext);
    slideshowTimer.start();
        playPauseToggle_mc.gotoAndStop("pause");
    if(appInit != true){
    initApp();
    appInit = true;
    // END FUNCTIONS AND LOGIC

  • Simple photo gallery

    I used a very old version of Fireworks some time ago, which I
    think had the ability to do this but I'm now uing CS3 and wanted to
    know:
    I would like to create a simple photo gallery whereby there
    is a grid of 4x3 image thumbnails and then when you click on one of
    the thumbnails it enlarges the photo to take up the occupied space
    of where the thumbnails exist - click close and then it takes you
    back to the thumbnails.
    Is there any way of doing this in CS3? I'm presuming I could
    use slices and layers with hotspots but I'm not entirely sure how -
    are there any tuturials on this.
    Thanks in advance for any help on this subject.

    Hi,
    Not exactly what you're asking for but are you aware of the,
    new to CS3,
    'Create SlideShow' Command?
    There are six (I think) different layouts, one of which may
    suit.
    An example of one I threw together can be seen here
    http://www.fasterthanu.com/
    There are also a couple of links on bridge to tutorials as
    well as some on
    the Adobe site
    Peter
    "greencode75" <[email protected]> wrote in
    message
    news:fgjvai$qg$[email protected]..
    |I used a very old version of Fireworks some time ago, which
    I think had the
    | ability to do this but I'm now uing CS3 and wanted to know:
    |
    | I would like to create a simple photo gallery whereby there
    is a grid of
    4x3
    | image thumbnails and then when you click on one of the
    thumbnails it
    enlarges
    | the photo to take up the occupied space of where the
    thumbnails exist -
    click
    | close and then it takes you back to the thumbnails.
    |
    | Is there any way of doing this in CS3? I'm presuming I
    could use slices
    and
    | layers with hotspots but I'm not entirely sure how - are
    there any
    tuturials on
    | this.
    |
    | Thanks in advance for any help on this subject.
    |

  • Creating photo slideshow in iMovie 09

    Hi guys,
    I have been given the advice to create a photo slideshow in iMovie.
    So far I have manage to sort out my photos and import them using iPhone and the Finder but am now up to the stage of putting the photos in the slide show.
    There are quite a number of photos and I think by using the Ken Burns effect on every slide is a little overwhelming.
    Is there any way I can use any of the other effects like just a simple fade-in?

    AppleMan1958 gives you some good information. I have reviewed an earlier version of the slideshow feature of iPhoto on my website and have a short sample slideshow created using iPhoto.
    Here is the link to my free photo slideshow software review of iPhoto.
    http://www.great-family-photo-slideshows.com/free-photo-slideshow-software.html
    I also provide information on creating a slideshow, choosing the music, etc.
    Good luck.

  • I have finalized my iMovie photo slideshow and wanted to burn the imovie onto dvd. how can i do this so i can watch it on my television?

    i have finalized my iMovie photo slideshow and wanted to burn the imovie onto dvd. how can i do this so i can watch it on my television?

    Hi
    If there is no iDVD on Your Mac (and it's not on newer Macs as Apple discarded it) then You need a program that can do this.
    Your Mac can burn CDs and DVDs - BUT DVD as Data-DVDs not as Video-DVDs - they need a program to be encoded and STRUCTURED as such.
    • iDVD is part of the boxed version of iLife'11 and can only be bought outside Apple as on Amazon and e-bay
    • DVD Studio pro - Part of FinalCut Studio Pro bundle - this to has expired and can only be bought second handed. (High price and tough learning Curve - but best ever done.)
    • Roxio Toast™ - Not as elegant as iDVD - but has many other positive additions (I like it as 10-Pro incl BD-component) (now version 11)
    • Burn - only free alternative I know of on internet. Very simple - Just for doing a plain Video-DVD
    Burn http://www.digital-digest.com/software/Burn.html
    only You can buy from Apple is
    • FinalCut Pro-X which also can burn to DVD but without any nice themes.
    AppleMan1958
    You can also buy Compressor from Apple for $50 US. It will also create DVD and BluRay but without the nice themes.
    Yours Bengt W

  • IPOD 30GB photo slideshow

    Hello. I've read much of the forum but 1st issue is the photo slideshow on my IPOD 30 GB. Downloaded pictures used to display full screen and scroll automatically. Perfect! Now the slideshow displays three tiny photos while scrolling. Have altered the settings to no avail. Am I missing something so simple?

    Hi almost, ;^)
    I also bought my 30GB in March. I haven't had the problems you've seen though. Have you updated to the newest Updater, the one from this month (Sep)? I have read several people saying that they've had all kinds of problems when using this version. I believe this Updater is really only for the Nano. If you kept the previous one (from this summer) that has the 1.2 iPod version, try putting that one back on it.
    As far as getting the computer to see it, try this:
    1) disconnect your iPod and Reset it,
    2) reboot your PC,
    3) don't start any programs other than iTunes,
    4) don't plug in anything other than your iPod.
    Be patient - wait a few minutes and see if it connects. If not, try plugging the iPod into a different USB port.
    -dave

  • Photo slideshow on Imovie?

    Is it possible to do a photo slideshow on imovie? I've uploaded all the files from iphoto and transfered them to imovie, but once i try to play the movie it will only play one clip at a time. Am i missing something? A response ASAP would be great b/c i'm trying to do a surprise video for my dad's 50th birthday! Thanks!

    This may not really be what your problem is... but if it is, it is a really simple fix! When you click "play" to view the show, make sure you aren't just selecting one image and are clicked outside of a single photo box so that the whole show is selected.
    Just happened to stumble across your post and remember being a little bit stumped by that at one point myself... good luck!

  • Modern Photo Slideshow template help, please...

    Hi guys and gals... Happy Thanksgiving! Now, back to work,
    right? Yikes!
    First time questioner, and I think I've done my due diligence
    on searches, etc, but...
    I am getting back into Flash usage after a few years off, so
    I am pretty rusty. I'm stepping on the
    Modern Photo Slideshow template that comes with CS3, and am
    almost done! I've resized, deconstructed the god-awful controller
    down to something simple and elegant, added all my client's 27
    images, set the publisher to play=true...
    BUT, I can't seem to break the code: I'm trying to get it to
    start in Autoplay=1 mode (play on download), but it keeps skipping
    the first frame. I've tried quite a few very simple code tweaks,
    like changing various zeroes to ones, but can't seem to find the
    rosetta stone.
    If I simply add a null frame to the beginning, so that image
    1 is at frame 2, it goofs up the framecount, as well as the looping
    elegance. I guess that would be fine, if I could figure out the
    proper syntax for making the framecount display (i.e.: 1 of 27)
    equal to framecount-1 to compensate for the null frame at the
    beginning. However, that 's just a Big Hammer method of solving my
    problem. Surely there is a more effective and proper way?
    Summary: All I really want it to do is start in
    autoplayStatus=1 without blowing past the first image.
    Anyone know if this is a simple code tweak? I'm so close, I'd hate
    to switch to a different template, as the client loves what I've
    currently got.
    Thanks so much!

    Found the answer: when you double-click the mc, controller
    sitting on the stage, there is a frame script that has about 58
    lines of code. Sitting at the bottom is
    autoplayStatus = 0;. When you set the value to 1 (one) and
    test the movie, is starts in auto-play mode.

  • IMovie still photo slideshow with theme - how?

    (Sorry this question should've been posted in the iMovie HD 6 forum, so I have re-posted it there, but I don't know how to delete this post here, sorry for the double post. If you do have an answer for this question, please feel free to answer here, thanks!)
    Hi I'm new to Mac, and I'm trying to make a photo slideshow with iMovie 6 HD. I wanted to use a theme for the opening, bumper, credit, etc.
    From my understanding, I put the photos in the drop zone, put in the titles, and apply and drop the theme into the timeline. Then I drop the photos into the timeline as desire to continue the slideshow. However, problem arise as the animated theme ends, it doesn't connect with the photos that follow. For example, if I put 6 photos in the opening and as the opening animation ends, it zooms into photo #6 and it ends right there. I assume then I should drop photo #6 right after the opening theme, is that right? Problem is that the zoom level doesn't match and there will be a very obvious jump from the opening to the next photo! The same also happen to the beginning and ending of bumpers, and such.
    Am I missing something? How do you make the transition smooth? Could somebody point me to some tutorials, threads, or provide some advice on how to create a photo slideshow with themes?
    Thanks in advance.
    Message was edited by: mechael

    Hi,
    I need an answer pretty quickly; maybe I can rephrase the question and make it simpler...
    How do you match the beginning/ending of a theme animation to match the photo before/after it, so that it doesn't look like it jumped?
    Thanks.

  • Interactive Photo slideshows - FCE HD or DVDStudio Pro???

    Greetings,
    Which software is best to do nice professional Photo slideshows on DVD to play on a regular home DVD Player- Final Cut Express HD or DVD Studio Pro?

    I do slideshows on the side for many people. I started using iMovie at first and it is a very simple and easy program to use. Later, I found that I craved more advance options and upgraded to FCE; once I did this, I realized how clumsy iMovis is. So, I think that you should use iMovie for the first few slideshows you produce and then you will make the logical upgrade to FCE. iMovie is a very good program to help you to get accostumed to producing videos and slideshows while FCE will help you expand when you feel your ready to do so. If you want to check out some slideshows made both on iMovie and FCE got to my website at http://www.smilevideodallas.com

  • IPhone photos slideshow transition setting..

    iPhone photos slideshow transition setting has 5 options (e.g. cube, dissolve, etc.).
    I hooked up iPhone to my TV to watch the photos and the setting doesn't seem to do
    anything. Am I missing something?

    I just compared my iPod classic to the iPhone and just now realized how limited the transition selection is! And, it's not the same for the classic and the iPhone (no ripple or cube on the classic).
    Anyway, I see the same thing here with the ADDED issue that some of the images don't display at a high resolution while playing, but if I go back and display one by one, they do. The classic DOES display the same as what would display on the screen, but it's transitions are simple by comparison.
    Wonder when we'll see these again.
    http://homepage.mac.com/makentosh/iMovieTheater43.html

  • What is the direct connect method for transfering photos from my macbook pro to my iphone without using iTunes syncronization? (iow: a simple photo copy from mac to iphone?)

    I feel like I should know the answer to this. I can't believe it is a hard question.
    What is the direct connect method for transfering photos from my macbook pro to my iphone without using iTunes syncronization? (iow: a simple photo copy from mac to iphone?)
    Easy? Right?
    Just plug my iphone in to a mac and copy a photo from the mac to my iphone.
    I don't have internet access - I can't email it, or mobileme it, or dropbox it.

    iTunes. Other than that there is no direct method. However, do try the iPhone forums.

  • How do i make a photo slideshow / banner for the welcome page in iWeb

    How do i create a photo slideshow or fading slidshow for the welcome page in iweb

    There are trillions of slideshows to be found on the internets.
    Download the one you like, make it work the way you want and put it on the server.
    Display it in the browser to see if it looks the way you want.
    Then use the <iframe> html element to display it in a HTML Snippet.
    Like this :
    http://www.wyodor.net/iWebBlogTest/Wyodor_1/WebBanner.html
    http://www.wyodor.net/_Demo/MyHouse/
    You can also browse/search this forum to see if it has been discussed before. It has.

  • How to create a photo slideshow in my movie

    Hello all,
    Im woking on my first movie with Premier Elements 12 and I can not figure out how to include a slideshow of pictures at the end of my movie.
    Of course I can drag the photos on the timeline and use trancients in between but there is nothing I can do with the picture like editting/cut parts off, make them black/white and use movement effects for example.
    Isnt this an option/included in Premiere lements 12 ?
    I just bought the software but also played around with the trial of Cyberlink Powerdirector which has this handy magic function to select all pictures at once and create different/random trancirents and effects and pictures could be editted also.
    This is what Im after but I can not find how to do this stuff in Premiere lements 12.
    Hope someone can help me out.
    Thatnks in advance

    AlexSan
    Do you have Photoshop Elements 12 as well as Premiere Elements 12?
    What is this "movie" that the photo slideshow is going to be at the end of? A video? If so, what are the
    properties of that video...video and audio compressions, frame size, frame rate, interlaced or progressive, file extension, pixel aspect ratio?
    What is your intended final product...DVD-VIDEO standard or widescreen on DVD disc, AVCHD on DVD disc, or Blu-ray disc format on Blu-ray disc?
    With the above information, I will suggest some approaches that you might want to look into.
    Thanks.
    ATR

Maybe you are looking for

  • Some fonts don't work in Lightroom 4.2

    Hello, I am running Lightroom 4.2 on Windows 7.  I also have Photoshop CS6 installed.  I am trying to use a font in LR 4 for a text based watermark that I have been using for years in previous versions of LR.  The font is Kozuka Gothic Pro (OTF) and

  • It's official: 9/24 MacL webcast, iTU/Woolamaloo (and YOUR tool too!)

    Hi guys, It's official ... the next MacLearning.org webcast (September 24th at 10:00 AM PDT) is going to be all about iTunes U and Woolamaloo. I'll be presenting, along with Apple's own Miguel Young. I'll send more detail later ... but the date, time

  • Warning while loading example VIs for XPS motion controller

    Hi, I'm new to Labview. I want to control the XPS motion controller using Labview and I wanted to get started with the examples provided by XPS along with the drivers. But I get a warning while loading the example. I have attached a screenshot of it.

  • Getting multiple copies of iPhoto slideshow when I burn a dvd - why?

    I just learned how to create a slideshow in iPhoto and struggled through the learning curve to be able to burn it as it appears in iPhoto. I got so excited today when I burned a dvd and it actually played on my TV's dvd player, though it was missing

  • Missing inventory fields in ZRS 5

    Hello everyone, I've installed a ZRS5 to help a customer transition from BOE and while I was re-creating some of the reports I've noticed that some of the inventory fields (for example "last contact" and "last full refresh") that used to be available