Can an audio file be moved to a different slide?

I was told that this would be true in Captivate3, but I don't
see any way to do this. Is it possible?
Lane in Charlotte, NC

Hi LaneGS,
Yes, an audio file can be moved to another slide. Or
duplicated. Or deleted. The "Library" is excellent for these tasks.
To replace audio on a slide with the audio from an different slide,
just grab the audio you want from the Library and drag it onto the
slide on which you want to place it.
To find (in the library) an audio file for a specific slide,
go to that slide, and from the timeline, right-click the audio
object and select "Find in Library".
Naturally, you can (also) still export all audio to another
folder, and insert or import it from there to another location, or
even a totally different Captivate movie, from the location you
exported to. Just like you could in Captivate 2. To export audio,
go to "Audio (menu) > Advanced Audio", select the audio you want
to export, select the target folder, and click the "Export"
selection.
Have a nice day.
.

Similar Messages

  • TS1717 I can play audio files in iTunes but I can't play downloaded tv shows or movies.  Everytime I attempt to play them, iTunes stops working and closes.

    I can play audio files in iTunes but I can't play downloaded tv shows or movies.  Everytime I try to play them, iTunes stops working and closes.  Any information will help.

    Is QuickTime installed? If not it might help to install it.
    If so is Direct3D Video Acceleration enabled? If so it might help to disable.
    tt2

  • I can open audio files but can't find them with Finder or Spotlight.

    Hello!
    I wanted to delete a few songs and found that by searching in Finder or Spotlight they couldn't be found. 
    I can open the files in Finder by opening iTunes, ctrl clicking the song and selecting 'view in Finder'. If I then 'get info' on the file it gives a folder, 'iTunes music' that I can't find. Is it possible the folder is there but hidden or that 'get info' is giving the wrong address?
    I've recently moved my data (only) onto a new computer using Migration Assistant. On my old computer I'd find the songs by searching in Finder with no problems.
    Here's an example incase I've not been clear:
    I ctrl click on 'the boy who killed time' and select 'open in finder'.
    It opens in finder and i again ctrl click on it and select 'get info'.
    Get info gives me the following address for the file: Macintosh HD ▸ epoche ▸ Music ▸ iTunes ▸ iTunes Music ▸ vincent vincent and the villains ▸ are you ready for the country.
    If I look for the song by clicking through the folders in finder (opening 'epoche' then 'Music' then 'iTunes') I can't find the folder 'iTune Music' in the 'iTunes' folder.
    Any ideas?  Rachel

    My answer in the older thread is still valid
    Maybe the "iTunes Music" folder is hidden.
    Please open Terminal and issue the following command
    ls -ladO /epoche/Music/iTunes/iTunes\ Music
    you should get a line similar to this
    drwxrwxrwx  13 yourusername  staff  hidden 442 12 Mar 21:49 /epoche/Music/iTunes/iTunes Music
    Numbers, date and time may differ.
    If you see hidden then the folder is hidden. To unhide "iTunes Music", in Terminal issue the following command
    chflags nohidden /epoche/Music/iTunes/iTunes\ Music

  • How i can run audio file remotely ??

    {color:#000080}*Hi for all*{color}
    i have sound file in my local machine, and i want to run and start the file on remote machine, ( where the remote user just can hear the sound without storing file on it).
    i tryed to do that, but faced some problems,
    *{color:#0000ff}The main problem is the sound never heared in the remote machine.{color}*
    Server program run try "lawha.wav"Audio file into client.+_
    My attempts bellow;{color}
    {color:#ff0000}*Server Code*{color}
    import java.io.*;*
    *import java.net.*;
    import javax.sound.sampled.*;
    public class Server{
    ObjectOutputStream send;
    ServerSocket socket ;
    Socket in;
    AudioInputStream audioInputStream;
    public static void main( String[]args ){
    new Server();
    public Server(){
    mThread m = new mThread();
    m.start();
    class mThread extends Thread{
    public void run(){
    try{
    System.out.println("Server is running..");
    socket = new ServerSocket(10000);
    System.out.println("Server run on PORT : 12500");
    while(true){
    audioInputStream = AudioSystem.getAudioInputStream(new File("c:\\lawha.wav"));
    System.out.println("channel for sound file is ready");
    in = socket.accept();
    System.out.println("Server accepts new client");
    send = new ObjectOutputStream(in.getOutputStream());
    System.out.println("transfer channel is ready now");
    System.out.println("**************************************");
    sendStream();
    catch(Exception ex){ex.printStackTrace();}
    }// End .. try catch
    public synchronized void sendStream()throws Exception
    byte[] buffer = new byte[100];
    int size;
    while( (size = audioInputStream .read(buffer,0,buffer.length)) != -1 ){
    send.write(buffer, 0, size);
    System.out.println("Server : send the bytes");
    send.flush();
    }}*{color:#ff0000}Client Code{color}*
    import java.io.*;*
    *import java.net.*;
    import javax.sound.sampled.*;
    public class Client
    ObjectInputStream input;
    Socket socket;
    SourceDataLine sourceDataLine;
    AudioFormat audioFormat;
    AudioInputStream audioInputStream;
    ByteArrayOutputStream byteArrayOutputStream = null;
    byte[] buffer;
    public static void main( String[]args ){
    new Client();
    public Client(){
    try{
    socket = new Socket("192.168.1.3", 10000);
    input = new ObjectInputStream(socket.getInputStream());
    ReciveStream rThread = new ReciveStream();
    rThread.start();
    catch(Exception ex){ex.printStackTrace();}
    public class ReciveStream extends Thread{
    public void run(){
    try{
    byte[] buffer = new byte[100];
    audioFormat = getAudioFormat();
    System.out.println("construc the format");
    DataLine.Info dataLineInfo = new DataLine.Info(SourceDataLine.class,audioFormat);
    System.out.println("data Line Information is ready now");
    sourceDataLine = (SourceDataLine) AudioSystem.getLine( dataLineInfo);
    sourceDataLine.open(audioFormat);
    System.out.println("the source is opened");
    sourceDataLine.start();
    System.out.println("the source is started");
    while(true){
    input.read(buffer);
    System.out.println("Client : recieve the bytes");
    sourceDataLine.write(buffer, 0, buffer.length );
    catch(SocketException ex){ex.printStackTrace();}
    catch(IOException ex){ex.printStackTrace();}
    catch(Exception ex){ex.printStackTrace();}
    System.out.println("after Exception");
    public AudioFormat getAudioFormat(){
    float sampleRate = 44100.0f;
    //8000,11025,16000,22050,44100
    int sampleSizeInBits = 16;
    //8,16
    int channels = 2;
    //1,2
    boolean signed = true;
    //true,false
    boolean bigEndian = false;
    //true,false
    return new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, sampleRate, sampleSizeInBits, channels, 4, sampleRate, bigEndian);
    }Edited by: SunJD on Apr 27, 2009 9:42 AM

    kajbj wrote:
    Why are you using ObjectInputStream and ObjectOutputStream?i just tried to use any Out/InputStream without any other considerations..
    so what is your suggestions ??

  • Can't find files I "moved" to iCloud from Preview

    I simply opened the PDF files then "moved" them to iCloud.  I open iCloud and don't see where I could find them.  I checked my System Preferences for iCloud and more options seem to appear there than are available online... I'm confused.
    K

    When I "moved" them, I opened them from my desktop in Preview and when the command was complete, they were no longer on my desktop!  I still have the files that arrived in an email account - I'll likely forward those to my cloud account and just do that in the meantime. 
    It is a bit odd that we wouldn't have access to stuff that clearly was moved to the cloud...
    Thanks for your help

  • Help! Can't find files I moved to Time Capsule

    About a month ago, I moved several files from an external HD to my Time Capsule HD. The folder of files was apart from the regular Time Capsule update. When I entered Time Capsule today, the folder of files is no longer there. In fact, the Time Capsule seems to go back no farther than 2 weeks. What happened to the files? Can I recover them?
    I have 2 TB of space on the Time Capsule HD, and still have 1.7 TB available, so space isn't an issue. Anyone have any idea how I can find my missing files? I had no idea that Time Capsule got rid of stuff after 2 weeks.

    How did you move the files?
    Did you move it to inside the sparsebundle? That would be bad.. very very bad.
    If you moved it to the root directory.. the name might be data or Time Capsule.. or half a dozen other things .. check there.
    The TC will not remove files at all.
    TM could do anything from the sparsebundle as it is controlled not by the TC but by TM.

  • How can I solve issues with moving mail to different folders?

    I am not able to move certain files from one folder to another? I get a pop up that says, "unable to move message" and right underneath that it says, "the message could not be moved to the mailbox inbox". It will not allow me to move anything in that one folder to any other location, but when I tried moving things in another folder to a different one I had no problem. Does this make sense? Please help.

    send it in "windows friendly format" when you click the paper clip for an attachment.

  • Can you access files and edit them from different computers in Creative Cloud?

    I want to understand the workflow we can have. We have three computers and would like to access and edit the same files in Creative Cloud. Can you do this? I understand I may have to purchase two licenses but will this give everyone access to the same files and able to edit and upload files.
    We do this in Dropbox now but with Creative Cloud is sounds like all I can do is share a file for them to comment on, not edit?

    Hi Olivia,
    With Creative Cloud, file editing comes in via downloading Adobe applications with a Creative Cloud membership. While you cannot edit within Creative Cloud, you can share files with your coworkers which can then be downloaded, edited in an Adobe application, and reuploaded to the Cloud.
    Be aware that although you can have two computers activated on the same Creative Cloud membership, you cannot use the same application on two computers simultaneously. A Creative Cloud membership is for one user that can be used on one or more computers.
    You may want to look into the Creative Cloud Team Ready, that targets work environments like yours. You can read more about Team Ready here.
    Hope this helped clarify your questions!

  • Can't drag files from Organizer 13 to different folder

    I recently installed PSE13 on my PC running Windows 8.1.  I've also downloaded the latest update and even the patch which corrected the mouse scrolling problem. Now I have a new problem. When I'm in the Organizer, I am no longer able to drag files to a different folder. For instance, I have a folder on my desktop which contains the pictures and videos I downloaded from my camera. I am able to see these files within the organizer, and the organizer clearly shows that the files are contained within the folder on my desktop. What I want to do within the organizer is to move these files by dragging them to my Pictures folder. The program will no longer allow me to accomplish this task. I use to be able to do this with no problem, but not anymore!!  Is there a fix for this problem???  Thanks!  Jeff

    No, there is no error message. Your second question, asking if I first selected thumbnails, etc., prompted me to go back to the organizer to review exactly what happens when I try to select and drag a file to a new folder. And, because of your question, I have discovered new results: the first time I tried to select a picture, the normal hand appeared, but when I attempted to drag the file to a folder, all I got was the hand drawing a dotted rectangular box, and I could not drag the file to any folder. I tried this two more times with the same result. Then, I discovered that if I click on the far right side of the file thumbnail, I could actually drag it to a different folder. So, now I know precisely where to click on a thumbnail in order to successfully drag it to a folder. However, in previous versions, I could click anywhere on the thumbnail and drag without any problems. So, I will consider this problem "mostly" solved, and hopefully Adobe will address this problem on a future update. Thanks for your help!! Jeff

  • Mail: Can't drag audio files

    Does anyone know how you can drag audio files from mail to anything else?
    You used to be able to just drag the file to for instance another mail, but now I can't "grab" the file.
    Best
    Greiffenberg

    Do you mean that you are trying to drag the tunes into the main iTunes window or to the main desk top?
    Are these from an audio CD or previously ripped mp3/mp4?
    Is it possible that you have removed your "ownership and permissions" privileges from a particular folder and it is now locked preventing you from changing that folder?
    MJ

  • Captivate 6.0 - issue with using audio files as voicover

    We are using Adobe Captivate 6.0. We are using imported audio files as the voicover for the slides. While plyaing the final published exe, it runs normal. However, if I use the slidebar at the bottom of the slide for moving back and forth, the audio goes away while the slide continues to play. Can anyone please advise as to why this could be happening and how to resolve the issue? Appreciate any urgent help on this.

    Hello there,
    Have you inserted the audio on the slides or on the objects?
    Can you increase the slide quality to 24-bit (slide properties), then republish the project and see whether that helps?
    Thanks.

  • How do I transfer audio files from my laptop to my iPod classic

    How do I transfer audio files from my laptop to my iPod

    Thank you for using the Apple Support Communities
    You can synchronize audio files from iTunes to your iPod.
    https://www.apple.com/support/ipodclassic/how-to/
    -Zeph

  • Determining audio files and corresponding slide # in Presenter

    It is a big challenge to edit audio files.  Presenter does not sequentially number audio files, they appear to be random.  Which means you have to hunt and peck to find the correct audio file to edit for the appropriate slide.  Any fix for this?

    See, now we're getting somewhere!
    When I wrote that line about having corresponding audio files after publishing (ex: a24x[some number].mp3), I was referencing the .mp3 files you get as a result of publishing the PPT deck using the Presenter plug in.
    However, as you wrote:
    "...Each of these mp3 files also has a corresponding *.lthmb file (for example 1088225537.mp3 has 1088225537.lthmb)..."
    what you're looking at is the folder that Presenter creates the moment you start incorporating audio using the recording feature that Presenter offers (the same would be true if you imported audio files using Presenter as well.)  And, as you have found out, trying to get a handle on which audio file goes w/ a particular slide is horrendous at best.
    Okay, may I suggest another tactic?
    Let's try this: Publish the PPT deck you have.  What you'll end up with is a set of files and folders, but I want you to look for the data folder that's created as a result of the publishing process. (Unless you specify where you're publishing to, Presenter will publish to a directory called "My Adobe Presentations" by default, so you may have to look there on your harddrive)  Inside the data folder will be a list of mp3 files, which, if everything goes smoothly, should make it much, much easier to see which audio is used by a specific slide.
    Here's what I mean: for example, after publishing, I have a data folder and inside I found the following file: a24x9x3.mp3  As I double click the mp3 file (which causes it to play using Windows Media on my laptop), I can hear that it corresponds to my slide 9 in my PPT deck.  And there's corresponding mp3 files for each and every slide I have in my deck.  I'm clicking another file (wouldn't it be nice to see what I'm doing???) a24x20x3.mp3, and that file corresponds to my slide 20 content in PowerPoint.
    So again, give publishing in PowerPoint a shot and see if that makes it any easier.  Well...not nearly as easy as recording in Audition/Soundbooth/Audacity, but it's close enough to hopefully dig you out of that hole you're in now.
    Rob
    http://www.robrode.com/yabb

  • Exchange audio files in Soundtrack Pro

    Im experimenting with mastering audio files in Soundtrack Pro 3.0.1. 
    I am wondering if I can swap audio files in and out of the same project file - so I can keep the same STP effects settings while changing the audio file version from v1 to v2.  Does this make sense?
    As a side question... would it be better to convert the output from 24 to 16 bit (and dither it) in Soundtrack, or let that happen when it imports into iTunes? 
    Thanks for helping a complete stranger.  That always amazes and inspires me. 

    Didnt know how to remove the original clip from the STP arrange window - or whatever it's called in STPro.  So I could go no further in my perverse science experiment. 
    It also appeared that I could only import an aif but not a wav? 
    I gave up on STPro and did what I needed to do in Logic, which I use regularly.    
    Thank you for folowing up on this. 
    PS.  I used to use an old PowerPC version (1.0.3) of STPro and loved the way it visually showed the change in the waveform when you added each efffect.  It appears that the new version (3.0.1) does not allow you to do this anymore?  You can render or flatten the effects to see the final waveform, but then you are dead in the water and cant make changes?  
    Im such a newbie at STPro that I am probably not using it right? 

  • Unable to attach audio file

    Whenever I attempt to attach an audio file from iTunes to a specific slide, KN2 adds a blank slide before or after the selected slide. I can't get it to accept the audio file. There is a small blue triangle at the bottom right of the thumbnail in Navigator View. Is this significant?

    I've found the solution to this problem. I had been sliding the audio file onto the thumbnail, and it inevitably produced a new, blank slide, The solution was to slide the audio file onto the slide itself. Result—no new slide and the audio file is attached to the designated slide.

Maybe you are looking for

  • What is the meaning of "i" in apple products?

    what is the meaning of "i" in apple products? i means "my" or any other answers? iOS means iphone Operating System so , iphone means my phone , internet phone or any other meanings? Can any one please clear my doubt? Thank you.

  • Can I work on a Premiere Pro file, which has dynamic links, while it is exporting?

    Will further edits interfere with or change the export? What if I make changes to a dynamically linked file in After Effects? I just want to make sure it is okay to make changes during an export.

  • Workflow in SAP Portal 7.0

    Hi, I'm using the SAP Netweaver 7.0 EHP1. Trying to search for can I have a workflow in the portal. I will required to build a portal for the user to access in the meantime there will have an approval process for some of the task whereby it will base

  • Wp8.1 app Support in Wp 8

    hi All, I Build an application in vs2012 for windows Phone 8, now i'm using Vs2013 and making small changes in app and rebuilding it, for testing i'm using wp 8.1 device. I didn't retargeted my project to wp8.1. So my Question is :Will my app run on

  • In Forms Central

    In Forms Central, how can I keep one person from voting more than once?