How to delete a slide and join its audio to a previous slide

Hi all

I just started using Captivate and I'm trying to edit a record of captivate and found that Auto has created a lot of slides, I don't want to have in my presentation (such as 30 slides that have been generated for a flashing button). I recorded a live session with multiple users, audio narration recorded presentation files are now linked to the slides.

What I would really like to do now is, multiselect all the slides, I have need, delete them and at the same time to fix all of their audio files to the previous slide.

And if this is not possible, I would also welcome with another way to achieve what I need - the addition of the audio from the other slides in the first of this series.

Please enlighten me ;-)

Kind regards

Holger

Hello

You must first identify the audio clips. Remove the slides you want. Then, you could probably edit audio for a slide (or the previous slide to deleted ones) and edit audio. Note that when mounting audio, you have the possibility to insert audio extra during the editing process by using the button in the library. This is noting the clips on slides that have been deleted would be useful. You can find them in the library and bring.

See you soon... Rick

Useful and practical links

Captivate wish form/Bug report form

Certified Adobe Captivate training

SorcerStone blog

Captivate eBooks

Tags: Adobe Captivate

Similar Questions

  • How to calculate the second and minisecond for audio landmark

    I'm doing a sound synchronization for the clip audio and video in Flash. I found a tutorial on the web, and it seems to work. However, I do not know how to calculate the second and the mini (deuxieme from mp3 file. The first frame has the following lines to set the duration for each animation:
    Import class
    Import net.quip.sound.SoundSync;

    Stop the main timeline
    Stop();

    Create an instance of SoundSync
    var ss:SoundSync = new SoundSync();

    ss.addCuePoint ("IT", 20100);
    ss.addCuePoint ("admin", 20000);
    ss.addCuePoint ("maintenance", 19800);
    ss.addCuePoint ("treatment", 16479);
    ss.addCuePoint ("engineering", 14598);
    as.addCuePoint ("logo_epa_npdes", 12356);
    ss.addCuePoint ("construction", 8967);
    ss.addCuePoint ("370 mg/j", 7896);
    ss.addCuePoint ("mc_650, 000 ', 5439);
    ss.addCuePoint ("130 mg/j", 3254);
    ss.addCuePoint ("1938", 2439);
    ss.addCuePoint ("vintage_mc", 0);

    Use the instance of loading external MP3
    ss.loadSound ("Scn04 - 05.mp3", true);

    Create a listener object for the
    cuePoint and onSoundComplete events
    var listener: Object = new Object();
    listener.cuePoint = function (): Void {}
    Play();
    }
    listener.onSoundComplete = function (): Void {}
    Play();
    }
    ss.addEventListener ("cuePoint", listener);
    ss.addEventListener ("onSoundComplete", listener);

    and the soundsync.as file as follows:
    Import mx.events.EventDispatcher;
    Import mx.utils.Delegate;
    class net.quip.sound.SoundSync extends its {}
    PROPERTIES
    private var _cuePoints:Array;
    private var _currentCuePoint:Number;
    private var _interval:Number;
    private var _intervalDuration:Number;
    private var _secondOffset:Number;
    Event dispatcher
    public var dispatchEvent:Function;
    public var addEventListener:Function;
    private var removeEventListener:Function;
    CONSTRUCTOR
    public void SoundSync(target:MovieClip) {}
    Super (target);
    init();
    }
    METHODS
    private function init (): Void {}
    Initialize properties
    _cuePoints = new Array();
    _currentCuePoint = 0;
    _intervalDuration = 200;
    _secondOffset = 0;
    Initialize the instance of the class as the valid event broadcaster
    EventDispatcher.initialize (this);
    }
    Add Cue Point
    public void addCuePoint(cuePointName:String,_cuePointTime:Number):Void {}
    () _cuePoints.push
    {
    type: "cuePoint",.
    name: cuePointName,.
    time: cuePointTime,.
    target: this
    }
    );
    _cuePoints.sortOn ("time", Array.NUMERIC);
    }
    Get cue point
    public void getCuePoint(nameOrTime:Object):Object {}
    var counter: Number = 0;
    While (counter < _cuePoints.length) {}
    If (typeof (nameOrTime) == 'string') {}
    If (_cuePoints [meter] .name == nameOrTime) {}
    return _cuePoints [counter];
    }
    } Else if (typeof (nameOrTime) == 'number') {}
    If (_cuePoints [meter] .time == nameOrTime) {}
    return _cuePoints [counter];
    }
    }
    counter ++;
    }
    Returns a null value.
    }
    Get the Index of the current Cue Point
    private void getCurrentCuePointIndex(cuePoint:Object):Number {}
    var counter: Number = 0;
    While (counter < _cuePoints.length) {}
    If (_cuePoints [meter] .name == cuePoint.name) {}
    return the meter;
    }
    counter ++;
    }
    Returns a null value.
    }
    Get the next Cue Point index
    private void getNextCuePointIndex(seconds:Number):Number {}
    seconds (seconds) =? seconds: 0;
    var counter: Number = 0;
    While (counter < _cuePoints.length) {}
    If (_cuePoints [meter] .time > = seconds * 1000) {}
    return the meter;
    }
    counter ++;
    }
    Returns a null value.
    }
    Benchmark deleted
    public void removeCuePoint(cuePoint:Object):Void {}
    _cuePoints.splice (getCurrentCuePointIndex (cuePoint), 1);
    }
    Remove all Cue Points
    public function removeAll_cuePoints (): Void {}
    _cuePoints = new Array();
    }
    Beginning
    public void start(secondOffset:Number,_loops:Number):Void {}
    Super.Start (secondOffset, loops);
    dispatchEvent ({type: "onStart", target: this});
    Reset benchmark
    _secondOffset = secondOffset;
    _currentCuePoint = getNextCuePointIndex (secondOffset);
    Poll for cue points
    clearInterval (_interval);
    _interval = setInterval (Delegate.create (this, pollCuePoints), _intervalDuration);
    }
    Load sound
    public void loadSound(url:String,_isStreaming:Boolean):Void {}
    super.loadSound (url, isStreaming);
    clearInterval (_interval);
    _interval = setInterval (Delegate.create (this, pollCuePoints), _intervalDuration);
    }
    Stop
    public void stop(linkageID:String):Void {}
    If {(linkageID)
    Super.Stop (linkageID);
    } else {}
    Super.Stop ();
    }
    dispatchEvent ({type: "onStop", target: this});
    Kill the ballot
    clearInterval (_interval);
    }
    Survey benchmarks
    private function pollCuePoints (): Void {}
    If the current position is close to the cue point.
    var time: Number = _cuePoints [_currentCuePoint] .time;
    var span: Number = (_cuePoints [_currentCuePoint + 1] .time)? _cuePoints [_currentCuePoint + 1] .time: time + _intervalDuration * 2;
    If (position > = time & & position < = span) {}
    Send event
    dispatchEvent (_cuePoints [_currentCuePoint]);
    Advance to the next landmark...
    If (_currentCuePoint < _cuePoints.length) {}
    _currentCuePoint ++;
    } else {}
    _currentCuePoint = getNextCuePointIndex (_secondOffset);
    }
    }
    }
    EVENT HANDLERS
    onSoundComplete
    public function onSoundComplete (): Void {}
    Kill the ballot
    clearInterval (_interval);
    Reset benchmark
    _currentCuePoint = 0;
    Send event
    dispatchEvent ({type: "onSoundComplete", target: this});
    }
    }

    any help will be greatly appreciated.

    Wuzhishan,

    > Hi Dave, your tutorial is very cute and it is very useful.

    Thank you! My daughter is cute. She inherited all of
    me, so I have not left. ;)

    > I'm sorry that I don't have my question clearly.

    No worries. :)

    > I have listen mp3 in Windows Media Player and try to
    > get both for the tail, I found it on the bottom of the
    > player time indicates 00:26.

    I'm with you.

    > How can I writer this number in the code? Is it 0026 or 26?

    The code expects milliseconds, then 26 seconds would be written as
    this:

    26000

    If he said 01:22 (one minute and 22 seconds), you must write it like this:

    82000

    ... which is 60 seconds for now, 22 seconds
    side, then multiplied by 1,000 to get milliseconds.

    David Stiller
    Adobe Community Expert
    Dev blog, http://www.quip.net/blog/
    "Luck is the residue of good design."

  • How to delete a partition and extend a volume?

    Original title: DRICE (c :)) IS FULL AND THE PLAYER (D :)) CANNOT BE USED)

    I INSTALLED WINDWOS VISTA ULTIMATE UPGRADE AND WHEN I FINISHED THE INSTALLATION PROCESS IT CREATES TWO PARTITIONS ON MY DRIVE, NOW I HAVE THE DRIVE (C :)) WHICH IS ONLY 12.6 GB OF CAPACITY N ITS ALMOST FULL AND THE OTHER DISK PARTITION (D :)) IS EMPTY WITH 452 GB, BUT I CAN'T DO THE PRIMARY READER.)) I NEED TO KNOW HOW TO MERGE TWO PARTITIONS INTO A SINGLE PRIMARY SINGLE PLAYER! Help, please!

    Hello

    Here's how you can do this:
    a. Click Start and type in the bar disk management search and then press ENTER.
    b. highlight the D: partition in disk management.
    c. right-click on the partition and click delete volume and follow the instructions on the screen to remove the volume.
    d. now right click on the C: drive and click on extend the volume to add the unallocated space.
     
    See the article below for more information:
    Delete a hard disk partition
    http://Windows.Microsoft.com/en-us/Windows7/delete-a-hard-disk-partition

    I hope this helps.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • How to delete records parent and child together?

    Hello

    I use Jdeveloper 11.1.2.2
    I want to delete a row in a table, but it is to show:
     Caused by: java.sql.SQLIntegrityConstraintViolationException: ORA-02292: integrity constraint (TABLE1_TL_FK1) violated - child record found.
    So, how can I remove a child line and the line of the table in a method?

    I can't access the child VO because it is not added to the AM.

    Thank you

    Nigel.

    http://docs.Oracle.com/CD/E26098_01/Web.1112/e16182/bcentities.htm#BABHFJFJ

  • How to delete the process and free up memory?

    Hi - I have 110 processes running, using the memory of 78%.

    It started quite recently and I had the computer a long time.  I have a JPG file with a list of processes. I don't know how to tell which I can remove.  And, since I don't know how they all got here in the first place, I don't know what to do to avoid this problem in the future.

    I use WebRoot, which always has me protected in the past, so I'm not sure it's a virus.

    I would appreciate your help.

    With all due respect, you should have mentioned the 'insufficient memory' message in your initial post. He told respondents much more than your question rather generally on the liberation of memory.

    'Insufficient memory' usually means that you have a request for misconduct, one causing "a memory leak" by requiring increasing amounts of memory until none is left. You could easily find by clicking on the working set column heading so that the application to memory greater demand floats to the top. Observing this display for a few hours, you will soon know where the leak occurs.

  • How to delete the duplicate and photos using windows 7 x 64 bit?

    I have a new computer using windows 7 x 64 bit. I noticed a lot of photos and files duplicate on my hard drive. It seems that any device that you plug into the computer it automatically records in the library under documents, music, pictures, etc... When configuring my e-mail or import/export does duplicate the same info, instead of ask or inform it is a duplicate. Help someone. I can't go directly to MS supports without going through many unnecessary changes. I JUST WANT TO KNOW WHAT I CAN DO?

    Hello

    If you look at the odds on these files, you can just about bet that they are safe to use.

    http://download.CNET.com/1770-20_4-0.html?query=duplicate+file+Finder&platformSelect=Windows&tag=srch&SearchType=downloads&FilterName=platform%3DWindows&filter=platform%3DWindows

    Auslogics has 4 stars which is a good rating at Cnet.

    Glary Utility has 4 1/2

    Need3Space - writing is here - 4 stars (not freeware)

    Duplicate File Finder - 4 stars

    Pay attention to the files you want to delete.  You will find a list of formats of files here.

    http://en.Wikipedia.org/wiki/Windows_file_types

    http://en.wikipedia.org/wiki/List_of_file_formats _(alphabetical)

    The digital negatives (RAW files) are safe remove.  These are digital files, camera or scanner, left on the disk, usually after photo/printing has been removed from the folder my pictures...

    http://en.Wikipedia.org/wiki/Raw_image_format

    Check the links classified by Ronnie Vernon for a better understanding of the libraries and files.

  • How to divide an object and preserve its gradient?

    Hello!

    I tried to do something that seems simple enough, but unfortunately I failed. I tried to find advice on the forums, but did not as well. So hopefully someone here can point me in the right direction.

    I have an object with a gradient (in my case a simple triangle - see below) now I want to divide it into 4 parts without losing the way in which the object appears.

    ex1.jpg

    No matter how I try, I always end up with 4 parts which each have degraded originally applied to them (see below).

    ex2.jpg

    I would like to get something that looks like this:

    ex3.jpg

    I hope that I can do this with Illustrator and someone knows how. Thank you very much!

    Simply select the 4 pieces and use the gradient tool to drag the gradient across all 4 pieces.

  • How to uninstall cloud creative and all its app. ?

    I terminate my subscription for creative cloud and would like to uninstall all his request?

    What is the safest and fastest way to do it?

    Thank you for your help.

    Gilles Gauthier

    use programs uninstaller and then clean by the use of the Adobe Creative Cloud cleaning tool to solve installation problems

  • My administrator account has been accidentally deleted from my computer. How to restore this account and all of my programs and Favorites?

    My administrator account has been accidentally deleted from my computer. How to restore this account and all its attributes?

    try to run a system restore point before the incident.

    the system restore function can restore the user accounts and some system folders.

  • Direct mail has now combined my husbands contacts with mine and also its calendar. How can I get these deleted without having to individually?

    combination unwanted contacts

    I sent an email from my husbands computer after signing with my info.  Direct mail has now combined its contacts with mine and also its calendar.  How can I get these deleted without having to individually?

    The contacts and calendar are associated with the Live ID used to sign in with. When you view your Inbox, press Ctrl-Shift-O for Options. On the connection tab, click on stop signing in. Now, check the contacts and calendar.

    Noel

  • How it delete and start from scratch?

    All I want to do is clear on my computer and restart from scratch. I have all my records, but he said not how to this in the instruction manuals... only includes restoration at some point and I don't want to restore. How it delete and start from scratch? I've saved my files to an external hard drive.

    If you are sure you want to do this - and it of a radical step, is generally not necessary - you potentially have two choices.

    In addition to your data, make sure that you have saved the downloaded installation files and their activation keys, as appropriate.

    Some computers manufactured by large OEMs have a hidden partition to "restore" that will allow you to restore the computer to its "fresh from the factory" State.  Alternatively, the manufacturer may have provided a 'recovery' or 'restore' CD/DVD which will accomplish the same thing.  One of the important side effects: test facilities of things like antivirus applications will install but not triggered because the trial period had been used.  You must uninstall these completely (using the "removal tool" provided by a / v manufacturer) before installing a real a / v application.

    On the other hand, you can have a genuine Windows XP install CD, although these are rare.  If that's what you have, you want to do what is called a "clean install".  Don't forget to install your device drivers after the Windows Installer is finished (card mother/chipset, network card, sound card, video card, etc.).

    http://michaelstevenstech.com/cleanxpinstall.html
    http://www.theeldergeek.com/xp_pro_install_-_graphic.htm

    In both cases, after Windows has been installed, the first thing we do is go to Windows Update and install all critical updates.  Then you can install all the applications you have installed after you purchased the computer.  They must be installed from the original media (a downloaded Setup program that you have registered or a CD/DVD).  If none of these applications are Microsoft applications, return to Microsoft Update and get updates critical for these applications.

  • I get a message saying "you have exceeded your profile storage space. Yet all the files listed th are actually my docs and application data. How to delete my profile, but not from my pc? increase the max profile size

    I get a message saying "you have exceeded your profile storage space. Yet all the files listed th are actually my docs and application data. How to delete my profile, but not from my pc? increase the max profile size

    1. the first thing to do is to make sure that the computer is completely virus/malware-free. Googling around this error produced quite a few links where the posters were or had been infected with Spyware Protect 2009 rogue.

    http://www.elephantboycomputers.com/page2.html#Removing_Malware

    Once the scanning is complete (do not skip the preparatory stages no more), if the problem persists:

    2. double-click on my computer, right-click the icon for your hard drive, click left to get its properties. If you see options to set Quota management make sure that they are disabled.

    3. in the case - BUT ONLY AFTER YOU ARE sure THAT THE MACHINE IS MALWARE/VIRUS-FREE - copy the lines between asterisks (not including the asterisks) below and paste it into Notepad. Save as undopolicy.reg somewhere, you will find. And then double-click the .reg file, that you have just made to melt in your registry. I hope that this will take care of the issue.

    *****
    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    'EnableProfileQuota ' = -.
    'ProfileQuotaMessage ' = -.
    "MaxProfileSize" = -.
    'IncludeRegInProQuota ' = -.
    'WarnUser ' = -.
    'WarnUserTimeout ' = -.
    *****

    MS - MVP - Elephant Boy computers - don't panic!

  • How to add a Gadget in Windows 7 to display AN image on the desktop and set its size

    The slide show in Windows 7 Gadget displays the images to a predefined size.
    I want to increase the size of this form, if possible.
    If this is not possible, how can I do (add) a Gadget to display a picture on the desktop and set its size.
    Thank you in anticipation of some tips.

    Click with the right button on the desktop background and select Customize,

    Click the downstairs desktop background link on the left

    Another thing would be edited / Resized in a photo editing program at least the size in pixels of your monitor.

    Right-click on your desktop, and then select the screen for your recommended resolution setting resolution / pixel dimensions.

  • Please someone tell me why I get this error, as my D: recovery drive has 3 GB of space on 28, I don't know how to delete it and it may be the cause but I'm not sure, that's why I'm here :(

    The error is the reference 0x00c91187
    memory 0x47be01e0. The memory could not be read

    Here is a link to the screenshot of my http://tinypic.com/view.php?pic=1e56v6&s=8#.VCyjYPldVOZ error

    I don't know why I get this error and its very annoying, my hard drive has 3 GB of space for 28 gigatbytes, why is there so much space taken up there and how I delete it without hurting important files

    It dose it when you try to run an apillication game. or other

    Sorry for not being detailed

    I hear by clear weather, how to free up space on my D: recovery drive?

    and I am referring to the game app is soldier fonts 2, it gives me error when I start the game

    and no, I only get this error with the soldier make game 2 application only

    and here's a better link RII

    Sorry for the inconvenience

    http://Tinypic.com/view.php?pic=1e56v6&s=8#.VC3GRfldVOZ

    OMG IT WORKS SO BAD, I HAD TO UPGRADE TO WINDOWS 8.1 WAHOOOOO

  • Once an unapproved site is added as an exception, how can I go back and delete the exception later?

    Once an unapproved site is added as an exception, how can I go back and delete the exception later?

    Thank you, Jefferson. You addressed the issue beautifully and delightfully complete.

    I found and deleted the server where I got the exception.

    "In the future, I suggest, by making an Exception, uncheck the box that adds a permanent exception. In this way, when you exit Firefox, the exception is removed automatically. »

    AHA. It's very good to know. I missed it when granting the exception today.

    The exception I gave (and now deleted) today wasn't really a risky site. I know the owner. Just a little problem in their relationship.

    Thanks again. And thanks Toddy... I did not say clearly what type of exception.

Maybe you are looking for