Pointing FCE to Look for Data at New Location

FCE is in my laptop, but original clips (within an iMovie project) were taken from an External Disk ("ED"). When I opened the finished FCE project, I still had to be connected to the ED in order to keep all the files intact.
I copied the iMovie file into the laptop, and then Set the Preference to look for data in the new location in the laptop, but it is not working. Only upon re-connecting to the ED can all the files be found and viewed again.
Any suggestions would be greatly appreciated; thank you for your time and efforts.

Piero, thank you for the reply. Reconnecting individual clip to the corresponding clip in the new location will be difficult as the clips are in iMovie, which (unlike in the old iMovie) does not actually show us all the individual clips.
I suppose I will just have to start over, OR a good lesson for next time, to make sure where everything should be.

Similar Messages

  • I tried to upgrade Reader and got a 1316 message.  So I thought I would uninstall it and try a new clean download.  Now I can't do anything.  It is looking for Data\Adobe\reader 9.1.cab,  Any suggestions?

    I tried to upgrade Reader and got a 1316 message.  So I thought I would uninstall it and try a new clean download.  Now I can't do anything.  It is looking for Data\Adobe\reader 9.1.cab,  Any suggestions?

    You may also not want to shout (large bold print) when you go to the Reader forum. It irritates a lot of folks and may distract from your question.

  • When my iphone looks for data it turns off my car stereo

    Henever my iphone looks for data my car stero cuts out. There is a handsfree bluetooth system in the car which works fine

    This can happen with lithium batteries that have been completely empty and the phone not used for a very long time, say more than 6 months. If that is the case, you may succeed to revive it by doing the following:
    Charge it for an hour or so,
    disconnect the charger,
    put the iPhone ON,
    do not use it for 10 minutes,
    use the phone for 1 minute,
    put the phone OFF,
    leave the phone for 15 minutes,
    connect the charger and charge for half an hour,
    disconnect the charger,
    put the phone ON,
    do not use it for 10 minutes,
    use the phone for 2 minutes,
    put the phone to OFF,
    leave the phone for 10 minutes,
    connect the charger and charge for half an hour,
    disconnect the charger,
    leave the phone for 10 minutes,
    use the phone for 2 minutes,
    etc
    do this 4 or 5 times: it sounds silly, but this has a scientific base, it tries to move the electrons again in the battery.
    At some point the battery may come back to life completely. I have had the same three times, and in all cases it worked (2 Nokia, 1 iPhone).

  • Looking for data card‏

    Dears
    I have Wireless-G Router for Mobile Broadband from Linksys with these specifications
    model number :  WRT54G3G-EU
    serial number  :  CKI11H110780
    I am looking for data card that supported by this router
    Here is five models of data cards from Option.com
    http://www.option.com/products/overview.shtml
    Which one of these five data cards models are supported by this linksys router ?
    Specifically from these data cards
    Waiting for your replay as soon as possible
    Best Regards    

    UP UP UP

  • Photographer moving from CS3 to CS5.5 looking for discussion of new features

    Hi,
    I'm a photographer (not retoucher or designer). Just moved over to CS5.5 from CS3 due to the price changes that will happen in the next upgrade. I'm finding the changes quite difficult to navigate. I know there's lots of info out there, but really, there's too much! I'm looking for a good discussion, video, print, whatever, of the main changes in workflow between the versions. I'm pretty old school in my PS use. I use Curves a lot, set skin tones with CMYK numbers etc. My work flow is probably closest to that used by many beauty retouchers. One of the big changes thats throwing, me for instance, is that I can no longer simply cmd click on a eyedropper target on skin then cmd 1, 2, 3 on the RGB curves layers to set points to adjust colour. 
    Links, suggestions of video's etc much appreciated.

    One of the big changes thats throwing, me for instance, is that I can no longer simply cmd click on a eyedropper target on skin then cmd 1, 2, 3 on the RGB curves layers to set points to adjust colour.
    In the Adjustments Panel it’s alt-2 (composite) and alt-3 (red), alt-4 (green), alt-5 (blue) to select the individual channels now.
    And command-shift-click to set the points on the R-, G- and B-curves.
    You may want to consider setting the Adjustments Panel to »Auto Select Targeted Adjustment Tool«.
    One can still trigger the old modal dialog via a Script, but it might be better to just get accustomed to the Adjustments Panel.
    You may be able to download the Help as pdf for CS4 and CS5, their respective »What’s new?«-sections should provide an overview of the accumulated new features.
    http://help.adobe.com/en_US/Photoshop/11.0/photoshop_cs4_help.pdf
    http://help.adobe.com/en_US/photoshop/cs/using/photoshop_cs5_help.pdf

  • What password is ipad looking for when downloading new ios

    I Am trying to download the new IOS on my iPad and it is asking for a password. which password is it looking for?
    i Have 3 failed attempts, how many will it allow?
    thank you.

    Hello,
    Brother you should enter your itunes/appstore password in order to update your software
    if u forgot it than reset your password
    Kind Regards,
    AmirKhalid(AKQ)

  • Looking for Leopard Safari icon location help?

    Looking for the button pictures in Safari for leopard. The tif files in resource are for 10.4 and I don't see where leopard safari is getting it's images. i.e. the "bug" button. Any ideas?

    No i see the same thing but as in my post. Look at the norm and pressed versions of the tif files. the pressed are "blue". Leopard's pressed view is dark grey, not blue. I can change the tif file to anything but it doesn't change in the browser. Safari is not using those tif files anymore. (I think).

  • Looking for Data Rates for Apple AIC vs DV...

    I've been looking around for a chart that compares the storage needed for an hour of AIC at the various qualities.
    I found this: http://support.apple.com/kb/HT2704   Please point me to the place of AIC Knowledge.
    Thanx from Rosco

    reading and writing the data shouldn't be the problem, its what you are doing with the data which will be taking all the time.
    Try this
    public class WriteFile {
        public static void main(String... args) throws IOException {
            String filename = "record.csv";
            int records = 140 * 1000;
            int values = 6;
                long start = System.nanoTime();
                PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter(filename)));
                for (int r = 0; r < records; r++) {
                    for (int i = 0; i < values; i++) {
                        if (i > 0)
                            pw.print(',');
                        pw.print(r * 10 + i);
                    pw.println();
                pw.close();
                long time = System.nanoTime() - start;
                System.out.printf("Time to write %,d records was %.3f sec. file size=%.3fMB%n",
                        records, time / 1e9, new File(filename).length() / 1e6);
                long start = System.nanoTime();
                BufferedReader br = new BufferedReader(new FileReader(filename));
                String line;
                while ((line = br.readLine()) != null) {
                    // do some work.
                    String[] parts = line.split(",");
                    int[] nums = new int[parts.length];
                    for (int i = 0; i < parts.length; i++)
                        nums[i] = Integer.parseInt(parts);
    br.close();
    long time = System.nanoTime() - start;
    System.out.printf("Time to read %,d records was %.3f sec%n",
    records, time / 1e9);
    PrintsTime to write 140,000 records was 0.462 sec. file size=6.193MB
    Time to read 140,000 records was 0.792 sec

  • Looking to point iTunes (playlists and all) to a new location

    Hello all,
    I'm in a bit of a pickle of my own making, and I greatly appreciate any help anyone is able to offer on this one.
    I've been using iTunes as a playlist jukebox much more than as a file organizer. Here is my normal mode and sequence of operation, largely because I came into using iTunes later than some other programs out there (like MusicMatch Jukebox or WMP).
    1. Rip tracks to my hard drive using another program.
    2. Add folders/files to iTunes, then create playlists, usually one CD=one playlist. If I have a multi-CD set, I will create a playlist of all the CDs together, instead of individual playlists for each CD.
    3. I do not have iTunes organizing files for me, and I do not create files when adding to the library, because they are already created on my hard drive.
    Several months ago, my 80GB internal drive was running out of room, so I copied everything to a 100GB external drive and started ripping newer tracks out there as I acquired them, and creating new playlists for those newer tracks. I did not re-organize my iTunes library at that time, because I didn't know what to do to accomplish that. So, my current iTunes library has older playlists pointing to files still on my C: drive and newer ones (after the copy to the external drive) to my external drive.
    I also have some music that was imported directly into iTunes, mostly acquisitions from the Music Store. Those files reside exclusively on my C: drive, no copies out on the external drive at this time, and if need be, they could stay on C:, but if I can also move them to the external drive and iTunes can still find them, that would be great.
    I would like to retain all my playlists that are currently referencing files on C:, but still point iTunes to the external drive for every file and playlist reference, since copies of the files on older C: drive playlists are now on the external drive, except for the directly imported files already mentioned. And, if you didn't see this one coming, I'd really like to reclaim the music file space on my C: drive, only after iTunes doesn't look there anymore for files to satisfy the playlists. Well over 50GB stands to be gained here, once reclaimed.
    Now the kicker - I have over 20,400 tracks and well into the hundreds of playlists.
    So there you have it - I have dual copies of most of my music files until I can get iTunes to forget about the old copies entirely, and to not have to re-create those hundreds of playlists to reference files on the external drive.
    I have thought about using an editor on my iTunes library XML file to change all references to C: to my external drive name (and top-level folder references to change as well), but no editor (XML or otherwise) I have in my arsenal will hold a file this big.
    Again, many thanks in advance to anyone(s) of you kind readers who might be able to throw this old (53 YO) dog a bone of useful information.
    With a little bit of hope and a whole lot of thanks,
    Gorgo
    Cincinnati OH
    Dell Dimension 2400   Windows XP   External hard drives

    Once more, thanks for responding, Mimico!
    Bad news here, I'm afraid.
    The consolidation aborted because apparently a file name was too long for the copy, and there was only a puny generic message box notifying me of samesaid abort. No reference to what track(s) caused the problem. I could be all day chasing that one down. No can do.
    Needless to say, I went back to the original library file on my C: drive. Then desperation set in. I felt I had no alternative but to delete 99 3/4% of my library entries manually, leaving only those tracks that I purchased through the iTunes Store. The plan being, to also kill all existing playlists and rely on the Browser instead, once I got my track references lined up, supposedly by the following step.
    Then I did an import, pointing to the master folder on my external drive, thinking it would pick up everything underneath, per the directions in the Help file for mass imports of music.
    The import managed to pick up only about 1/7 of my collection on the external drive, even though it is all there on that drive under that folder. There may be different layers of subfolders and files under the main folder, but the predominating structure is an artist subfolder, than a CD subfolder, then the associated MP3 track files at the lowest level. Some of those CDs with that structure got picked up, many others did not. Bad result.
    Is there any alternative to manually searching for missed folders and importing them one folder at a time? That would be the biggest help to me at this stage, I'm afraid. Otherwise, I guess I have to do what needs to be done.
    Sitting in my doghouse,
    Gorgo

  • How do I connect an old Time Capsule to look for data from a previous OS?

    Hello. I replaced my old Time Capsule with a new one a few months ago, and broke in the new Time Capsule with a fresh backup of a clean 10.9 install after migrating my user account.
    Today, I noticed that there were some folders full of personal data that are neither on my MBP, nor in my Time Machine backups on the new Time Capsule. I am hoping that these folders still exist on my old Time Capsule which I used with 10.8.
    I'm wondering how to search through my old Time Capsule and its Time Machine backups. Specifically, I'm wondering how to connect it to my MacBook Pro, and whether I will be able to search for my (hopefully not) lost data through the Time Machine interface, or through the directory structure contained in Backups.backupdb.
    Can anyone help me out with a plan to proceed?
    Thank you very much.

    1. Turn off Time Machine in System Preferences
    2. Unplug new Time Capsule
    3. Turn off Wi-Fi in the menu bar
    4. Attach old Time Capsule to power
    5. Attach old Time Capsule to MBP via ethernet
    6. Wait for old Time Capsule to appear in Finder > Sidebar > Shared
    7. Select old Time Capsule in Finder > Sidebar > Shared and Connect to old Time Capsule
    8. Select the Data directory
    9. Double-click on the .sparsebundle file that represents the volume that was backed up on the old Time Capsule
    10. Hold down the option key and click on the Time Machine icon in the menu bar and select Browse Other Backup Disks...
    11. Select the Time Machine backup disk you would like to browse and choose Use Selected Disk
    12. Browse old Time Capsule backup in Time Machine environment, restore data as normal, exit Time Machine as normal
    13. Eject old Time Machine backups (the .sparsebundle you mounted) under Devices in Finder > Sidebar
    14. Eject old Time Capsule under Finder > Sidebar > Shared
    15. Disconnect ethernet; disconnect old Time Capsule from power.
    16. Plug in new Time Capsule (it boots); turn Wi-Fi on (reconnect to network, if necessary); turn Time Machine back on in System Preferences

  • Looking for Data Translatoin DT 2821 VI

    Hi folks,
    I'm new with Labview (5.1) and want to use it with a Data Translation DT
    2821 PC- ISA board.
    Does anybody know were to get free drivers from for this board?
    There weren't any with the Software and I didn't find any on the Nat.
    Inst site, nor anywhere else (except from Data Translation, which want
    to be paid for them).
    Any ideas?
    Rainer Ehrt

    Labview don't supply drivers for the data translation cards, but data
    translation do. However, I was told that they were not up to code. I asked
    data translation for a demo/evaluation (just to be sure) and they simply
    stated that they did not offer demos, since the product worked fine...
    If you want to make your life a lot easier, and save a bunch of money(in
    debuging the drivers), buy natinst DAQ cards. I was very statisfied of the
    move.
    Il you find any drivers on the net, please let me know.
    Champlain Landry ing. jr
    Rainer Ehrt wrote in message
    news:[email protected]..
    > Hi folks,
    > I'm new with Labview (5.1) and want to use it with a Data Translation DT
    > 2821 PC- ISA board.
    > Does anybody know were to get free drivers f
    rom for this board?
    > There weren't any with the Software and I didn't find any on the Nat.
    > Inst site, nor anywhere else (except from Data Translation, which want
    > to be paid for them).
    >
    > Any ideas?
    >
    > Rainer Ehrt
    >
    >

  • I'm looking for a replacement (new or in excellent condition) unibody casing (top only) for a 17-inch mid-2009 macbook pro. Thanks.

    Hi,
        I've dented my Macbook Pro and I was wondering if someone out there might be interested in selling the part that I need, which is the top casing to a mid-2009 unibody Macbook Pro 17". I know that these things exist (sometimes) on eBay and iFixit, but I was originally hoping to get a new part, not a used one, since it's difficult to know the exact state of the part when buying online.
        Thanks.

    To 'sig': I failed to mention it before (I was going to, but abstained myself in the end), but I think you meant 'classifieds' (with an 's' at the end, as in 'advertisements'); we all know these forums are certainly not 'classified', but then again this other most graceful reminder will hopefully serve to further warn participants that this is most clearly not the place for classified postings.

  • Looking for list of new features in 11.2

    I have been trying to find a list of the new features, if any, that have been released with 11.2. Would anyone have a link the new features documentation?
    thanks
    R.

    The first link below is to the 11.2 new features guide. The second link below is supposedly the 11.2 new features for Oracle Text, however the only new features listed are for 11.1 and prior, so it appears that either there aren't any new Text features in 11.2 since 11.1 or they left them out.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10881/title.htm#BEGIN
    http://download.oracle.com/docs/cd/E11882_01/text.112/e10944/whatsnew.htm#CCREF23679

  • Linux versus NT - Looking for data

    Hi,
    I'm currently working at a company that has a number of Oracle 7
    instances running under WinNT 4.0.
    One of my tasks is to help upgrade these to Oracle 8.0.5.
    A manager has asked me my thoughts on using 8.0.5 under Linux
    instead of NT.
    Quick overview:
    - The instances are generally fairly small 1 - 10Mb of data;
    - They are not used that intensively, with < 10 concurrent users.
    null

    Ian Parkin (guest) wrote:
    : Oops,
    : I decided not to post this question at the current time - the
    : O_SYNC thing is not something that I would like to move forward
    : with at this time.
    : Please disregard this thread and I will punish my mouse for
    it's
    : inabilty to hit the right area of the screen :)
    : IAP
    This is not a thing that cannot be corrected. Contact youl local
    Oracle support centre and ask for patch for bug id: 882446
    Andre
    null

  • Looking for G7 1322NR New screen

    I was told by hp tech that the part number for screen is 641395-001 but when I took it apart, the part number is LTN173KT02. I went online to 3rd party site, they have the screen but my model uses right video connector.
    again, my Model is HP G7-1322NR. HP charges too much.

    A few months back I was having the same dilema. Would steer clear of Acer.
    Had a great 20" Acer running on a PC, worked great......on the MacPro it wouldn't give the correct resolution - had to use switchres (from memory) to make it work at native resolution. Apparently Acer screens won't always show the native res on the Mac - due to the way Acer has the res in the screen (found this out after many searches on the net and this forum).
    Tried the Dell, no good, poor screen quality..the banding issues...
    In the end, bit the bullet and paid for the 23" Cinema Display - first one died overnight (not a happy man) replacement organised from Apple and haven't looked back since. Still think it is the best screen around and zero setup hassles and the Apple support was top notch...
    Cheers,
    John

Maybe you are looking for

  • Can not activate EAX and SVM Support in Media Source Organizer with Audigy2 !!!!!!!!!!!!!

    Please there must be somebody out there able to me!Ive got an Audigy2 SB0240 (driver: SBAX_WBUP2_LB_2_09_006.exe)? and Media Source (CMS_PCAPP_LB_3_30_2.exe) Windows XP Pro SP2So after the CORRECT Installation and?Updates to the actuall securely work

  • T61 Persistent Graphics Driver Failure

    Last November my Lenovo Thinkpad T61 died. I was able to wipe it and reinstall Windows, but it would only work with an external monitor. So it's working fine with an external monitor and I update Windows fully and then it stops working with the exter

  • Proxy-Soap-Jdbc  Async/Sync Bridge

    Hi, I have proxy soap requestsoap response-jdbc syncronous scenario. i have used async/Sync bridge for that. I m getting NO_RECEIVER_CASE_ASYNC, No receiver could be determined error. I have created : 2 Datatype for proxy sender and jdbc receiver and

  • Difference between Oracle 11i Apps DBA & Oracle Application server 10g DBA

    Hi All.... can anyone explain me the *"Difference between Oracle 11i Apps DBA & Oracle Application server 10g DBA"* Can Oracle 11i Apps DBA work in a Oracle Application server 10g DBA environment. Regards,

  • "Flash9b.ocx failed to register" error message and problems caused

    I didn't want to update my flash player but finally was "bullied' into doing so, because i kept receiving a screen message telling me to update it, without being given the option to say "No. Thank you anyway."  After I updated my flash player to 11..