Audio drag & drop = (?) copy to project folder ?

Hi,
sorry for the enigmatic topic title, but it explains what I want to achieve.
I would like Logic to copy an audio file to the projects directory after I drag & drop it in the arrange (just like it is in Cubase).
I'm really confused about the way Logic handles audio files, and reading the manual did not help me at all. I've been working with Logic for the past year and still audio is a bit... difficult. Any advice and tips is highly appreciated.
greetings!

Hi
Before you start work on a project, select File"Save As..." and check the 'Include Assets" box.
(This sets the project audio recording path to the project folder).
Hiding under the 'Advanced Options', there is a check box to select "Copy External Audio Files to the Project Folder".
This does what you need!
Please note that you must use Version 8.0.2, as the behaviour has changed. See the Late-Breaking News docs for more info.
HTH
JM

Similar Messages

  • Copy to Project Folder?

    When I link to an external file that's located on another
    drive, I'm giving the option to copy that file
    into my project folder.
    If I say yes, then the copy in the project folder is
    accessed.
    But if the original file is changed, the two will be out of
    sync.
    Is there anyway for RoboHelp to automatically resync these
    files?
    Also, I would've guessed if the file is copied into the
    Project folder, its contents would show up on a search,
    but I guess that's not the case...unless I'm doing something
    wrong?
    I'm using WebHelp for my primary layout.
    Hopes this makes a little sense :)
    Doug

    No you cannot keep the two in sync. In theory you could
    create an external link but RH would likely "correct" it so that
    the path is relative in the source. You would then need to output
    to a folder at the same level as the source projects rather than to
    the !SSL! folder. Finally that path would have to hold true
    wherever the help is run.
    The likelihood of that breaking is pretty good!
    BTW. The problem is not the fact the document is on a
    different drive, just that it is external to the project.
    On searching, no RH does not search the target of links.
    There's an article about ZoomSearch on my site and that can work on
    documents inside the project.

  • How can I drag & drop / copy & paste COPY Calendar event on iPad iOS6?

    How can I copy Calendar events on the iPad iOS 6?
    I have read various forums on this subject and have not found an answer on how to perform this basic function.
    To be clear, I am NOT asking how to drag & drop MOVE an event, rather how to duplicate an event.
    In this way, I would not have to create a new event on a different date that is very similar to an existing one.
    If I have missed this in the manual just tell me where it is discussed and I will check it again.
    Thank you!

    Hi,
    I don't think it is possible to do that in iOS 5.
    Best wishes
    John M

  • Video/Audio Drag&Drop Only Drops Audio!?!

    _Final Cut Troubleshoot Question_
    I have footage (video/audio) with proper in/out markers.
    When i Drag it to the bottom-third edit-map area,
    it only Drops the audio file.
    What in sweet confusions middle-name is going on here?
    Why is this happening?
    Resort to re-import footage?
    Is there a way to Fix This??
    Sorry for the lack of specific tech-speak. I'm illiterate in that area.

    Double posted: http://discussions.apple.com/thread.jspa?threadID=1870718&tstart=0

  • Drag & Drop & Copy and Paste

    Before intalling Leopard I was able to drag jpegs out of safari and onto my desktop or find album artwork and drag it into itunes this feature seems to no longer work. Is there a setting somewhere I can change?
    Also can no longer copy a URL and paste it into the ichat window to send to someone. Is there a problem related to this issue? Or is this something that I can change through some preference setting somewhere?
    Many thanks in advance
    Ed

    That should still be supported. I can drag any image from Safari to the desktop to download it, and then use that image as album cover art. Where are the problems in this for you?
    I havent used iChat for years now, but I'd expect that feature should work. Can you cut and paste in word processing applications? How about in simple apps that came with Leopard, such as TextEdit?
    If for some reason the copy/paste commands (maybe the clipboard itself) are governed by a configuration file, and that file is locked or has incorrect permissions, that could be impeding the copy/paste process. You might run a permissions fix on the hard drive using "Disk Utility", which may clear up the problem.

  • Drag & Drop of a file not working in Ubuntu & other linux

    Hi All,
    I am working on a project,in which it has the requirement of dragging the files
    from a JList present inside a JFrame to the desktop.
    First I tried to get a solution using dnd API but could not. Then i googled and i got an application which is
    working perfectly in both Windows and MAC Operating systems, after I made few minor changes to suit my requirements.
    Below is the URL of that application:
    http://stackoverflow.com/questions/1204580/swing-application-drag-drop-to-the-desktop-folder
    The problem is the same application when I executed on Ubuntu, its not working at all. I tried all available options but could not trace out the exact reason.
    Can anybody help me to overcome this issue?
    Thanks in advance

    Hi,
    With the information you provided and through some information found on google i coded an application. This application is able to do the drag and drop of an item from the Desktop to Java application on Linux Platform, but i am unble to do the viceversa by this application.
    I am including the application and the URL of the information i got.
    [URL Of Information Found|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4899516]
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.Transferable;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import java.awt.dnd.DropTarget;
    import java.awt.dnd.DropTargetDragEvent;
    import java.awt.dnd.DropTargetDropEvent;
    import java.awt.dnd.DropTargetEvent;
    import java.awt.dnd.DropTargetListener;
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.DefaultListModel;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.JScrollPane;
    import javax.swing.SwingUtilities;
    import javax.swing.TransferHandler;
    import javax.swing.WindowConstants;
    public class DnDFrame extends JFrame implements DropTargetListener {
         private DefaultListModel listModel = new DefaultListModel();
         private DropTarget dropTarget;
         private JLabel jLabel1;
         private JScrollPane jScrollPane1;
         private JList list;
         List<File> files;
         /** Creates new form DnDFrame */
         public DnDFrame() {
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              initComponents();
              dropTarget = new DropTarget(list, this);
              list.setModel(listModel);
              list.setDragEnabled(true);
              list.setTransferHandler(new FileTransferHandler());
         @SuppressWarnings("unchecked")
         private void initComponents() {
              GridBagConstraints gridBagConstraints;
              jLabel1 = new JLabel();
              jScrollPane1 = new JScrollPane();
              list = new JList();
              setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
              getContentPane().setLayout(new GridBagLayout());
              jLabel1.setText("Files:");
              gridBagConstraints = new GridBagConstraints();
              gridBagConstraints.gridwidth = GridBagConstraints.REMAINDER;
              gridBagConstraints.anchor = GridBagConstraints.WEST;
              getContentPane().add(jLabel1, gridBagConstraints);
              jScrollPane1.setViewportView(list);
              gridBagConstraints = new GridBagConstraints();
              gridBagConstraints.gridwidth = GridBagConstraints.REMAINDER;
              gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;
              getContentPane().add(jScrollPane1, gridBagConstraints);
              pack();
         public void dragEnter(DropTargetDragEvent arg0) {
         public void dragOver(DropTargetDragEvent arg0) {
         public void dropActionChanged(DropTargetDragEvent arg0) {
         public void dragExit(DropTargetEvent arg0) {
         public void drop(DropTargetDropEvent evt) {
              System.out.println(evt);
              int action = evt.getDropAction();
              evt.acceptDrop(action);
              try {
                   Transferable data = evt.getTransferable();
                   DataFlavor uriListFlavor = null;
                   try {
                        uriListFlavor = new DataFlavor("text/uri-list;class=java.lang.String");
                   } catch (ClassNotFoundException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                   System.out.println("data.isDataFlavorSupported(DataFlavor.javaFileListFlavor: " +
                             data.isDataFlavorSupported(DataFlavor.javaFileListFlavor) );
                   if (data.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) {
                        files = (List<File>) data.getTransferData(DataFlavor.javaFileListFlavor);
                        for (File file : files) {
                             listModel.addElement(file);
                   }else if (data.isDataFlavorSupported(uriListFlavor)) {
                        String data1 = (String)data.getTransferData(uriListFlavor);
                        files = (List<File>) textURIListToFileList(data1);
                        for (File file : files) {
                             listModel.addElement(file);
                        System.out.println(textURIListToFileList(data1));
              } catch (UnsupportedFlavorException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              } finally {
                   evt.dropComplete(true);
         private static java.util.List textURIListToFileList(String data) {
              java.util.List list = new java.util.ArrayList(1);
              for (java.util.StringTokenizer st = new java.util.StringTokenizer(data,"\r\n");
              st.hasMoreTokens();) {
                   String s = st.nextToken();
                   if (s.startsWith("#")) {
                        continue;
                   try {
                        java.net.URI uri = new java.net.URI(s);
                        java.io.File file = new java.io.File(uri);
                        list.add(file);
                   } catch (java.net.URISyntaxException e) {
                   } catch (IllegalArgumentException e) {
              return list;
         private class FileTransferHandler extends TransferHandler {
              @Override
              protected Transferable createTransferable(JComponent c) {
                   JList list = (JList) c;
                   List<File> files = new ArrayList<File>();
                   for (Object obj: list.getSelectedValues()) {
                        files.add((File)obj);
                   return new FileTransferable(files);
              @Override
              public int getSourceActions(JComponent c) {
                   return COPY;
         static {
              try {
                   uriListFlavor = new
                   DataFlavor("text/uri-list;class=java.lang.String");
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
         private class FileTransferable implements Transferable {
              private List<File> files;
              public FileTransferable(List<File> files) {
                   this.files = files;
              public DataFlavor[] getTransferDataFlavors() {
                   return new DataFlavor[]{DataFlavor.javaFileListFlavor,uriListFlavor};
              public boolean isDataFlavorSupported(DataFlavor flavor) {
                   if(flavor.equals(DataFlavor.javaFileListFlavor) || flavor.equals(uriListFlavor))
                        return true;
                   else
                        return false;
              public Object getTransferData(DataFlavor flavor) throws
              UnsupportedFlavorException, java.io.IOException {
                      if (isDataFlavorSupported(flavor) && flavor.equals(DataFlavor.javaFileListFlavor)) {
                        return files;
                   }else if (isDataFlavorSupported(flavor) && flavor.equals(uriListFlavor)) {
                        java.io.File file = new java.io.File("file.txt");
                        String data = file.toURI() + "\r\n";
                        return data;
                   }else {
                        throw new UnsupportedFlavorException(flavor);
         private static DataFlavor uriListFlavor;
         static {
              try {
                   uriListFlavor = new
                   DataFlavor("text/uri-list;class=java.lang.String");
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
         public static void dumpProperty(String name) {
              System.out.println(name + " \t" + System.getProperty(name) );
         public static void main(String[] args) {
              String[] props = {
                        "java.version",
                        "java.vm.version",
                        "java.vendor",
                        "os.name",
              "os.version"};
              for (String prop : props) {
                   dumpProperty(prop);
              Runnable r = new Runnable() {
                   public void run() {
                        DnDFrame f = new DnDFrame();
                        f.setVisible(true);
              SwingUtilities.invokeLater(r);
    }Please Suggest me in this.

  • Strange problem with drag&drop!!

    hello i hope u can help me.
    i have a strange problem but not like the other users with drag&drop in Leopard..
    mine is not exactly like this:
    http://discussions.apple.com/thread.jspa?threadID=1198982&tstart=3538
    i can hold left click and move files but when i need to "drop" them at the .app's window the app rejects the file back! (some of the applications not all!)
    what i mean in examples is:
    i cannot drag&drop anything in the VLC's player window but i can inside the vlc's "controller" window
    i cannot drag&drop a picture in preview
    i cannot drag&drop any file in photoshop's new file/empty canvas
    i cannot drag&drop a mp3 file in itunes but i can drag&drop a full album folder(only in playlist,not in the player window)!
    and i can describe more to show u that it's not about vlc or preview or PS problem, but finder's/leopard problem.
    (i thought in the 1st, that it's vlc's problem and i downloaded a lot of versions!)
    all the other programs works well, for example i can drag&drop a video to final cut or motion
    i can do the same in iMovie (at the space it says"drag&drop media here etc)
    and of course i can drag&drop files to desctop,hard disks etc.
    i can copy/paste text etc (i can copy/paste texti can copy/paste texti can copy/paste texti can copy/paste text)
    i am trying to give you an idea, suggest me what else should i try in order to focus where exactly the problem is!
    i hope u give me a solution cause drag&drop is usefull!
    thank you
    in order to help u, i will describe what i tried so far:
    1)repair permissions
    2)trash com.apple.finder
    3)terminal solution like this: (didn't worked)
    sudo su -
    cd /
    rmdir tmp +*(rmdir: tmp: No such file or directory)*+
    ln -s tmp /private/tmp

    alex74d wrote:
    hello and thanks for your reply
    but why you quote only the part of VLC?
    One thing at a time. Occam's razor.
    and why u believe this is normal?
    i am sure that VLC can drag & drop subtitles or the movie in the player window.
    and when i say sure, i mean 100%
    I disagree. I have tried this since reading your post, on all my VLC versions. It does not work.
    You can, however drop a movie onto the VLC icon in the dock. That works fine.
    RealPlayer accepts a file dropped on it. I just checked it.
    Not all apps accept a file on their output window. Usually only the input window.
    i started my windows bootcamp partition before and i saw this works.
    and i remember trying VLC in tiger a lot of years before, this was ok.
    and yes of course it would be also normal to drop a picture in the photoshop canvas.
    so what is not normal here is my problem, if u can help i'm happy if you cannot please don't confuse it more
    (sorry if i sound "unclear", english is not my 1st languange)
    I will check VLC next time I run Tiger and let you know.
    Message was edited by: nerowolfe

  • Zen V Plus 4GB - drag & drop probl

    Hi,
    Just got myself the above item - which is great! :manhappy: . Except for one niggling problem - which is probably down to my stupidity, not the machine's.
    When I try to drag & drop, copy-and-paste, etc, files (audio, video, and so on) to my Zen I always get the message - "The Device has either stopped refreshing or has been disconnected".
    However, when I use the Creative Zen software to effecti've do the exactly the same thing - no problem, does it fine. I am a bit baffled by this anamoly. If anyone got any ideas/solutions for me that would be much appreciated.
    All the best,
    DANNY?

    reset it then cleanup>reboot theplayer http://forums.creative.com/creativel...ap&thread.id=3

  • Operations behind a Drag & Drop application setup

    I would ask the community what operations does the system perform during a drag & drop application setup, i.e. from a .dmg file.
    I can't believe it's just a drag & drop, i think the system is alerted every time you move an .app file in it and make some scripts or something like that.
    Anyone expert knows an answers to this question?

    It's a drag & drop copying from the disk image to your disk(s). Simple as that.

  • I got error 8: vi resource not found After copy the project to another location

    I copied the project folder in C: to D:
    I opened a .vi file in D: then closed LabView.
    I try to open the same .vi file in C:   I got :"LabVIEW Load Error Code 8 -   Could not find VI resource".
    I checked all the files in C:  no file have been modified.
    I'm using LabView 5.1 with Windows NT.
    Any help would be greatly appreciated.

    Suesong,
    This KB seems to suggest that the erro you are getting is a result of the Vi in question being compiled in a newer version of LabVIEW:
    http://forums.ni.com/ni/board/post?board.id=170&message.reply_to_id=240257
    Did you open it up in a newer versions and save it?
    Xaq

  • Drag drop photo import to aperture folder why auto new project folder appear .

    i do import photos from desktop  to folder that i want in the aperture libary  . as soon as i drag and drop photos automatically new peoject folder appear in the libabry as name untitled project.. why? i dont want that new project folder.  i try to delete that folder and my picture all automatically deleted from library.
    also if i try to delete photos from preject folder .. it completely deleted from master library .. picture will be lost.. why?
    i drag and move pictures to  brand  new album or folder .. then try to delete wanted project folder - master picture are all gone.
    now i have at least 30-40 of untitled project folder in the library ... pictrure are not movable i meant you can move but u still have to keep old project folder to avoid master picture can not be deleted ...
    someone help me? did i make myself clear?

    You might read the manual or the Help as this is all covered there.
    If you want to import to a specific project use the File -> Import option. You can select your destination there.
    Every photo in a Library is in a project. Projects are the basic building block of the Library. That's why.
    Folders don't contain photos. They can contain Projects or Albums. These contain photos. Albums don't contain the actual photos, just links to them. So if you add a photo to an Album and then delete the project... you delete the photo.
    Remember: you don't move photos to an Album, you add them.
    Regards
    TD

  • Drag & drop audio clip from timeline to project window ?

    i no longer can drag a clip from timeline to the project window & then breakout the clip to mono by selecting clip - audio options- breakout to mono - now when i drop an audio clip from timeline into the project window it does not show up anywhere in the project window - did an update get rid of this function ? it was much better than having to go back to the unedited original source & start from scratch ...

    thanx for your time Jim - i understand that would be the preferred method but that was a quick fix until recently i have noticed that i can no longer do it by just grabbing the edited clip & drop it in project window so that i can modify just that portion of the original files properties - it still functions that way on a friends machine - was just kinda weird that i can't get it to work that way any more …

  • Cannot Drag & Drop Audio Files from iTunes into Project Timeline

    Hello,
    I have an iMovie (10.0.6) project open. I click the iTunes icon to fetch an audio track and it won't allow me to drag/drop it into the timeline. Yet it allows me to drag/drop other tracks from the same playlist (all from the same CD). All tracks are the same file type and about the same size/length, yet one of them (the one i want) cannot be dragged/dropped into the timeline. This happened with another iMovie project recently (different tracks from a different CD, but same idea: can't drag/drop one track, but i'm able to drag/drop others).
    Your help is appreciated!

    I've having the same issue. Very frustrating. FFS Apple!

  • Copy clip from timeline to Project folder

    I've synced a video clip to an audio clip that was recorded separately, and linked them.  How do I save this combo?  Dragging it back to the project folder only copied the audio track.  Help please!

    That's correct: nesting is the "official" term for it. You can either pre-build your sequences, and then drop them into your final sequences like clips, or you can drop your constituent clips into the final sequence, select them, and then use the Nest command. The final result is the same, but if I'm doing something like you're doing, I'll typically use the former approach; I don't like how Premiere defaults to calling any sequence created through the Nest command something like "Nested Sequence 34." I'm a little too AR to deal with that If I prebuild my sync sequences, I can name them as I see fit and it's much easier to track the footage. You can even drop one of your clips on the New Item icon and have a sequence created that matches its settings and is named the same as the original clip. There are several ways to skin the proverbial cat here.
    Once I have a sequence that consists of 4 video and one audio clip, how do I splice it and dice so that I use only portions of it where needed (the same way I would as if the sequence were a clip)?  Remember that only one video clip can be linked to the audio clip (right?).
    You can either drop it into your destination sequence and trim it up there, or if you hold down the Control key, if you double-click one of your sequences it will load up in the Source Monitor like a clip. You can also just drag the sequence item to the Source Monitor. From there, edit it into your final sequence as any other clip.

  • Why can't I drag and drop music from a folder on my PC into my iTunes window?

        Why can't I drag and drop music from a folder on my PC into my iTunes window?
    I have not found any article that has answered this question. They have come up with things like open the side bar and it will work, or you are using wrong format of music. Now this all happened when I upgraded to iTunes 10 and has not worked since and it worked fine before. Music format is correct, I have even gone as far as copying a file already in iTunes and trying to add it again. As soon as the files enters the frame of iTunes the music files icon the pointer is carrying turns into a circle with a slash through it.
    ITunes Ver. is 11.1.5.5  Windows Ver. is Windows 8.1 Pro with Media Center
    Files I have tried adding are standard MP3, 256 kbps purchased AAC Audio file, MP3 converted by iTunes into a 256 or 320 kbps AAC Audio file. None can be draged and droped but all can added by going to File/Add File to Library...  or File/Add Folder to Library...
    Add items from your computer to your iTunes library
    Do either of the following:
    1. Drag a file or folder from the desktop to the iTunes window.If you add a folder, all the files it contains are added to your library.
    2. In iTunes, choose File > Add to Library, locate a file or folder, and click Open.
         I can add files and folders by doing number 2 above but can not doing number 1
    I have gone as far as uninstalling iTunes and reinstalling per apple procedures below.
    Steps
    1. Remove iTunes and its related components from the Control Panel
    Use the Control Panel to uninstall iTunes and related software components in the following order and restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order or only uninstalling some of these components may have unintended effects.

    I had this problem on Windows 8.1.1 and iTunes 11.2.2.3
    To resolve it from within Itunes I did :  Edit, Preferences, Sharing.
    I took the tick out of "Share my library on my local network"
    Click OK.
    Closed iTunes/
    Reopened iTunes and I can drag and drop.
    I went back into Edit, Preferences, Sharing and put the tick back and clicked OK.
    Works fine now.

Maybe you are looking for

  • How can i get my bookmarks back, after mozilla crashed and got stuck in safe mode?

    I was using mozilla as usual when suddenly it crashed and then my computer turned off. i restarted it and said it had gone into safe mode. i tried to restart the computer again but it was stuck on safe mode. The bad part is that all my bookmarks are

  • Ovi maps v 3.06 is it downloadable to NOKIA C5..?

    current version v3.04.....i want to up grade to v3.06 on my nokia C5 is it possible...im in INDIA using TATA DOCOMo..when will the update availble in india..is my device compitable to download it..?

  • Function Buttons Problem

    Hello, few function buttons ( the buttons near the Power button) just dont work. they do nothing ! Is there any Toshiba application that will help me configure them? i have a Portege m800 laptop. Thanx , Vedran.

  • Problem in dropdown list display in module pool

    Hi All,    One of the fields of  my module pool program is a drop down list. I am able to populate the values to the list but when i select any value, it doesnot come to the field. Can any one help me out in this ? Thanks in advanve ... Ranjita

  • From London to Australia...

    Hey All Complete technophobe here. Okay so am relocating to Australia in a few weeks. I have an iPhone 4s and will be taking it with me. I have backed up all my contacts on the Cloud, and have now bought iTunes Match also. I have been told to unlock