Projects and Project Libraries

I've been happily using Projects since they were introduced in LabVIEW 8-something.
I've got a Project whose task involves examining directory trees containing other VIs.  In some cases, the VIs my code examines have the same name as one of the VIs being used in the code (I'm running in Development Mode, not from an executable).  To avoid "name clashes", I did a search on NameSpaces and learned about Project Libraries.
So I've successfully ported all of the files in my Project into a similarly-named Project Library.  The code works just fine.
Today, I opened my Project to look at one of my VIs, and to my horror, the Project had none of the files showing.  It also didn't show the Project Library (where I "knew" all the files were located).  A tad worried, I looked on my disk, and found the Project Library (.lvlib) file -- if I double-click it, there are my files!
What I'm having trouble doing (maybe because it is impossible!) is getting a view "inside" my Project Library from the Project Explorer.  Given the close relationship between Projects and Project Libraries (the second is created from the first, for example), I would have expected to see such a link.  Does it exist?  Or are you expected to open both a Project (which, in my case, has files that are not in the Project Library) and the corresponding Project Library?
Note I did a search through the NI Documentation on Project Libraries, and what I read emphasized the close relationship between a Project and an associated Project Library, including giving them the same (or similar) name and keeping the files in the same folders.  [Hmm -- I just realized I did not name my Project and Library identically -- I called the Project "Project XYZ", and the Project Library "Library XYZ" ...].
Experience "from the field" would be most welcome!
Bob Schor
Solved!
Go to Solution.

HandyAndy wrote:
Would you mind posting your project so someone could take a look at it?
Dear Handy,
     Humble Pie time (again!).  When I saw your request, I said (to myself, silently) "Just how dumb do they think I am?".  So this morning, I brought back an earlier pre-Library version of my Project, captures some screen shots of "Before", and started to (re-)create my Library.  I couldn't remember exactly how I did it before, so I followed the steps in the LabVIEW 2011 Manual.  I did a "New, Library" from My Computer in the Project, and dragged stuff into it.  This time, I noticed there was a lot of "saving VIs" that I didn't recall from my earlier (first) Project Library.  When I was done, there, in Project, right where I was expecting to see it (but wasn't!) was my Project Library!
     So what did I "do wrong" before that caused the Library to "disappear" from the Project?  Who knows, but I clearly did something (mysterious) incorrectly -- I'll try not to do whatever-it-was again!
     Onward and upward (or maybe onward and downward, since Austin, home of NI Week, is south from here ...).
Bob Schor

Similar Messages

  • How to move Event (not necessarily connected to Projects ) and projects to new external drive

    I am running Snow Leopard 10.6.8 and iMovie11 9.0.4 have a had very stressful time trying to clear down the Movies folder from my internal drive and get it across to a new external hard drive, as my 700gb drive on my 2009 iMac is practically full. I have taken a full back-up and also created a new 1.5 TB partition on the external drive. However I do not know how to get the Events and Projects across, and for iMovie to know that every thing is now on the new drive.
    Initially I copied the 2 folders using finder, which seemingly worked but then I discovered that iMovie did not display the the new events, so I deleted the 2 folders from the external drive and tried manually moving the events in iMovie. This was very slow, with lots of spinning wheels and eventually iMovie crashed. So I moved the new Event copies I did manage to create into trash, but still iMovie was crashing.
    I then, thinking something had become corrupted, I  tried to restore the Events folder and Projects folder from my backup, but that did not work as I got a message saying the there was not enough space to do the copies (why does it need extra space as I assume it would be overwriting the existing folders ?). So in desperation I did some forum searching and ended up deleting the com.apple.iApps.plist. Now iMovie seems to be working fine, and is displaying al the events from my internal drive (I have ejected all other drives), and I am back to square one (hopefully), however for some reason the 'month' folders I had previously created in each Event 'Year' have disappeared and all the, for example 2013 events, are now under the 2013 folder with no Month sub folders( I assume this is something to do with the preferences I had deleted ?)
    I am hoping someone can direct me on the right path for getting the Events (not all of which are used in Projects) and Projects across to the new external drive, so I can free up space on the internal drive (and install Mountain Lion - my end goal).
    I have been  trying to do all this since 0600 this morning, so if anyome can help it would be very much appreciated.
    Jim (now grabbing a much needed beer !)

    Do the external drive show up in iMovie 11?? I just drag and drop in iMovie and don't touch it or change in finder.

  • Question about dependent projects (and their libraries) in 11g-Oracle team?

    Hello everyone,
    I have a question about dependent projects. An example:
    In JDeveloper 10.1.3.x if you had for instance 2 projects (in a workspace): project 1 has one project library (for instance a log4j library) and project 2 is a very simple webapplication which is dependent on project 1. Project 2 has one class which makes use of log4j.
    This compiles fine, you can run project 2 in oc4j, and the libraries of project 1 (log4j) are added on the classpath and everything works fine. This is great for rapid testing as well as keeping management of libraries to a minimum (only one project where you would update a library e.g.)
    However in 11g this approach seems not to work at all anymore now that weblogic is used, not even when 'export library' is checked in project 1. The library is simply never exported at all - with a noclassdeffound error as result. Is this approach still possible (without having to define multiple deployment profiles), or is this a bug?
    Thanks!
    Martijn
    Edited by: MartijnR on Oct 27, 2008 7:57 AM

    Hi Ron,
    I've tried what you said, indeed in that .beabuild.txt when 'deploy by default' is checked it adds a line like: C:/JDeveloper/mywork/test2/lib/log4j-1.2.14.jar = test2-view-webapp/WEB-INF/lib/log4j-1.2.14.jar
    Which looks fine, except that /web-inf/lib/ is empty. I presume its a sort of mapping to say: Load it like it in WEB-INF/lib? This line is not there when the deploy by default is not checked.
    I modified the TestBean as follows (the method that references Log4j does it thru a Class.forName() now only):
    public String getHelloWorld() {
    try {
    Class clazz = Class.forName("org.apache.log4j.Logger");
    System.out.println(clazz.getName());
    catch(Exception e) {
    e.printStackTrace();
    return "Hello World";
    In both cases with or without line, it throws:
    java.lang.ClassNotFoundException: org.apache.log4j.Logger
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:283)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:54)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:42)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:169)
         at nl.test.TestBean.getHelloWorld(TestBean.java:15)
    Secondly I added weblogic.xml with your suggested code, in the exploded war this results in a weblogic.xml which looks like:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-web-app.xsd" xmlns="http://www.bea.com/ns/weblogic/weblogic-web-app">
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    <jsp-descriptor>
    <debug>true</debug>
    <working-dir>/C:/JDeveloper/mywork/test2/view/classes/.jsps</working-dir>
    <keepgenerated>true</keepgenerated>
    </jsp-descriptor>
    <library-ref>
    <library-name>jstl</library-name>
    <specification-version>1.2</specification-version>
    </library-ref>
    <library-ref>
    <library-name>jsf</library-name>
    <specification-version>1.2</specification-version>
    </library-ref>
    </weblogic-web-app>
    The only thing from me is that container-descriptor tag, the rest is added to it during the deployment. Unfortunately, it still produces the same error. :/ Any clue?

  • Where did project and event libraries go after installing mavericks? How to restore?

    Recently installed Mavericks.  Now both the event and project libraries are blank.  How can they be restored?

    Are you referring to iPhoto or iMovie?  If it's iPhoto then what version of iPhoto are you running?  Have you updated to iPhoto 9.5? If so what version did you have previously?
    As a first attempt try the following:
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - Run Option #4, Rebuild Database, followed by Option #1 if needed.
    Can't help you with iMovie.
    OT

  • Profitability Analysis for Project and Project Team

    Hello Experts,
    Need your ideas and expertise to the below business case, could be simple or complicated, please provide some insight.
    the business case is like this. 2 specific project teams are available. there can be around 10 projects executed in a year. So in our PS we can have project team allocated to a project. workforce planning is done for the project for effective utilization, it is like 2 projects with 2 teams assigned. till now it is fine. the business calls for that 1 st team is assigned to another project only after closure of the assigned project.
    Let us assume P1, P2,...P10 are the projects in a year. Assume T1, T2 are the teams available. Initially T1 is assigned to P1, T2 is assigned to P2.
    Business confirms that T1 will be assigned to P3 only after completion of P1. This requirement is also straight. Assume that team T1 has executed 6 projects and team T2 has executed 4 projects.
    The requirement is profitability analysis at project level i.e at P1, P2, ...P10 which is also pretty straight. Business requirement is also to have profitability analysis against each team i.e for T1 and T2. it is like each team has a project lead and team assigned under him. based on the expenses and revenue booked against the team, there will be performance evaluation of the team.( assume that P1, P3, P5, P6, P8,P9 are the projects executed by team T1, we need to have revenue and expenses of the said projects to be mapped to team T1 as well), so we have profitability analysis at team level.
    Experts, require your advice on how to map the requirement. Is there any possibility to map projects to team rather assigning team to a project. please advice. provide some insight on how do we map the scenario.
    Regards,
    Murthy

    Hello Murthy,
    In SAP you carry out Month end closing activities. In order to carry out this activity, you post all period based data on the project. Subsequently data relevant for Profitability analysis can be determined for the given period and then this data can be settled to COPA.
    This data can be evaluated in the project information system or in Profitability analysis.
    You can check report KE30 for Profitability Analysis.
    Refer SAP help for more details
    http://help.sap.com/saphelp_erp2004/helpdata/en/7a/4c3aad4a0111d1894c0000e829fbbd/content.htm
    Regards
    Tushar

  • Task dependencies and scheduling in Oracle projects and project management

    Am I correct in the belief that Oracle projects/project management does not have the ability to create, manage and track dependencies between tasks in a project ? And to achieve that micro level of planning I need to use something like Microsoft Project Integration ?

    Gordon,
    Project integration is the link between Oracle Projects and MS Projects.
    If you want to define dependencies between tasks, MS Project is best bet
    for you.
    Cheers,
    Gopal
    [email protected]
    www.sagss.com

  • Defaulting person responsible for projects and project tasks

    Hi,
    My customer needs to use the project resource management for staffing the cProject tasks so that these are available in the dashboard view for tasks. However, in stead of doing this manually for all the tasks it is wished that tasks that are not staffed manually (or in the template) are staffed by the person which created the project.
    Is there any possibilities for doing this in cProjects 4.0? Have anyone of you done something similar?
    Regards Camilla

    Hi Camilla,
    You can try with the following two alternatives.
    1. a customer report, which call the
        Bapi BUS2175 method change.
       or the related function modul. BAPI_BUS2175_CHANGE.
        the importing parameter RESPONSIBLE_ROLE_GUID of BAPI_TS_TASK can    be used.
    2. The Badi dpr_attributes may fulfill your requirement too.
    But in bot case, I think, a role has to be created and and the person
    is assigned to the role before,.
    If anyone has other ideas, please post hier.
    Kind regards,
    Zhenbo

  • HT5149 Will uninstalling and reinstalling fcpx effect my pre existing projects and events? That is to say, will it delete them?

    Hey my FCP X has stopped working. It lasts about 30 seconds and then the beach ball comes up and it doesn't respond after that. It's pretty much unusable now. I was thinking of uninstalling and reinstalling it. Will that delete my existing projects and events or will they stay on my system?
    Thanks

    This is my pet checklist for questions regarding FCP X performance - you may have already addressed some of the items but it's worth checking.
    Check the spec of your Mac against the system requirements:
    http://www.apple.com/finalcutpro/specs/
    Check the spec of your graphics card. If it's listed here, it's not suitable:
    http://support.apple.com/kb/HT4664
    Make sure you're using the latest version of the application - FCP X 10.0.3 runs very well on my 2009 MacPro 2 x 2.26 GHz Quad-Core Intel Xeon with 16 GB RAM and ATI Radeon HD 5870 1024 MB. I run it with Lion 10.7.3.
    Check that you have at least 20% free space on your system drive.
    If you have not already done so, move your Projects and Events to a fast (Firewire 800 or faster) external HD. Make sure the drive's formatted OS Extended (journalling's not required for video). You should always keep at least 20% free space on the Hard Drives that your Media, Projects and Events are on.
    If you are getting crashes, there is some conflict on the OS. Create a new (admin) user account on your system. Do NOT import any of the settings etc from the old account - simply use FCP X from there - if it runs a lot better, there's a conflict and a clean install would be recommended - but remember, if you reinstall the system, and then use Migration Assistant (or anything else) to import all your old settings etc etc, you may well be importing the cause of the conflict in the first place.
    Keep projects to 20 mins or less (about half that for Multicam). If you have a long project, work on short sections, make them into Compound Clips and then paste these into a final project for export.
    If you ever experience dropped frames, I strongly recommend you use ProRes 422 Proxy - it edits and plays back like silk because the files are small but lightly compressed (not much packing and unpacking to do) - but remember to select 'Original or Optimised Media' (FCP X Preferences > Playback) just before you export your movie, otherwise it will be exported at low resolution.
    If you have plenty of processor power, for the ultimate editing experience, create Optimised Media - most camera native files are highly compressed and need a great deal of processor power to play back - particularly if you add titles, filters or effects. ProRes 422 takes up much more hard drive space but is very lightly compressed. It edits and plays back superbly.
    Hide Audio Waveforms at all times when you don't need them (both in Browser and Storyline / Timeline). They take up a lot of processor power. (Use the switch icon at the bottom-right of your timeline to select a format without waveforms if you don't need them at the moment, then switch back when you do).
    Create folders in the Project and Events libraries and put any projects you are not working on currently, in those folders. This will help a lot. There's a great application for this, called Event Manager X - for the tiny cost it's an invaluable application.
    http://assistedediting.intelligentassistance.com/EventManagerX/
    Unless you cannot edit and playback without it, turn off Background Rendering in Preferences (under Playback) - this will help general performance and you can always render when you need to by selecting the clip (or clips) and pressing Ctrl+R.
    The biggest single improvement I saw in performance was when I upgraded the RAM from 8 GB to 16.
    Andy

  • Project Server 2010 - Error 20010 with a master project and 3 sub-projects during publication

    Hi,
    Here is the situation :
    One master project with three sub projects.
    Sub projects are really similar (Same ressources and nearly same tasks but only the first contain real work for now).
    Sub projects got no sub projects nor links between projects.
    The owner of the master project got read rights through projects permissions on sub projects.
    Sub projects are link in "read only".
    We applied Project Server 2010 SP2 last week end and the issue appeared monday.
    Here are the symptoms :
    When we link only one sub project (Doesn't matter which one), the owner can publish, no problems.
    With 2 sub projects, the error may occur.
    With 3 sub projects, the error always occurs.
    With admin rights, the error doesn't occur.
    Here is the error :
    ID : 20010 (0x4E2A)
    Description : You don't have required permissions to perform the action (Average traduction)
    Detail : <detail><errinfo><general><class name="Project"><error id="20010" name="GeneralSecurityAccessDenied" uid="19515c1d-2624-466f-953a-b7fc67337b81"/></class></general></errinfo></detail>
    I'm unable to determine which sub project is the culprit, if there is one, as it's working when I link only one of them.
    Thanks for your time !

    Fylim --
    If the project manager in question does not need to edit any of the three projects, the PM does not need to have Read/Write access to any of the three projects.  Because you said that the PM needs to set links in all three projects, this means that
    the PM will be editing all three projects.  In order to edit the three projects, the PM must have Read/Write access to all three.  Setting cross-project links constitutes editing of the projects, which is why the PM must have Read/Write permission. 
    Make sense?
    Regarding SP2, I am not aware that this would change anything, but I could be wrong.  The reality is that regardless of which SP you have applied to Microsoft Project and Project Server 2010, the PM in this situation MUST have Read/Write access to the
    projects that he/she needs to edit with cross-project links.  Hope this helps.
    Dale A. Howard [MVP]

  • Multiple libraries, projects and reorganizing for the new year

    I have used Aperture since 1.0 and really like it but the growing pains are still present - over time of use, I've ended up with multiple libraries [2 main ones and 2-3 little ones that probably can be safely archived]. I want to start fresh in the new year and have a new Library that is my main one, my only one in fact == is it possible/feasible/desireable to export projects from Library A and B and then import the ones i want into my 2007 Library the way my new organizing system will be? I mainly have images according to geography and people [e.g. people in locations versus family and friends]. Can I consolidate all my Libraries into one new one for use in the future ?? Will exporting each project and then importing into my new master Library work??

    I've been thinking just a little about what features I would like the next rev of aperture to have. Though I haven't thought through the specifics, easier and more efficient use and management of multiple libraries, projects etc would be nice. Whole aperture projects referenced from multiple libraries or some such? (I said I hadn't thought it through!)
    It's over a year since aperture came out, macworld is coming up, and I suspect that 2.0 will be released eventually some time in the future, perhaps with changes (maybe even improvements!) in library and project workflow.
    So while I too am considering how to organize my own aperture materials I am currently holding off for bit just in case there might maybe possibly be (Conjecture Warning!!!) something new announced soon....
    MBP17 2.16 ghz 2gb 120gb   Mac OS X (10.4.8)  
    MBP17 2.16 ghz 2gb 120gb   Mac OS X (10.4.8)  

  • How do you move events and projects between Libraries in iMove 10

    I am running OSX 10.9.5 (Mavericks) & iMovie 10.0.5.
    I am trying to free up space on my internal 1TB hard drive and want to archive events and completed projects onto an external hard drive, which has a second iMove v10 Library on.  Under V9 of iMovie this function was easy, but I am struggling under V10.
    What is the correct way to move events between libraries in iMovie. 
    When I attach the external drive containing my second iMovie Library, open it I can see all existing events stored (by move) under version 9 of iMovie.
    Reading the Help (extract below) for this function it implies highlight the Event to move & then drag & drop into the second Library.
    Shift+CMD with drag and drop onto the second library at the library name level will move Events that are not tied to a project, but for completed projects (Finalized under V9 or shared for example with iTunes in V10) it seems these can not be moved, the above function only copies them to the second library.
    I have tried all different combinations of the Fn, Ctrl, Option CMD keys etc with and without SHIFT and the ones that work for this function only copy the event. I can not seem to get an event moved once attached to a project. File - Move Event will also move Events not tied to a completed project.
    I have also tried copy to a second Library & then to delete the original events.  Again it appears you can not delete events tied to a Project.
    What I have also not been able to find is how to move a finalised Project to another Library and then see if events attached to that project would then move.
    I have been able to move Events not tied to a Project to the second Library, then create a new project within this Library.  This helps with all new projects & future import of Events. But does not help me free up current space by archiving.
    Extract from help
    Copy or move projects, events, or clips between libraries or storage devices
             Connect a storage device that contains the target library to your Mac, or copy the target library to your Mac.
             Choose File > Open Library, and choose an option from the submenu.You can choose from recently opened libraries, locate an existing library on your Mac, or create a new library.The selected library is opened in the Libraries list, with the first event selected and its contents displayed in the browser.
             In the Libraries list, select the event that contains the item you want to move or copy.
             In the browser, select the item you want to move or copy.Tip:  To select multiple clips or projects in the same library, hold down the Command key as you click the items you want to select, or drag a selection rectangle around the items.
             Do one of the following:
    To move items between events or libraries: Drag the clip or project to another event or library.
    To copy items between events or libraries: Option-drag the clip or project to another event or library by first starting to drag and then holding down the Option key as you drag.
    Would appreciate any help on this matter.
    Thanks
    Colroy

    Further to my original post below; I have done further analysis and it seams that if you have events tied to a project (mine are all finalised) you can not move events between Libraries.  However, events that are not tied to a project can be moved. Either by Shift CMD or by using File- Move event.
    What I have not been able to find is how to move a finalised Project to another Library and then see if events attached to that project would then move.
    Copy works for events attached to a project. I have also tried copy to a second Library & then to delete the original events.  Again it appears you can not delete events tied to a Project.
    Does anyone know how to archive (move) Projects and/or events in iMovie 10.0.05 under Mavericks 10.9.5 to a second library on an external drive.
    Thanks
    Colroy

  • Really confused about libraries, events, and projects

    Hello,
    I'm brand new to editing and I'm having a hard time understanding the difference between libraries, events and projects. If anyone can explain them for me, that'd be great. Thanks

    Here some reading material:
    http://www.apple.com/final-cut-pro/docs/Media_Management.pdf
    Final Cut Pro X 10.1.2: Updating and working with libraries FAQ - Apple Support
    http://www.larryjordan.biz/fcp-x-10-1-manage-projects/
    http://www.fcpxbook.com/updates/101/
    http://www.kenstone.net/fcp_homepage/fcp_x_first_look_10_1_martin.html
    And viewing:
    https://www.youtube.com/watch?v=wGogEwnX9yE
    Hopefully, the above info will clarify everything about the library/event/project hierarchy. The important thing to keep in mind is you can't work without a library; and that library has to hold at least one event. Your event is a folder that organizes your media according to a wide variety of criteria that you can specify. Your project contains the timeline where you assemble your selects, apply your effects to tell your story and it is stored within the event folder.
    You will be happy to hear that those who come to FCP X without much traditional NLE experience (sorry, David) usually pick it up very fast. A guy that I work with didn't even have any iMovie experience and after less than 2 hours of DIY learning, cut a very credible show that aired on a local station.
    Good luck.
    Russ

  • HP ALM 11 : Synchronis​e imported libraries and source libraries between 2 projects.

    Hi,
    I created a librarie "LA" in project "PA", i put in this library 3 reqs and covering tests.
    In the project "PB", I import the library "LA" so i now have in project "PB" a librarie "LA_imported" and the 3 reqs and covering tests from A.
    I update a req in "PB".
    I go in "PA" and i compare the librarie "LA" with the librarie "LA_imported" from project "PB".
    I see that i have a difference between "LA" and "LA_imported", but the "Synchronise" button is not clicable.
    What is the problem ?
    thanks

    The duplication is unnecessary. Exporting creates a duplicate of the file. So now you'll have a duplicate of a duplicate. Exporting is not "working on" a file.
    No it's not merging, it's exporting from one to the Finder and into another. No matter what lose something. If you export the Original you leave behind all the work you've done in iPhoto. If you export anything else, you lose the non-destructive editing and the ability to revert to the original. With merging you preserve that work. Yes, you can trash the old Library when you have completed the manoevre but no it's not the same thing as merging.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue. But in brief:
    Current gets you the iPhoto Preview, used for sharing via media browsers. It's a jpg, medium quality missing metadata. Original gets the file you imported, unchanged and then you can export different version of the current version at different qualities. If you choose to export anything except the Original you do not get a Raw. There's no such thing as an "edited Raw", and you lose the connection between the original and the exported version. That means you've taken a non-destructive workflow and turned it into a destructive one.
    The Tiff will certainly be higher qulaity and less likely to suffer generational loss in future editing but the file sizes are vast, often more than 10 times the size of the jpeg.
    Put it this way, it would be cheaper to buy Library Manager than the disk you'll need to contain all the Tiffs. Unless you plan on a lot of editing, I'd go for a high quality jpeg as a reasonable compromise.
    To be clear:
    So, I guess my new question is, how can I edit the Raw image and keep it in a RAW format that IPhoto recognizes so that I can reprocess without any loss at a future time, or is it that once you edit a RAW image, then it is no longer a RAW image?
    Once you edit a Raw it can no longer be a Raw. End of.

  • Completely confused by Final Cut x Libraries, Events and Projects???

    Hi,
    I realise there are lots of different explanations about this topic but still, none of them make sense to me in that, no-one seems to eb able to properly explain the differences between these things and when I follow the guidelines I can never seem to find the video I was working on.
    First of all, I have absolutely no idea what 'Libraries' are in Final Cut X
    I have used FC7 but forgot everything because X is so different, so I am basically a complete beginner.
    When I start a completely new video from scratch I go file>new event> and title it 'whatever footage' for example. I then import all of my footage from that day.
    Within that 'Event' I go file>new>project and called it 'whatever' music video, for example.
    That way, my 'event' is the whole collection of footage. My 1st project is a music video using that footage and then I have the freedom to create new 'projects' like 'behind the scenes' etc. from said footage.
    Yet, whenever Ive done this and come back to FCX  I can never ever find my original video timeline with all my editing. Events seem to be a mixture of everything ive ever imported and projects are nowhere to be seen.
    Due to the lack of being able to just simply save a project, there doesn't seem to be a concise list of past projects anywhere to choose from?
    Can someone please tell me what Im doing wrong or their standard order of workflow? And what the difference between each of the above items are?
    Libraries, Events, projects - totally confused!???
    many thanks and please pardon my ignorance, just very frustrated by this.
    Ash

    I can show you an example of a standard workflow.
    Lets say I am booked to edit 3 Movies for a client. A Music Clip, an Interview, a behind the scenes clip.
    Lets say worst case you get everything  in a single folder.
    First thing I do is creating a library in FCPX where all the footage (also future generated media, Logos, Photos) will go in.
    Now you can create three different events in the browser for each video you are going to edit.
    Start ingesting your footage to the different events. (You will see the option in the second window after you’ve selected the clips to import.)
    Now you have your library where everything has been imported to but also three events with assigned material.
    Selections from the library.
    If you want to start with the interview click on the appropriate event, create a project (which will be your timeline) and start editing.
    Duplicate your project to keep backups and alternative edits.
    Same thing for the Music Clip. Import your Audio, Animations, Graphics to the event. Create projects and save versions.
    The next thing you should do is creating keywordcollections in your events to keep your material in order. These are like bins in FCP7
    but much more powerful. For example you can add the same clip to several keywordcollections.
    The internet should be full of examples by now. I won’t go further.
    Now you start with the behind the scenes and at one point you want add Footage from the other events to your behind the scenes event.
    Choose the clips you want to use and drag them (holding alt) to your event. You may have created a keywordcollection named footage for behind the scenes e.g. while keywording for the other two videos. This keywordcollection will be imported to the third event.
    The clips will not be duplicated on your harddrive since they are in the same library. Events are selections from the library just the same as keywordcollections are selections from an event and a project (the timeline) has selections from keywordcollections.
    Its up to you and your “job” how fine you want to organize your material. I would always suggest to create a library for every new job coming in.
    Or at least for every new client. For bigger projects you want to create events for each day or even libraries for each day.
    There is much, much more to say about libraries e.g. that you can leave your files where there are, letting the library refer to them.
    Its a great concept and you are able to manage your material in FCPX like in no other NLE.
    Watch tutorials on youtube or buy some from licensed trainers like ripple training for constant quality.
    Good luck

  • Zombie libraries and projects

    I encountered a strange situation while using referenced masters, on a NAS (if that matters).
    My Aperture libraries are on my MBP, while referenced masters are on a NAS. Library A consists of some projects that are mapping to folders on the NAS, and Library B refers to some others.
    One day, suddenly all projects in Library B lost connections to their masters (170+ projects and 28,000+ photos all with the red badges, Aperture showed the NAS volume as Offline), and I could not reconnect them (the NAS volume was not shown in the lower part of the reconnect page for selection). I tried several times to revive the zombi library and its projects. For just one time it worked and all photos were back to life, but became zombies again the next time. At times it seemed they were back with the normal badges, but actually not because I could not adjust or relocate any of the photos. I rebuilt the library several times but that did not help. I could import new projects from the same NAS again into the library and they worked well, but the zombies were just dead forever. For the working projects, Aperture showed the volume as Online, but for the zombie projects, it showed the same volume as Offline. I tried export and import the zombie projects, but they were still zombies no matter where they go. At the same time, Finder was happy to see the volume and all its files without any problem.
    I gave up and created a new library C, spending days to import all 170+ projects again from the NAS as referenced masters. I got a functioning library and could happily work on it for several days, until one day suddenly all projects and versions became zombies again. Library C became Library B.
    On the contrary, I have a good lasting Library A (700+ projects and 150,000+ photos) that works. It was created before library B, referencing to the same NAS volume but different selection of folders. On one day, though, one of the projects suddenly showed all red badges for the versions, too, but luckily just that project. Aperture showed the volume of the troubled photos was Offline, but it said it was Online for all other photos in other projects. I could not revive that project, so I deleted it and re-imported from the NAS again to build an exact same new project, and it has been working with all others ever since.
    I still have no clues about what went wrong to Library B and C (and that single project in Library A). For me they are just like Library A but referring to different set of masters on the same NAS. Under what condition would Aperture consider the same Volume as Offline for some of the versions while Online for others, at the same time and in the same Library? And it's strange that when I work on Library A, Aperture sees the NAS volume as Online, but when I switch to Library B, it sees it as Offline immediately. I am afraid that one day my Library A would unexpectedly become zombie, too, then all my Aperture work will be history.
    Has anybody encountered the same situation as mine? Hope I could get some advices here.

    I see that now. Though it still could be an issue.
    If you could distill your problem down to a short paragraph it might be easier to figure out whats going on.
    regards
    Message was edited by: Frank Caggiano

Maybe you are looking for

  • How do I insert a .pages file into an openoffice document

    How do I insert a Pages .pdf file into an openoffice writer document?

  • Form Filter Based On Query Results

    How can I create a filter on a form based on the results of a query. i.e. The Query [ESS_City] looks at the form's field [Current_User] and generate a list of cities [City_ID] that I want to use to match the form [ESS_QUEUE] field [City_ID] Query Nam

  • Why do my outlook e-mails appear on each device and have to be deleted 3 times?

    Every outlook email appears on each device and has to be read and delted from each one - then I have to delete three copies of every e-mail from the delted folder. Any ideas how to get them to syncronise properly? AOL seems to sync fine but not Outlo

  • Can't find on PDA

    Hello. I successfully synch. a disc that is compatible for a PDA. Its a drug guide for nurses. It shows under "info" that it is on the PDA but I can't find where I can open it. If someone could help me out that would be great!  Post relates to: Tungs

  • Consuming a Liferay portlet from WebCenter

    Hi all, I'm trying to consume the default Liferay "Hello World" portlet from WebCenter but keep on getting a null portlet instance when trying to drop the portlet on a jspx page. Any help would be greatly appreciated. Regards Antonis