File Copy Completion Notification Sound

Hey, i've just turned on my " play user interface sound effects " button in the System Preferences and I'd really like to find an app / utility that allows me to beef up my render notification and file transfer completion notification sounds / emails. Basically, I want to know when the computer has finished the tasks I've given it so i can know to come back to that machine and continue working. Often I'll be off doing some personal chores or on another computer watching tutorials and I really hate missing out on valuable work time.
I'm not really lookng for FTP or AFP support. I really just want to transfer ex: 120GB from X drive to Y drive via ESATA and know when it's done. If I can specify the sound file, that'd be fantastic. Additionally, SMS or Email would be heavenly.

For notification sound file apps, check on Macupdate and CNET Mac Download websites.

Similar Messages

  • Any way to change system sounds such as File Copy Completed sound?

    Hi folks,
    When I copy or move a file, Finder makes a sound — as you know. The particular sound it makes did not sit well with me when I first heard it (new to Mac). It sounds like an alert for a system error, or that copy failed. I thought I would get use to it, but alas, I have not.
    Is there a way I can change the sound that is used to notify me when a file copy operation has completed?
    With much thanks,
    Jonathan

    Thanks for the info.
    So I gather there is no official osx supported way to modify system sounds?
    I got used to the fact that in Linux and Windows I can specify whatever sound I like for whatever system event I like.
    Not the case on OSX?
    It begs the question, why did Apple choose such an odd sound for "file copy complete"? To me it sounds like an error occurred or the copy failed. I am getting use to it, but would have liked to be able to change system sounds, without hacking sound files.

  • *Drag n drop file copy complete*

    I am processing on folder in view File-dialog.When user Drag n drop any file or directory in the view i want to process newlly added file but at the end of copying completed.
    So how to detect copying is completed when user drags n drops files?

    To get better help sooner, post a SSCCE that clearly demonstrates your problem.
    db

  • SQL Server 2012 Developer Edition will not install. Setup files don't even get copied completely. Win 8.1. ACT instance is loaded & can't be deleted. From log file: Error: Action "PreMsiTimingConfigAction" failed during execution.

    SQL Server 2012 Developer Edition will not install.  Setup files don't even get copied completely.  Win 8.1.  ACT instance is loaded & can't be deleted. From log file: Error: Action "PreMsiTimingConfigAction" failed during execution.

    Hello,
    I am glad it worked.
    Thank you for visiting MSDN forums!
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • File copying problems

    Copying some files using the Finder results in a dialogue box error message: "The Finder cannot complete the opeeration because some data in +(file name)+ could not be read or written. (Error code -36). The same files copy without error when using SilverKeeper (v.2.0.2) backup program.
    I am also experiencing a problem when quitting SIlverKeeper. A second or so after selecting Quit, and after the program has actually quit, a system dialogue box appears saying that the program has unexpectedly quit and offering choices of Reopen, Report to Apple or Close.
    The system also seems somewhat sluggish.
    Can anyone offer suggestions?

    Hi John, At this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!
    Disconnect the USB cable from any UPS so the system doesn't shut down in the middle of the process.

  • I want a notification sound when I receive a new email

    I have the sound turned on Windows 7 Enterprise, and I have checked in my Outlook 2010 to make a notification sound when I receive a new email, but no sound is made when I receive an email.  Can anyone advise me how to get this to work?

    Hi,
    The sound option for new coming emails lies in: File tab -> Options -> Mail -> Message arrival -> Please confirm you have selected the checkbox
    Play a sound.
    If you only don’t get a sound when receiving emails from some specific senders, you may have set up some rules to manage incoming emails, please make sure you have selected the
    Play a sound checkbox in the rules.
    If there’s still no sound, please run Outlook in Safe Mode to determine if it’s related to 3rd-party add-ins:
    Press Win + R and type “outlook.exe /safe” in the blank box, then press Enter.
    If there’s no problem in Safe Mode, disable the suspicious add-ins to verify which add-ins caused this issue.
    I hope this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • Speeding up FileIO - Double Buffered File Copy?

    We are trying to speed up file copy from disk to tape, and I need a little more speed. I have tried playing with the size of the buffer, but that isn't changing much (makeing it slower if anything).
    I'm trying to make a double buffered file copy and I can't figure out how to do it. I figured this would be a good place to get speed. Right now, my write is very simple:
    byte buffer = new buffer[8 * 1024 * 1024];
    FileInputStream in = new FileInputStream(srcFile);
    while(true) {
      int amountRead = in.read(buffer);
      if (amountRead == -1) { break; }
      write(buffer, 0, length);
    }So what i need to do it be able to read and write at the same time. So I was thinking that I could either make the write method a sperate thread, or some how make threaded buffers that read while the other is being writen. Has anyone tackled this problem before?
    If this isn't the right way to speed up File IO, can you let me know other ideas? Thanks in advance!
    Andrew

    Once again: I wish I could claim credit for these classes, but they were in fact posted a year or so ago by someone lese. If I had the name I would give credit.
    I've used these for two heavy-duty applications with never a problem.
    <code>
    package pipes;
    import java.io.IOException;
    import java.io.InputStream;
    * This class is equivalent to <code>java.io.PipedInputStream</code>. In the
    * interface it only adds a constructor which allows for specifying the buffer
    * size. Its implementation, however, is much simpler and a lot more efficient
    * than its equivalent. It doesn't rely on polling. Instead it uses proper
    * synchronization with its counterpart PipedOutputStream.
    * Multiple readers can read from this stream concurrently. The block asked for
    * by a reader is delivered completely, or until the end of the stream if less
    * is available. Other readers can't come in between.
    public class PipedInputStream extends InputStream {
    byte[] buffer;
    boolean closed = false;
    int readLaps = 0;
    int readPosition = 0;
    PipedOutputStream source;
    int writeLaps = 0;
    int writePosition = 0;
    * Creates an unconnected PipedInputStream with a default buffer size.
    * @exception IOException
    public PipedInputStream() throws IOException {
    this(null);
    * Creates a PipedInputStream with a default buffer size and connects it to
    * source.
    * @exception IOException It was already connected.
    public PipedInputStream(PipedOutputStream source) throws IOException {
    this(source, 0x10000);
    * Creates a PipedInputStream with buffer size <code>bufferSize</code> and
    * connects it to <code>source</code>.
    * @exception IOException It was already connected.
    public PipedInputStream(PipedOutputStream source, int bufferSize) throws IOException {
    if (source != null) {
    connect(source);
    buffer = new byte[bufferSize];
    * Return the number of bytes of data available from this stream without blocking.
    public int available() throws IOException {
    // The circular buffer is inspected to see where the reader and the writer
    // are located.
    return writePosition > readPosition ? // The writer is in the same lap.
    writePosition - readPosition : (writePosition < readPosition ? // The writer is in the next lap.
    buffer.length - readPosition + 1 + writePosition :
    // The writer is at the same position or a complete lap ahead.
    (writeLaps > readLaps ? buffer.length : 0)
    * Closes the pipe.
    * @exception IOException The pipe is not connected.
    public void close() throws IOException {
    if (source == null) {
    throw new IOException("Unconnected pipe");
    synchronized (buffer) {
    closed = true;
    // Release any pending writers.
    buffer.notifyAll();
    * Connects this input stream to an output stream.
    * @exception IOException The pipe is already connected.
    public void connect(PipedOutputStream source) throws IOException {
    if (this.source != null) {
    throw new IOException("Pipe already connected");
    this.source = source;
    source.sink = this;
    * Closes the input stream if it is open.
    protected void finalize() throws Throwable {
    close();
    * Unsupported - does nothing.
    public void mark(int readLimit) {
    return;
    * returns whether or not mark is supported.
    public boolean markSupported() {
    return false;
    * reads a byte of data from the input stream.
    * @return the byte read, or -1 if end-of-stream was reached.
    public int read() throws IOException {
    byte[] b = new byte[0];
    int result = read(b);
    return result == -1 ? -1 : b[0];
    * Reads data from the input stream into a buffer.
    * @exception IOException
    public int read(byte[] b) throws IOException {
    return read(b, 0, b.length);
    * Reads data from the input stream into a buffer, starting at the specified offset,
    * and for the length requested.
    * @exception IOException The pipe is not connected.
    public int read(byte[] b, int off, int len) throws IOException {
    if (source == null) {
    throw new IOException("Unconnected pipe");
    synchronized (buffer) {
    if (writePosition == readPosition && writeLaps == readLaps) {
    if (closed) {
    return -1;
    // Wait for any writer to put something in the circular buffer.
    try {
    buffer.wait();
    catch (InterruptedException e) {
    throw new IOException(e.getMessage());
    // Try again.
    return read(b, off, len);
    // Don't read more than the capacity indicated by len or what's available
    // in the circular buffer.
    int amount = Math.min(len,
    (writePosition > readPosition ? writePosition : buffer.length) - readPosition);
    System.arraycopy(buffer, readPosition, b, off, amount);
    readPosition += amount;
    if (readPosition == buffer.length) {
    // A lap was completed, so go back.
    readPosition = 0;
    ++readLaps;
    // The buffer is only released when the complete desired block was
    // obtained.
    if (amount < len) {
    int second = read(b, off + amount, len - amount);
    return second == -1 ? amount : amount + second;
    } else {
    buffer.notifyAll();
    return amount;
    package pipes;
    import java.io.IOException;
    import java.io.OutputStream;
    * This class is equivalent to java.io.PipedOutputStream. In the
    * interface it only adds a constructor which allows for specifying the buffer
    * size. Its implementation, however, is much simpler and a lot more efficient
    * than its equivalent. It doesn't rely on polling. Instead it uses proper
    * synchronization with its counterpart PipedInputStream.
    * Multiple writers can write in this stream concurrently. The block written
    * by a writer is put in completely. Other writers can't come in between.
    public class PipedOutputStream extends OutputStream {
    PipedInputStream sink;
    * Creates an unconnected PipedOutputStream.
    * @exception IOException
    public PipedOutputStream() throws IOException {
    this(null);
    * Creates a PipedOutputStream with a default buffer size and connects it to
    * <code>sink</code>.
    * @exception IOException It was already connected.
    public PipedOutputStream(PipedInputStream sink) throws IOException {
    this(sink, 0x10000);
    * Creates a PipedOutputStream with buffer size <code>bufferSize</code> and
    * connects it to <code>sink</code>.
    * @exception IOException It was already connected.
    public PipedOutputStream(PipedInputStream sink, int bufferSize) throws IOException {
    if (sink != null) {
    connect(sink);
    sink.buffer = new byte[bufferSize];
    * Closes the input stream.
    * @exception IOException The pipe is not connected.
    public void close() throws IOException {
    if (sink == null) {
    throw new IOException("Unconnected pipe");
    synchronized (sink.buffer) {
    sink.closed = true;
    flush();
    * Connects the output stream to an input stream.
    * @exception IOException The pipe is already connected.
    public void connect(PipedInputStream sink) throws IOException {
    if (this.sink != null) {
    throw new IOException("Pipe already connected");
    this.sink = sink;
    sink.source = this;
    * Closes the output stream if it is open.
    protected void finalize() throws Throwable {
    close();
    * forces any buffered data to be written.
    * @exception IOException
    public void flush() throws IOException {
    synchronized (sink.buffer) {
    // Release all readers.
    sink.buffer.notifyAll();
    * writes a byte of data to the output stream.
    * @exception IOException
    public void write(int b) throws IOException {
    write(new byte[] {(byte) b});
    * Writes a buffer of data to the output stream.
    * @exception IOException
    public void write(byte[] b) throws IOException {
    write(b, 0, b.length);
    * writes data to the output stream from a buffer, starting at the named offset,
    * and for the named length.
    * @exception IOException The pipe is not connected or a reader has closed
    * it.
    public void write(byte[] b, int off, int len) throws IOException {
    if (sink == null) {
    throw new IOException("Unconnected pipe");
    if (sink.closed) {
    throw new IOException("Broken pipe");
    synchronized (sink.buffer) {
         if (sink.writePosition == sink.readPosition &&
         sink.writeLaps > sink.readLaps) {
         // The circular buffer is full, so wait for some reader to consume
         // something.
         try {
         sink.buffer.wait();
         catch (InterruptedException e) {
         throw new IOException(e.getMessage());
         // Try again.
         write(b, off, len);
         return;
         // Don't write more than the capacity indicated by len or the space
         // available in the circular buffer.
         int amount = Math.min(len,
         (sink.writePosition < sink.readPosition ?
         sink.readPosition : sink.buffer.length)
    - sink.writePosition);
         System.arraycopy(b, off, sink.buffer, sink.writePosition, amount);
         sink.writePosition += amount;
         if (sink.writePosition == sink.buffer.length) {
         sink.writePosition = 0;
         ++sink.writeLaps;
         // The buffer is only released when the complete desired block was
         // written.
         if (amount < len) {
         write(b, off + amount, len - amount);
         } else {
         sink.buffer.notifyAll();
    </code>

  • How to make the notification sounds play through EarPods

    The notification sounds/ringer on my iPod touch keeps playing through the external speakers even though I have EarPods plugged in. If I turn on a video of game tho, it will play through the earpods. Is it possible to make the notification sounds play through the EarPods as well?

    Hi Everyone,
    Just in case anyone else runs into this problem here is the solution that i've managed to piece together,
    I have a movie clip twice the size of the stage, the movie clip is called bg_mc, here is my actionscript...
    bg_mc.addEventListener(Event.ENTER_FRAME, mouseMoveHandler);
    function mouseMoveHandler(event):void
    var cursorX = stage.stageWidth - mouseX;
    bg_mc.x -= dx / 5;
    this action script tells the movieclip to move left and right depending on where the users mouse pointer moves. (it also adds a slight delay to make it look like tweening)
    I then published this in Flash using the publish settings shown in the reply above.
    Then i went into dreamweaver and removed the margins in the html file
    Now the flash file will resize to any screen resolution and will allow the user to move the MC left / right across the screen depending on where the mouse pointer is,
    I hope this is helpful,
    Ben

  • File Copy with resume enable

    I am thinking of making a file copy program like the download managers, which provides resume enables, so that users can continue at later times.
    Suppose, i have a 10 GB file, and i want to transfer it over to my external, then instead of non breakable file copying, user get the option to stop, and resume laters from that point only.
    I am not sure if its feasible in java, but if its, please tell me how to achieve that.
    I am not asking you to give me the code, rather a bit about how to proceed in that direction.
    Thank you.

    user7761515 wrote:
    I am thinking of making a file copy program like the download managers, which provides resume enables, so that users can continue at later times.Well, I suspect you're going to have to come up with some sort of protocol that allows your copy job to complete its task (eg, a separate file containing the number of bytes written to the "partial" so that it knows where to resume from). I'd also suggest that you use some sort of name extension to distinguish your partial from a completed file, and only rename it when you know the job is finished.
    Alternatively, you could create "chunks" for each portion copied between a start/resume and the next pause (maybe with numbered extensions) and then concatenate them together as a final step (possibly simpler, but likely less efficient in space and time).
    Another thing to think about is changes: What if someone changes the file you want to copy between the time you pause and the time you resume? I suspect it should invalidate the whole job, but you'll probably want to check modification times (or alternatively, use a checksum) before you resume.
    If this is just an exercise, great; otherwise I suspect you may be re-inventing the wheel.
    Winston
    Edited by: YoungWinston on Nov 13, 2010 12:02 PM
    It also occurs to me that you might want to investigate FTP. I'm pretty sure it has hooks for pausing and resuming, but you'll probably have to check if the Java library you choose allows that capability.

  • Outlook 2013 new mail notification sounds can't be changed

    I've got a weird issue with Outlook 2013 on Windows 8..  I've read several other posts that are kind of similar but they don't really apply.
    So, Outlook 2013 uses the "Desktop Mail Notification" sound event..  unless I change the .wav file assigned to that event.  Then it instead uses the "New Mail Notification" event.  Then when I change the .wav file assigned
    to THAT one, it changes again to instead use the "Notification" event.  Then when I change the .wav file assigned to "Notification," Outlook just won't play anything at all when receiving new mail.  It just flat refuses to use
    anything but the default .wav files.
    Has anyone run into this before?

    Hi,
    To change the new mail notification sound, please try the following:
    1. Right click the sound icon at the right bottom to open the sound settings.
    2. Under the
    Windows section, change both the Desktop Mail Notification and New Mail Notification
    events to have the same .wav file for the sound you want played for them.
    3. Then click OK to test the result.
    Thanks,
    Vincent Wang
    TechNet Community Support

  • Help with large file copy to WKS

    I need to copy a folder and all of it's contents from
    \apps\reallybigfolder to each workstation at c:\putithere.
    Because of the size of the file copy, I chose to create an app object
    with logic that says if xxx.exe exists then do not push. Basically, I
    don't want this thing to just run constantly. I need it to run one time
    to each workstation on the network when the users log in.
    I have tried pointing the app object to \public\ncopy.exe and then
    setting the parameters the way I want them, but I keep getting an
    error: "Cannot load VDM IPX/SPX Support". The two files in the folder
    are copied, but the subfolders are not. I have tried using the /s/e
    switches, but it does not help.
    I have also tried writing a .bat file, to test it - but I get the same
    results as above. So next I tried using copy instead of ncopy. I do not
    get the error message, but it still does not copy any of the subfolders.
    Is there another way? An easier way? I really appreciate the help.
    Tony

    What you are doing should work.
    It sounds as if there are some other workstation issues going on.
    I don't think I seen or could make the error "Cannot load VDM IPX/SPX
    Support" happen if I tried. Perhaps this would happen w/o a Novell
    Client installed. In such a case you could use XCOPY or ROBOCOPY.
    (Robocopy is way cooler than XPCOPY and is free from MS.)
    You can also use the "Distribution Tab" and the "Files" section to copy
    entire directories. Just use *.* as the source.
    [email protected] wrote:
    > I need to copy a folder and all of it's contents from
    > \apps\reallybigfolder to each workstation at c:\putithere.
    >
    > Because of the size of the file copy, I chose to create an app object
    > with logic that says if xxx.exe exists then do not push. Basically, I
    > don't want this thing to just run constantly. I need it to run one time
    > to each workstation on the network when the users log in.
    >
    > I have tried pointing the app object to \public\ncopy.exe and then
    > setting the parameters the way I want them, but I keep getting an
    > error: "Cannot load VDM IPX/SPX Support". The two files in the folder
    > are copied, but the subfolders are not. I have tried using the /s/e
    > switches, but it does not help.
    >
    > I have also tried writing a .bat file, to test it - but I get the same
    > results as above. So next I tried using copy instead of ncopy. I do not
    > get the error message, but it still does not copy any of the subfolders.
    >
    > Is there another way? An easier way? I really appreciate the help.
    >
    > Tony
    Craig Wilson
    Novell Product Support Forum Sysop
    Master CNE, MCSE 2003, CCN

  • Escaping file copy error?

    I was copying a data CD which had a bad file. When I hit the bad file, the message appeared "The Finder cannot complete the operation because some data in "the source file" could not be read or writte. (Error code -36)".
    When I click okay, the Copy message box remains, and clicking the X in that box to stop copying had no effect. I had to restart finder to escape. This is OS 10.5.4 on 2 x 2.66 GHz Dual-Core Intel Xeon Mac Pro. Thanks for any ideas. I couldn't find a bug report location in Apple Support.

    Thanks for the suggestion, but there are no permission errors on the target disk or the system disk. The problem file is on a CD, and there's no way to repair permissions on a CD.
    I think it's an OS bug that the copy dialog box won't cancel on a bad file copy error.

  • 10.3.9 server - files copied to shared folder don't have proper permissions

    When 1 user copies a file to a shared volume the next user cannot save. The copied file is read only. If I choose the enclosing folder or whole volume and propagate permissions (Copy these privileges to enclosing items) then the file is read/write as it should be but the next file copied is read only.
    This started when I used Carbon Copy Cloner to clone the system to a new drive. I know this isn't completely kosher but I done it successfully with this same system before.
    This server is still Panther because it has been on for 4.5 years and has not crashed once. It provides AFP and nothing else.
    This is a creative team that is kind of freaking out so any help would be greatly appreciated..

    Sharing a folder does give others access to it, but it does not change the permissions of the files inside.  Other users can probably read everything, but they can't modify files that they do not own unless the owner of those files has changed the permissions to allow it, or other steps have been taken to provide additional access such as the use of an Access Control List (ACL).
    Apple doesn't include a GUI utility for manipulating ACLs, so your choices are to use a third-party utility such as TinkerTool System (not free) or the Terminal application.  The Drop Box folder in your user's Public folder has an ACL entry that gives access to change just about everything on files that are dropped there, so a Terminal example that sets similar permissions for everyone (a particular user group can also be used) would be:
    1.  copy and paste the folowing into the Terminal window (there is a trailing space):
    chmod -R +a "everyone allow list,add_file,search,delete,add_subdirectory,delete_child,chown,file_inherit,directory_inherit"
    2.  drag the desired folder into the Terminal window (this copies the path)
    3.  press return
    Note that ACL entries only work on items that have been created in the folder - not moved there - so you should use option drag to make a new copy in the shared folder.

  • Issues with Lion's Finder File Copying (+ Temporary Solution)

    1) When copying a file to my workplace's file server (via SMB), the file will appear to copy, and the file's "placeholder" will appear. Upon completion of the copy, the file will disappear.
    2) When copying multiple (presumably large) files to my external FireWire 800 drive, the file copy progress window will close, as though the copy has succeeded. However, upon closer inspection, the file sizes of the copied directories do not match, and many files are missing.
    In the meantime, it appears that the "ditto" command with the -rsrcFork flag will copy files correctly.
    If you aren't familiar with command line, but want to give this a whirl (if you are in a tight spot, for example), here's how to copy a text file called "myfile.txt" from your desktop to an external drive named "Storage":
    ditto -rsrcFork ~/Desktop/myfile.txt /Volumes/Storage

    isnt working for me.. getting this:
    ditto: can't get real path for source

  • Scary Message Every Import  from my Sony PMW 320 XDCAM EX  Clip Files w/ Completed Time LIne

    Hello
    This is the 3rd question I've posted working my way through my first edit (and HD edit) with Premiere Pro CS5.5, and I have a completed time line with the basic edit for an important event, my first for a client I hope to work for again.  Am now working on the title sequence at the beginning and also a "recap" with music and highlights at the very end.  Then I will be trying my first burn to a bluray -R disk on the LG 12x internal BRD unit in a high performance Mac Pro I had built at OWC.  10.7.5 Lion currently.
    3 types of files: 
    1.  1080i 29.97 upper frame first, standard 1080i settings......from my B camera footage from a Sony NEX 5N.  28mbps I believe.  Example clip:  00018.MTS.  No issues or messages on the imports into the Project window. 
    2.  Backup files same settings but 50mbps from Nanoflash recorder attached to my PMW 320 camcorder through the HD SDI output.  Example clip:  01253001.MTX. 
    Both of these above I just dragged their entire folders onto my internal master 2 disc Raid 0.  And then imported just the "clips" from each into the project window in each's own bin or folder.
    3.  Same scenario with my main files copying them from the large camcorder.  Example clip:  159_0221_01.MP4.  35mbps.  All 3 of these types of files have 29.97 fps indicated to the right.
    But in the Project window when I selected initially all the clips from the drop downs inside the folder from the PMW 320 on the Master drive, and since then just some individual clips.....I keep getting this::  A window with "File Import Failure" in the top header and 5 lines of all the Volume codings within that Folder in the message box, and below it, "Error Message"  "File format not supported"  with an active "OK" button.  Which I have clicked and then gone ahead and worked with them.
    But the clips in question are all in the project window and load fine into the Program Window or drag fine directly to the time line.  I have completed the whole sequence save for what I mentioned above.  Color correction, audio adjustments, slo motion, freeze frames, transitions, everything.  I have even taken a short piece of the time line and done experimental exports to self contained "Animation" codec clip,  H.264 clip and an MPEG 4 clip.  All were successful.  Last step coming soon will be export to 1080i 29.97 bluray.
    I believe I have seen "MPEG 4" in the codec info on the PMW 320's clips.  Being that Premiere is supposed to handle every codec no problem, and that it seems to have done just that, what is going on here with these messages??  I have a ton of hours into this 1st edit and it all seems to work.  Do I not need to worry about this message even if I don't understand why I am getting it?
    Thanks much
    Ron

    All that shows is the clips themselves, but yes I guess that could be happening.  So in the future from the PMW 320 import them 1st into Media Browser and then to the Project window?  (before taking them to Source window or directly to the time line)  Or just leave them in the Media Browser, and work it from there?
    In the meantime, the fact it has all worked and seems to be working, would you think I'm OK since I've been able to do up to a massive 156gb Animation codec 16 minute portion of the sequence while I was first experimenting?   I am likely going to try the Dynamic Link function and Auto settings into Encore, straight from my time line of around 90 minutes.  Per the suggestion of Ann here in one of my other threads asking about that part.  Just to see if I can mail it on time on Tuesday if it looks good.

Maybe you are looking for

  • Opening Photoshop PDF in Illustrator problem

    Hi, I've got a problem with opening pdf file from photoshop in illustrator. I've got a psd file with a rasterized background (photo) and about 100 shape layers over it. I'm trying to save it as a photoshop pdf to keep the vector elements unflattened

  • Obsolete statements

    Hi, I am the beginner of ABAP Programming.I want to know the detail description of the Obsolete statements(Like 46c to ECC6.0) with examples. (For Example:In 46c Ranges but Ecc6.0 Type/Like range of ). Thanks Chandramohan.

  • Error in setCurrent method

    Hi, I want to draw a image in one page and go to another page from first page. I have to use the code import javax.microedition.midlet.MIDlet; import javax.microedition.lcdui.*; import javax.microedition.lcdui.game.*; import java.io.IOException; publ

  • H:commandButton to render as BUTTON

    Please see this enhancement request. Comments/votes welcome.

  • Subscreen in SCREEN 8459 ofr VA01

    Hi Gurus, I want to put a subscreen in screen 8459 of VA01 transaction, for displaying / editing item detail. I need to implement a button with ICON_DATA_AREA_EXPAND / ICON_DATA_AREA_COLLAPSE. and make the screen visible and invisible when user click