Returning to LAST slide of PREVIOUSLY loaded movie

Hello all!
I am truly stumped. I have a lengthy project that needed to
be broken apart into about 15 different Captivate movies that will
load seamlessly to the user. My problem occurs when users click the
back button. If they are on the first screen of the 3rd movie,
clicking back only replays the first screen again and again. I need
them to be able to click the back button and load the LAST slide of
the 2nd movie. Make sense?
I have tried using the Captivate Player - a great tool, by
the way! Has anyone found a way to tweak the player to accommodate
this problem, or does anyone have any other tools or suggestions?
Thank you so much for any help! I've spent weeks trying to
figure this out, and I'm pulling my hair out!
Tracy

Hi TracyAbney
This isn't currently possible, nor am I aware of any existing
workaround. But I certainly don't know everything. Those Flash
developer types are pretty darn creative!
If you think it would be a worthwhile featue, you could
certainly request it by
clicking
here.
Cheers... Rick

Similar Messages

  • Using system variables to open new SCO and then return to same slide in previous SCO

    Hi,
    I am working on a eLearning project which will have about 30-40 individual lessons (SCOs), with a common Glossary of terms used in the lessons.  The user needs to be able to click on the Glossary button in any lesson, go to the Glossary and then ideally return to the same slide in the SCO where they clicked on the Glossary button.
    I am still learning Advanced Actions but I have seen variables such as curentScene, and currentFrame.  Could these variables be used to create an Advanced Action which would take the user back to the same slide or is there a system variable which could be used to peform this function?
    Really need help on this one.  If what I am trying to do is not possible then knowing that would be very useful too as I will not spend anymore time trying to find a solution but will look at other alternatives.
    Thanks,
    Richard

    When you reopen a file, all variables are reset... so with Advanced actions this will not be possible AFAIK. Michael Lund, cpguru, has a Save and Load Data widget that allows to pass values of variables between files. Maybe JavaScript could help as well?
    I do not know the system variable you are pointing to. There is cpInfoCurrentSlide and cpInfoCurrentFrame but scenes? Perhaps you are using StoryLine and confusing the terminology. In this blog post you can find a link to the complete list with available system variables in Captivate 6:
    http://lilybiri.posterous.com/system-variables-in-captivate-6
    Lilybiri

  • Keeping the last slide on the screen when show is over

    I am hoping this is an easy solution. I am creating a slideshow which I am exporting to quicktime and what I am trying to do is keep the information from the last slide to stay on the screen without disappearing.
    Do anyone know how to do this?

    You can also set the poster image for the QT movie to be of the last slide so when the movie is not playing and not in pause it will default to the poster image. Set poster image for KN in QT inspector and for QT in QT Pro.
    If what Brief ly said is correct, no worries, if not set last slide to longest duration possible, duplicate the slide a few times and make a huge QT file of 30min of same image. Try using an efficient codec that realises the images isn't changing. No recommendations, you have to test for your particular image.

  • Last day of previous month for data load

    Hi,
    I have to load data from the previous month into the psa and then into an infocube. I was wondering as to how to get the last of the previous month to write a code in ABAP. I will be writing the code at the infopackage level in the data selection. I could load data from the 1st of the previous month to the 1st of the current month. This will be an additional load of 30,000 records for the 1st of every month, since I will be loading 30,000 records everyday, I was wondering if I could limit the load from the 1st of every previous month to the last day of that month. This will be a repetitive loading.
    DATA: CURR_MM(2) TYPE N,
    CURR_YYYY(4) TYPE N,
    CURR_DD(2) TYPE N,
    PREV_MM(2) TYPE N,
    PREV_YYYY(4) TYPE N,
    PREV_DD(2) TYPE N,
    YYYY_MM(6),
    YYYY_MM1(6),
    DATE LIKE SY-DATUM.
    DATE = SY-DATUM.
    CURR_YYYY = DATE+0(4).
    CURR_MM = DATE+4(2).
    CURR_DD = DATE+6(2).
    PREV_DD = 1.
    IF CURR_MM = '01'.
    PREV_MM = '12'.
    PREV_YYYY = CURR_YYYY - 1.
    ELSE.
    PREV_MM = CURR_MM - 1.
    PREV_YYYY = CURR_YYYY.
    ENDIF.
    concatenate PREV_YYYY PREV_MM PREV_DD into YYYY_MM.
    concatenate CURR_YYYY PREV_MM PREV_DD into YYYY_MM1.
    read table l_t_range with key
    fieldname = 'BLDAT'.
    l_idx = sy-tabix.
    l_t_range-low = YYYY_MM.
    l_t_range-high = YYYY_MM1.
    l_t_range-sign = 'I'.
    l_t_range-option = 'BT'.
    modify l_t_range index l_idx.
    p_subrc = 0.
    Mind you this code will load data from 1st of the previous month to the 1st of current month. I just don't want to load that extra "1st day" of current month data as I have 30,000 records everyday.
    Say for example, I want to load data from 1st Mar to 31st Mar or 1st Feb to 28thFeb. How should I modify the above code.
    Is there a formula to get the last date of the previous month. That's all I need. This would solve the problem.

    try this routine. it will return a range from 1st day to end of the month.
    DATA: l_s_range TYPE rsr_s_rangesid,
              E_T_RANGE TYPE  RSR_T_RANGESID.
    DATA: year(4) TYPE n,
          month(2) TYPE n,
          day(2) TYPE n,
        ld_keydate  TYPE sydatum,
          ld_lastday  TYPE sydatum.
      REFRESH e_t_range.
      CLEAR l_s_range.
      year  = sy-datum(4).
      month = sy-datum+4(2).
    *Months with 31 days in year
      IF month = '01' OR
         month = '03' OR
         month = '05' OR
         month = '07' OR
         month = '08' OR
         month = '10' OR
         month ='12'.
        day = '31'.
      ENDIF.
    *check for leap year: provoking sy-sybrc <> 0
      IF month = '02'.
        day = '29'.
        MOVE:   '02'        TO ld_keydate+4(2),
                year        TO ld_keydate(4),
                day         TO ld_keydate+6(2).
        CALL FUNCTION 'DATE_CHECK_PLAUSIBILITY'
          EXPORTING
            date   = ld_keydate
          EXCEPTIONS
            OTHERS = 1.
        IF sy-subrc <> 0.
          day = '28'.
        ENDIF.
      ENDIF.
    *months with 31 days in year
      IF month = '04' OR
         month = '06' OR
         month = '09' OR
         month = '11'.
        day = '30'.
      ENDIF.
      MOVE: year              TO ld_lastday(4),
            month             TO ld_lastday+4(2),
            day               TO ld_lastday+6(2).
      l_s_range-low  = sy-datum.
      l_s_range-high = ld_lastday.
      l_s_range-sign = 'I'.
      l_s_range-opt  = 'BT'.
      APPEND l_s_range TO e_t_range.

  • Clicking a button returns a user to the last slide he/she visitied

    Is there a way in Captivate to create a button that will
    return a user to the last slide he/she visited instead of going
    back to a previous slide?

    I guess not, if you are saying that the "Previous Slide"
    won't work. Just so I don't get too lost, are you saying that the
    previous slide is
    not what the user viewed last? As in, they got to this slide
    through a "jump" from another.
    I wonder if Java-script's "history" command could help. I
    don't think so, because it doesn't involve a HTML document history,
    and to my knowledge, there is no Flash action-script equivalent for
    that Java-script call ... (???)
    Captiv8tor usually follows along behind me looking to add his
    version of help to my posts, so maybe he can give us more
    information on the use of Java-script or Action-script to
    accomplish what you need. Good luck! Larry

  • How to keep the last slide image in the background during loading transition??

    Does anyone have any good strategies for using the last slide as a static background image when one swf file transitions to another during the loading process?  Basically, I'd like to keep the loading image ontop of the last slide during the transition.

    Does this fairly recent post help?
    http://forums.adobe.com/thread/561129
    Erik

  • MOV exported from Keynote - last slide disappears, audio continues playing

    I have a series of three mov files that were created in & exported from Keynote. They are audio & slide shows that are to autoplay on a website. Two of the files function as expected once embedded in the website, one does not; the last slide drops out (displaying a white screen) while the audio continues for approximately 30 seconds until the mov file ends. To add confusion to the issue ALL the files play as expected using Safari (on Win & Mac). Using Firefox on Mac delivers the "broken" results. Using ANY browser on Windows yields the broken result.
    Any suggestions from anyone as to what could be causing this? A link to the website I'm talking about is below. The problem file is on index2.html

    Hi,
    Since I am trying to do a number of things with Keynote, I read these discussions looking for opportunities and pitfalls.
    I read your message, and saw your outcome as an issue. Since I've yet to add the soundtrack to my current project, I needed to know more about the outcome before I proceeded, in order to adjust accordingly.
    I took my project, and added a song as the soundtrack. I played the slideshow, and the soundtrack played along, across the slides as it should. I then began to record the slideshow, but the soundtrack came playing through the speakers and was being picked up by the microphones, so I offed the speakers, donned my headphones, and re-began the recording. The soundtrack was playing (in the headphones), and I was narrating across many slides.
    I played the recorded slideshow, and all was present - soundtrack and recorded narration.
    I exported to Quicktime, sending the output to a new folder so that it could easily be found, along with anything else that might be generated. Upon completion, there was only one movie file in the folder. I opened and played it in Quicktime. It was perfect - slides looked good, narration was there, and the soundtrack was playing in the background.
    This outcome appears to be your objective, so I'm not sure what I did differently than you, but from this experience, it works as should be expected.
    Good luck.

  • Have a new computer and want to down load previously purchased movies how do i do this

    I have a new computer and want to down load previously purchased movies but can't find them. How do I do this.

    Install iTunes. Login with your apple ID and click "iTunes store". Click "purchased" on the right and you should see all previously purchased content to download.

  • Stop on last slide with active buttons

    Hi everyone,
    Am still a beginner with Captivate...please help:
    I've got 4 buttons set up on the last slide of Movie1, functioning as a simple menu, sort of.
    First button goes to Movie 2, second button jumps to Movie 5, third button jumps to Movie 8, with a last WATCH ALL button starting from Movie 2 as well. All these movies are linked to each other (ie. movie 3 starts when movie 2 finishes).
    How do I get the Movie1 to stop on the last slide, with all 4 buttons remaining active?
    In my published exe, the buttons work if and only if I click on them before the project comes to a stop.
    Thanks loads in advance!

    Hello again
    While you can't really accomplish it with the Buttons as they stand, you can do something I did. Be creative! I inserted some "disabled" images of the buttons. Staged the images to be present when the Buttons could not be clicked. Then configured the Buttons to appear at the times when I wanted them to.
    Here's a hint. If the Buttons are always in the same place, you may insert the "disabled" image on the first slide and configure it to display for the rest of the project.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Loading movie with variable inconsistently working

    I have multiple files that link together. When the user
    clicks a button "back", a variable "return" is set and another swf
    loads. The actionscript of the new movie checks to see if all the
    frames are loaded. If they are, AND the variable "return" is true,
    then it jumps to the last frame.
    This code has worked for the last 4 years. Now, for some
    reason, on SOME machines it is no longer working. Instead of going
    to the last frame, it goes to the first frame.
    This is being delivered for IE deployment.
    Any help is greatly appreciated.
    --penny

    FRAME 1:
    System.useCodepage = true;
    main="";
    pageNum=1;
    if (_framesloaded > 50){
    //if (_framesloaded == _totalframes){
    gotoAndStop (8);
    } else {
    gotoAndPlay(1);
    FRAME 7:
    gotoAndPlay(1);
    FRAME 8:
    if (whichFrame == "return"){
    gotoAndStop (20);
    less6.gotoAndStop(2);
    } else {
    gotoAndStop("splash");
    FRAME 20:
    if (_framesloaded == _totalframes){
    gotoAndStop ("p14");
    } else {
    gotoAndPlay(10);
    }

  • How can I export a graphic slide with a quicktime movie from Keynote?

    I export a title slide with a quicktime movie from Keynote to my desktop and it plays fine with audio. Once I insert or drag the clip into iWeb the resolution is degraded and very choppy. The resolution is 320x200 and I'm exporting from Keynote as a custom size (320x200) Frame rate: 29.97 Key Frames: Automatic Key Reordering is checked Data Rate: Automatic Quality: Multi pass. I need some help.

    how large is the video and if you publish - does it still have the same horrible quality?
    you might considering exporting as flash (loads faster) and integrating that into your iweb site using post-editing: http://karreth.com/index.php/articles/iframes-iweb/
    max

  • After hitting  link in nbc news, there is no return to same spot on previous page.

    After hitting  link in nbc news, there is no return to same spot on previous page.

    I had a similiar problem.. perhaps my solution will give you an idea. My problem is I was returning a list of records.. when the user clicked more down I added the next 50 records.. but I didn't want them to have to scroll down themselves.. So the tag that generates the records inserted a specific id on the row I wanted to start with and then I used the following javascript to scroll down (all of this was in a nested scrollable div tag) This solution works in both FF and IE.
    var divObj = document.getElementById('AnchorDiv');
    var anchorObj = document.getElementById('ScrollHere');
    if(anchorObj!=null&&divObj!=null){
         divObj.scrollTop = anchorObj.offsetTop;
    }     So for you you could put an ID on the container that contains the tabs.. then when the page loads have javascript fire that scrolls the page down to that element... You will of course have to make sure you have some value on the form or in the session that you can use to tell you it is infact a tab change, so that it doesn't scroll down there all the time.
    That may not help, but it might get you thinking in the right directions..

  • Ipod will only load movies OR music - is this normal?

    hey hello
    my ipod only loads movies or music not both. i wonder if this is normal. i tick sync movies and as soon as i choose "sync ipod" the tick vanishes and nothing has changed.
    if i want to manage music and movies myself i can only load music or movies.
    i dunno if this is normal im sorry for wasting your time but i would appreciate help
    laptop   Windows XP  

    Probably because photo stream only keeps photos for 30 days, even though they remain on your devices (up to 1000 photos) until you delete them.  These photos are probably the ones added in the last 30 days.  To view the others, you can either create a shared photo stream with the others and invite yourself, or you can open them on your device and use AirPlay to stream them to your Apple TV.

  • Go to frame, play a few then load movie?

    I am working on a continously playing banner that has 5
    different movies. there is a navigation bar below with 5 buttons,
    one for each movie. There is also a puase/play button so you can
    stop the animation and resume it. What I cant figure out is how to
    actionscript the buttons. I need them to jump to a particular frame
    in the current movie, play a specific set of frames (the outro
    animation sequence), then load the appropriate movie.
    on (release) {
    gotoAndPlay(series of frames???);
    loadMovie("movie2.swf", 1);
    Any suggestions? Thanks!

    I'm still having trouble grokking it...... Ok so I am
    watching the animation, Movie #1 ends and loads Movie #2 and I am
    on Movie #1 but I decide I want to jump to movie #4 (there are 5
    movies altogether), I click on the button for Movie 4, it then
    jumps to the frames I labelled to play the outro, then loads Movie
    4.
    So in one scenario I can watch all 5 movies in sequence. At
    the end of each movie is the frame:
    var holder_mcl:MovieClipLoader = new MovieClipLoader();
    holder_mc.clear();
    holder_mcl.loadClip("your_file.swf", holder_mc);
    where "your_file.swf" is the next movie in the sequence e.g.
    movie2.swf at the end of movie1's timeline.
    In the scenario I descfribed above where I want to skip Movie
    #3 and jump to movie #4, I use the button code:
    on(release){
    holder_mc.clear();
    gotoAndPlay("movie2outro");
    to play my outro, but if I am currently in movie #2, where
    loading movie3 is called to load at its end of that timeline, how
    can I load movie #4 in a frame in the same timeline?
    You can see something similar on the home page for Micron
    http://www.micron.com. The big
    difference is that my "slide show" plays continuosly (will
    autonmatically go to the next "slide") whereas you have to choose a
    link on the bottom on the the micron.com one to go to another
    slide.
    Thanks so much for your help!

  • Finally got itunes to update to version 11.1.4.62, but cannot view previously downloaded movies.  Movies show up in video tab with an additional download folders but I'm unable to watch.  Have any suggestions?

    I finally had success downloading iTunes update version 11.1.4.62.  Some problems with music, songs are mixed into different albums, some didnot load. Major problem is that all of my previously downloaded movies are listed in the new iTunes, but I can not watch any, all I get is a black screen with the control panel in the lower middle as usual.  Is there anything I can do to recover and watch my movies or do I have to remove everything and start from scratch.

    Hello jaybearden,
    Thanks for the question. After reviewing your post, it sounds like you are not able to restore the iOS device since you get an error 9. I would recommend that you read this article, it may be able to help the issue.
    Resolve iOS update and restore errors - Apple Support
    Check your security software
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006. Sometimes security software can prevent your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't preventing a connection to the Apple servers.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

Maybe you are looking for

  • How can I sync contacts to IMac, Icloud and Iphone

    My Contacts on my Imac have only one option in settings to sync with my google contacts.  Before Icloud all my contacts and calendar synced just fine between my Imac and Iphone.  Now with Icloud I never seem to be able to sync contact to or from my I

  • Webutil UTF8

    Has anybody had success using Webutil with UTF8? I keep getting a java.io.UTFDataFormatException. we8iso8859p1 works fine. Regards Anton Weindl

  • How do you define graph scales live?

    Hello, I am having an issue with a simple VI I am trying to create that displays test data. A little background on the setup: I have an Agilent 34970A data logger recording thermocouple data every 30 seconds which gets appended to a .csv file.  My VI

  • Calling new screen (through variant)

    Hello Gurus,   I have a small question. We have following scenario to implement: In Shopping Cart we want new source of supply screen. On click of Source of Supply screen this new screen should be displyed.   Can anyone tell efficient way to do this

  • Platinum QoS profile limits data traffic

    Hello, I have WLC which controls a WLAN that hosts data traffic and VoIP traffic. I have enabled Platinum QoS profile and the throughput of the WLAN decreases to approximately 10 Mbps (With bronze QoS profile throughput was like 22~25 Mbps). I would