Captivate 5.5 - How to return back to slide after YouTube clip?

I have a button on a slide which launches a YouTube clip, how do i get it to automatically return to the slide when the clip finishes?
Keep it simple please - I am new to this!!

Hello again
That's a tough nut to crack. When you open a new window, unless you are using JavaScript to do it, you really don't have any control over what happens with it. I suppose there *MIGHT* be something you could do with JavaScript to sense when the movie has completed. I'm not sure if that's even possible. But if it is, it would be somehing you would have to resort to JavaScript to accomplish. And that's far beyond the scope of what I'm able to tell you or even what this forum is designed to help with. Sorry
Best of luck to you in finding a good solution! Rick

Similar Messages

  • How to return a html repsonse after form guide rendering in browser?

    How to return a html repsonse after form guide rendering in browser indicating that server has recieved transmission and request is submitted succesfuly?
    I am rendering the form guide in browser using guide invoke service and when i submit the data in browser to server through guide , it is displaying some random number in browser?
    i need to display a resposne that request is submitted successfully?

    how could i define a variable with "html data" ?
    Create a variable of type document and then a service to read the html from where ever it's located. If you put it in LiveCycle, you can use the ReadRessource service. If it's on the file system, you can use the Read Document. If it's in the database, you can use the JDBC service.
    Also, one more doubt where should i use this variable in my process to get the same?
    You want the response once you've submitted the data, so the html is really the result of calling the process that's processing the data. So I would create an output variable of type document on that process.
    Right now it displays a random number in the browser because your submit process is long lived. When a process is long lived (asynchronous), you invoke it and then you get an identifier back. It's kind of a fire and forget. You can use that identifier to check the status of the long lived process, since long lived processes can take hours, days to complete. You don't want your browser to wait that long, hence the identifier.
    However if you change the process to be short lived (synchronous), the browser will wait for the result of the process, which really means the output variables for that process. If your output variable contains html, it'll display html.
    So the key is make you submit process short lived and populate the output variables appropriately.
    Jasmin

  • How can I return back to OSx after installing Lion?

    I'm disappointed. After installing Lion, everything is slower. The best thing I had last year was my new MacBook Pro, because everything was fast.. (sleep, opening programs, multitasking...etc) Now, everything takes forever. How can I return back to OSx?

    Downgrade Lion to Snow Leopard
    1.  Boot from your Snow Leopard Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Quit DU and return to the installer. Install Snow Leopard.
    This will erase the whole drive so be sure to backup your files if you don't have a backup already. If you have performed a TM backup using Lion be aware that you cannot restore from that backup in Snow Leopard. I suggest you make a separate backup using Carbon Copy Cloner 3.4.1.

  • Oracle forms 9i - How to return back from a block?

    Some one please help me
    In a trigger, I have a code says go_block. How to return from the block and back to the trigger to continue executing the codes below the go_block statement? Please see example below, I want to come back from block CHECK_STUFF and continue execute the statements
    :Name.option := '1';
    if :name.option = '1' then
    Example:
    Block: Name
    Item: yes_no - Key-next-item trigger
    declare
    begin
    go_block('check_stuff');
    go_item('answer');
    :Name.option := '1';
    if :name.option = '1' then
    Thanks - Patty

    The code behind the GO_BLOCK is executed immediately after the GO_BLOCK, it doesn't stop at that point. So you have to split your code, like
    declare
    begin
    go_block('check_stuff');Then, create a procedure like
    PROCEDURE PR_RETURN_FROM_BLOCK IS
    BEGIN
    go_item('answer');
    :Name.option := '1';
    if :name.option = '1' then
    END;Then, when returning from the block (in whatever trigger you use), just call that procedure.

  • How i return back my purchase application i deleted by mistake under purchase topic in app store.

    how i return purchased game application on imac i deleted by mistake under purchse topin in app store. also i want to know how i updated when i recieve a massage to updated

    For your purchases see here  >  Hiding and Unhiding Purchases
    For Updating see here  >  How to update your iPhone, iPad, or iPod touch
    To Update your Mac... Run Software Update... > Apple Icon  >  Software Update.

  • Toolbar disappeared how cani return back toolbar?

    the toolbar on top of the page all are deleted by mistake i can not return it back or i do not how i can do it

    Firefox 3.6+ versions have a feature to allow the user to hide the Menu bar.
    Hit the '''Alt''' key to temporarily show the Menu bar, then open View > Toolbars and select Menu bar, so it has a check-mark. <br />
    The F10 can also be used on most PC's to temporarily reveal the Menu bar.
    https://support.mozilla.com/en-US/kb/Menu+bar+is+missing

  • How to return back AIR Help in FB4

    I set in help application something like "see help pages in browser"
    how i can return it?
    thx

    Try this
    //--------------------------------------------Your Code-------------------------------------------------
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Alert_Library {
         JButton b_exit;
         JButton b1;
    JFrame ff=new JFrame("window");
    public Alert_Library() {
    Container contentPane = ff.getContentPane();
    contentPane.setLayout(new FlowLayout());
    b_exit = new JButton("Exit");
    b_exit.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    System.exit(0);
    contentPane.add(b_exit);
    b1 = new JButton("Alert");
    contentPane.add(b1);
    b1.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    alertFrame(ff);
    ff.setVisible(false);
    ff.setSize(300,200);
    ff.show();
    protected void alertFrame(JFrame fr) {
    AlertFrame framet= new AlertFrame(fr);
    framet.setVisible(true); //necessary as of kestrel
    public static void main(String args[]) {
    Alert_Library f = new Alert_Library();
    class AlertFrame extends JFrame {
    private boolean laidOut = false;
    private JButton b1;
    public AlertFrame(final JFrame frame) {
    Container contentPane = getContentPane();
    contentPane.setLayout(new FlowLayout());
    b1 = new JButton("Library");
    b1.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    frame.setVisible(true);
    dispose();
    // WHAT IS THE ACTION THAT WILL TAKE ME BACK TO THE MAIN FRAME..
    contentPane.add(b1);
    setSize(600,400);

  • How to return back my number

    I want to return my numbers

    Welcome to the Apple Community Ahmed.
    Apple's policy on sales of digital content is that all sales are final. If however you wish to appeal to Apple, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History on your computer.
    Currently, if your purchase happens to be your most recent purchase you will need to click the large ‘Report A Problem’ button under the list of previous purchases in order to reveal the ‘Report A Problem’ link for your recent purchase. If your purchase is listed as a previous purchase use the small arrow on the left side of its listing.
    Alternatively you can use the receipt email to report a problem.

  • My font size changed in Firefox when trying to read email using yahoo email. I now have to use explorer to read my mail. can you tell me how to return back to the readable size font. thank you

    I have been using firefox for years to read my email. recently the size of text became small and hard to read. I would like to get the text size large again, so I don't have to use the other browser. I have a att yahoo email account and subscribe to at&t uverse for internet service.

    I tried both of your suggestions and neither one worked. I found the solution by clicking on the "View" button, then "Reset". This put my email back to the original font/text size. Somehow the screen had been Zoomed in, so to change it, follow the instructions above.

  • How to restore backed up files after I used Rescue and Recovery

    Hi there lenovo community,
    so I'm struggling to find a solution on how to open these files right here:
    Link to image
    First of all, the program I used to back up my hard drive was the Rescue and Recovery that my lenovo desktop came with. I used an external hard drive (WD My Passport, specifically) to back up my old hard drive. The problem that I'm facing right now is how I can open these files, they seem to be not working with any of the option programs the "open with" thingy offers me. If anyone knows  an easy solution for this please please respond to me immediately.. I would really really appreciate it.  I have important documents there.  
    Thanks,
    Enrico
    Moderator note: large image(s) converted to link(s):  About Posting Pictures In The Forums

    Hello CP101, It seems this file extention is a priority file format.
    Here  is a link that has some information on how to resolve the issue.
    I would suggest reading all the suggestions, as some have different methods for resolving this issue.
    Please click the White Kudos star on the left, to say thanks.
    Please mark Accept As Solution if it solves your problem.

  • How to get back sample application after deletion

    Hi All,
    I have deleted Sample Application provided in HTMLDB 1.6 by default.So how can i get back those application.I have neither exported the application before.So is there any way to recover that?
    Thanks in Advance,
    Cheers,

    Hi Joel,
    The way u r directing me is quite ambigous........I have neither getting any options of Demostration nor the sample application...Can u be plz little more clear.
    I have register my name in the HTMLDB workspace & after exporting the application from there when i trying to import it in my application it gives version mismatch error.I m using 1.5 wheras the exported application user 1.6.Any way to avoid this problem?Otherwise i have to reinstall HTMLDB.
    Cheers,

  • How to get back WhatsApp data after hard reset. Backup disappeared

    So after suffering phone issues for months but being a new mum and having no time to reset my phone to factory default, so I could send it away, I finally last night thought I'd backed up everything, ready to reset!
    All my photos and videos are on google cloud and my 64gb SD card too. I'd backed up my SMS with an app and backed up all app data to Google. I'd also used the Sony backup/restore app to backup all my apps and I thought I'd backed up WhatsApp in its settings/chats/backup.
    I know WhatsApp makes a backup at 4am every night in case you reinstall it and so I thought I was fool proofed and reset/erased internal memory.
    On reinstaling, Google automatically started downloading apps again, which I didn't get, as I thought my backup from the Sony phone app would restore everything so i cancelled that.
    WhatsApp hadn't installed yet so I installed it from the play store and it said it could restore my data, so I said yes! BUT it restored a backup from June 26th 2015, not from the last day as I'd have thought from 4am backups!
    So I uninstalled WhatsApp and went to restore from the app backup file, which I could see had a backup of WhatsApp from 1st August 2015. Prob was it kept crashing on restoring the opera browser. It completed once but WhatsApp hadn't installed. So I ran it over and over. It still crashed on Opera.
    So I used Es file explorer to unhide files and found the Backup on my SD card with 1st August and inside could see WhatsApp. I cut the opera backup file from the back up folder and pasted it somewhere safe to see if the restore would not run. But when I went back to the Backup/restore app and clicked restore, my 1st August back up folder had disappeared! I went back to Es file explorer and sure enough, the folder was gone from the apps backup folders!
    It isn't in any recycle bin and now I think I've lost a month's worth of WhatsApp messages, which are really important to me! When I get chance, I'm going to put the SD card in my Mac and see if I can find the file there but has anyone got any advice on why the folder disappeared, when I only cut the opera backup from the folder?

    P.s, all hidden files are shown in es file explorer as this backup folder was hidden originally. It has a '.' in front. So I'm pretty sure the folder it's gone, but as I've not erased my phone again, shouldn't the folder be somewhere in my SD card still and how can I find it using my Mac?

  • How to update Back end applications after successful message transport

    Hi All,
    Currently we have a SOA composite that reads failed messages(Msg type 3) from B2B JMS message queue and updates our business tables of any b2b failures. However we are not sure how to handle successful B2B message transport scenarios.
    How back end applications(SOA composite) know b2b messages are handled successfully by B2B? How do we capture this successful scenarios? We don't have ack enabled.
    Thanks,
    Kathar

    However is there any push mechanism from b2b for this scenario.Option#1-
    B2B pushes messages details to BAM AQ (B2B_BAM_QUEUE in SOAINFRA schema) from where BAM picks up the details and uploads in it's data objects. If you are not using BAM then you may receive messages from this AQ. This is again a batch job and it is controlled by below two parameters -
    Enable BAM
    BAM Polling Interval
    http://docs.oracle.com/cd/E23943_01/user.1111/e10229/bb_config.htm#CEGEADFJ
    Option#2 -
    Write your own DB job which pulls details from B2B_INSTANCEMESSAGE view and pushes it for you at desired location.
    Only batch job is suitable for this scenario because B2B uses different set of intermediate states while message processing whereas you are only interested in one terminal state (MSG_COMPLETE)
    Regards,
    Anuj

  • How to go back to screen after an error message?

    why does the system exits the program when i use the error message?

    Hi,
    If you have got the answer then kindly close the thread to avoid confussion.
    Thanks in advance
    Pooja

  • How to get back installed apps after a fresh install?

    I would like to start a new installation, format Macintosh HD and reinstalling Snow Leopard. From that point carry on with Lion, Mountain Lion and, eventually but not sure, Mavericks. After the new install could be problems retriving all intalled apps from Applestore?
    Thanks

    My imac started with Snow Leopard, then after Lion and Mountain Lion i accepted the upgrade to Mavericks and i didn't appreciate the new interface and usage of some apps, i.e. iMovie. Meanwhile, even before Mavericks, os was slowing down, but even if a bit annoying and unusual still accetable. Consider that i have installed a bunch of apps regularly purchased, mainly fom Applestore. No fancy gadgets. So, as i didn't like that much Mavericks decided to restore from Time Machine. Possibly was a mistake and now i have an enviroment i feel i can't manage. Today, for instance iDvd shut down in an unaspected way three times and then i decided to reinstall. Agree Mac is not Win and, in fact, never had such a problem, but now i need, say for my interior peace, to start from a clean situation. That's why my question, what about my actally installed apps?
    Thanks

Maybe you are looking for