How Do I Update a Project's "Project" File

Does anyone know how to edit the Project data file that is found inside an iMovie Project package?
(Right click on any iMovie Project in the Finder and you will be presented with an option to, "Show Package Contents." Within the iMovie Project package, you'll see several files and folders. One of the files is labeled Project. This can be opened in Property List Editor or Xcode.)
Several months ago I created an project within iMovie. The project used video clips stored in my iPhoto Library. Something corrupted my iPhoto Library and I was forced to delete the iPhoto Library, create a new iPhoto Library, and restore my content from my Time Machine backup.
This caused the file paths to the content in my iPhoto Library to change. As a result, iMovie can no longer find the referenced video clips.
I've opened the Project data file for the iMovie Project package in both Property List Editor and in Xcode. I've found the object items that list the file paths and have updated them accordingly. Also, I've updated the folder names of the folders found in the Proxies folder. However, after saving the Project data file, iMovie no longer recognizes the iMovie Project package as a project and it is no longer listed within iMovie's list of projects.

It is possible that you inadvertently corrupted the file while doing the edit.
But it could also be possible that you moved the file? For iMovie to see it, it should be in the Movies/iMovie Projects folder.

Similar Messages

  • How do I update a pending book project on iTunes Connect?

    I successfully uploaded my book and all assets to iTunes Producer. I received a ticket about my use of the term iBook (not allowed) and corrected the book file.
    I am having trouble updating the files. When I tried to update the files I received an error code. "ERROR ITMS-9000: "Files of type audio/x-m4a are not allowed outside of widgets:"
    Apparently that is caused by using iBooks Author's Export functionality and then delivering to the iBookstore. (my m4a files are inside widgets).
    I have seen this suggested process:
    1. Open your book in iBooks Author
    2. Choose Publish from the Toolbar
    3. Choose a name for your book package
    4. iTunes Producer should open automatically once iBooks Author completes the book publishing process.
    5. Carefully enter your book's metadata
    6. When complete, click on the Delivery tab and click Deliver
    But I have not been able to use this process above (1-6) to update my pending project. It seems to be designed for new book projects rather than updating files on existing projects.
    Is there a way to update my current book at iTunes Connect without getting the ERROR ITMS-9000?
    Or should I cancel my existing book on iTunes Connect and start over? (and if so how do I do that?)
    Thanks for your help

    Just  done this after info from iBook support, simply make whatever changes you  need/want to your book and  using the original package ID and redeliver, all the informatoin wil be in iTunes Producer, but you will need to re input the book, cover and screenshot images.
    After deleting  the iTunes Package in a clean up, iBook support advised to export the book and get the package ID from iTunes Connect if you  did not  record it anywhere. If you do, open iTunes Producer and in Look up Metadata.. type or paste your original package Apple ID number.
    This has worked out OK for me, those who have had a book issued a "Ticket"  will likely be using the same methods.
    A search for error codes advises its about zipped files or unzipping something you added.  Check your content and save making sure you either replace the original or delete it and save a new version and  re-deliver.
    The good news is... if you have corrected your book to comply with teh Ticket... its should be in the store with 24 - 48 hours.
    This is for Free Books.... so I dont know if its the same with paid books

  • How do i update information without overwrite from files?

    If I have an existing table from last month and i am uploading new data from a file that has the old and new data, is there a way i can only update the ones that doesnt exist on the table?

    One way to do this would be to take the new txt file and upload it into a dummy table then use a merge statement from the SQL Command Processor to conditionally insert or update the original table. Here is a viewlet of how to use the merge statement.
    http://gehlpad.oracleicenter.com/pls/survey/demo.lr?p_link=10594L56
    Once you have inserted or updated the information you could delete the dummy table.

  • How to edit/update data into an XML file using Flex and Actionscript

    I can read an external xml file, please see the code below:
    protected function button1_clickHandler(event:MouseEvent):void
    var GrowthChartsDataGrid:XML;
    var loader:URLLoader = new URLLoader();
    var request:URLRequest = new URLRequest("../GrowthChartsDataGrid.xml");
        loader.load(request);
        loader.addEventListener(Event.COMPLETE, onComplete)
    function onComplete (event:Event)
         var loader:URLLoader = URLLoader(event.target);
         GrowthChartsDataGrid = new XML(loader.data);
         GrowthChartsDataGrid.GrowthChartGridView += <Month> {txtMonth.text} <Weight> {txtWeight.text} </Weight> </Month>
         texttesting.text = GrowthChartsDataGrid.toString();
    I can read an XML file and can add an extra node and can display it in a text filed. But I want to update the XML file contents which will come from the txtMonth and txtWeight text boxes.
    Please any suggestions???

    First of all thanks for your quick reply .
    I actually want to add another node inthe xml file. Files is at a local location and i can read the file and add an extra node (but I cant store this extra node in the actual XML file). But I want to save XML with the extra node.
    For exmaple,
    my current xml is:
    <?xml version="1.0" encoding="utf-8"?>
    <GrowthChartGridView>
        <Month> 1
        <Weight>3.5</Weight></Month>
    <Month> 2
        <Weight>3.9</Weight></Month>
    <Month> 3
        <Weight>4.5</Weight></Month>
    </GrowthChartGridView>
    and at run time, I can create a new node using the data from two textboxes at button click event.
         GrowthChartsDataGrid.GrowthChartGridView += <Month> {txtMonth.text} <Weight> {txtWeight.text} </Weight> </Month>
    Now what I want to do is, I want to add this node back in to my XML. Therefore, the result I am looking for is, my local XML should update like this.
    <?xml version="1.0" encoding="utf-8"?>
    <GrowthChartGridView>
        <Month> 1
        <Weight>3.5</Weight></Month>
    <Month> 2
        <Weight>3.9</Weight></Month>
    <Month> 3
        <Weight>4.5</Weight></Month>
    <Month> {txtMonth.text} <Weight> {txtWeight.text} </Weight> </Month>  //I can read data from text boxes so its fine but I can not store this in to                                                                                                          my original XML
    </GrowthChartGridView>
    Thanks

  • How to update a master project in Project Online via CSOM or REST?

    I can update "regular" projects via the CSOM, but what about Master projects?
    1. ProjectContext.Projects does not seem to include master projects. This also seems to mean that the following code works if ProjectId is a non-master. If ProjectId is for a master project, then ExecuteQuery returns nothing.
    var Projects = projContext.LoadQuery(projContext.Projects.Where(p => p.Id == ProjectId));
    projContext.ExecuteQuery();
    2. I can get master projects via a REST call. But then, how do you update them? The documentation suggests that it is possible to do CRUD operations via REST, but I can't find any documentation that explains how to actually do that.
    Or, I am just missing something? It would seem that not having access at all to Master Projects would be a blocking issue for most?
    Mike G.

    Hi Mike,
    This one perked my interest and yes I can confirm the same, Master Projects (ProjectType = 6) DO NOT appear in the CSOM at all, and while they do show up in the OData feed they are actually also not visible as far as I can see in the REST or any other client
    side endpoint!
    This interested me (affects my bulk edit for one) so I just did a bit of .NET Reflecting and I can see that in the ProjectCollection constructor in the back end (with SP1 installed) it is specifically loading
    only projects of type 0 and 5! Tsk, tsk.
    Martin Laukkanen
    Nearbaseline blog - nearbaseline.com/blog
    Bulk Edit and other Apps - nearbaseline.com/apps

  • How can I update the project varibles  in OBPM 10.3

    Hi All,
    OBPM version : 10.3.2 (weblogic Enterprise version)
    How can I update the project variables from the External process?
    I per my knowledge we use termination wait activity and notify the same from the external process. I am successfully do this but I am facing the performance issue with this and sometimes even data sources pool is getting exhausted.
    Could you please tell me is there any other way to update the project variables?
    Thanks in advance.
    Narasimha
    Edited by: Narasimha on Mar 2, 2011 4:19 AM

    I do not disagree with Mark about using Message Waits to update project variables. I'm right in the middle of logic right now that is doing just that.
    If you have thousands (or in your case millions) of instances to update all at once, you might want to also want to consider another approach. I obviously do not know your process and sure you've thought of this, but you could use a database to store this same information that you are currently using project variables for. You'd need a table that has the instance's unique id (e.g. case id, loan number, claim number) as the primary key and then have columns to store the information you are currently storing in project variables.
    Taking this approach, you'd be updating the milliions of rows in the database very quickly. You could still have project variables in your process, but they would be set at the beginning of a Screenflow or in an Automatic activity using a SELECT statement against the database table using the unique id of the instance as the key.
    Dan

  • I just updated to the latest aperture, i have projects previously saved on a drive (in the old version) that now won't load... how do i update them?

    Hi,
    i just updated to the latest aperture, i have projects previously saved on a drive (in the old version) that now won't load... how do i update them?

    But, unless I missed something, you are doing the repair with Aperture 3.5 so if 3.5 can't open an earlier library before doing the upgrade then unless I'm missing something the library will be upgraded before the repair is run, no?
    OT:
    You got me there, Frank - I wondered about the same thing, but Aperture is behaving differently, when upgrading a library, depending on if you are launching into the First Aid Tools or not.
    I repeated my experiments, to explore this difference:
    I restored an Aperture 3.4.3 library and launched the First Aid Tools:
    Apertur went directly into First Aid Mode without first asking to upgrade.
    Then "Repair" asked to be allowed to upgrade the library as you predicted.
    During the upgrade "Aperture"showed "Rebuilding", not "Repairing" or "upgrading". 
    Second experiment: When I only double-click the 3.4.3 library instead of repairing, the upgrade alert is very different:
    It takes a shorter time and does not show "rebuilding".
    I am quite certain, that Aperture will use a different upgrade prodecure, when launched into the First Aid panel for repairing or rebuilding.

  • How do you update a Project that is not inside Library?

    I have projects on my external hard drive that are independent from my new library. How do I update them so I can use them in my updated Aperture 3 library?

    TelaMoon wrote:
    I have projects on my external hard drive that are independent from my new library. How do I update them so I can use them in my updated Aperture 3 library?
    When you export a project Aperture makes it a library. So just double click on the 'project' in the Finder and Aperture will open with this as its current library.

  • How to calculate number of hour for projects

    Hello Experts
    I got a table which has all the information about employee. I need to find the number of hours an employee worked on a project. Let say employee ‘ABC’ worked on 2 different projects. I need to find out how many hours he worked on each project. In my table I’ve
    employee_id, employee_name, proj_startdate, proj_enddate, finishtime fields.
    Can please somebody show me how I can find out the hours?
    Thanks a lot in advance

    it's useless...
    but you need to add a field 'project_id', if an employee works for multiple projects..
    furthermore, you can also add a field named like 'working_hours' into your table...
    your table new structure, let's say the table name is employee
    employee_id, employee_name, project_id, proj_start_date, proj_end_date, working_hours
    then you can use the below codes to update it and make your data be more clear...
    UPDATE employee a
    SET a.working_hours = (SELECT (proj_end_date-proj_start_date)*24 FROM employee b
    WHERE a.employee_id = b.employee_id
    AND a.project_id = b.project_id);
    BUT, you have to add a constraint on your table to make the fields(employee_id, project_id) be unique

  • How assignmnt finish date is calculated in project plan

    We enable Single Entry Mode, protect acutals in our environments, and during our testing, we found that the Finish date of the task is auto re-calculated while the hours input is diffferently from the planned hours. And we have tested with different scenarios:
    Fixed Work, Fixed Duration, Fixed Units etc, but we still do not understand the exact calculation logic of the new Finish date.
    Does Microsoft have any document descrbing this logic?
    Thanks.
    Kevin Li

    Hi Kevin,
    It is normal that the finish date is recalculated by Project. When the team member enter actual work starting later from the start date, after the task update is approved and the project published, Project pushes the actual work, updates the actual start
    date then recalculate the finish date based. 
    This is actually why you do use a project planning software as Microsoft Project: you want the application to help you forecasting your project dates. If you do not want Project to recalculate, then you miht consider using a simpler tool like Excel.
    Basically the process is that the team member gives the information that the task started later than planned, the project manager approves the start date and the actual work. Project calculates the planned finish date. But the last step is very important:
    the project manager should review how did MS Project do the recalculation and update the project plan with the remaining work and eventually add or move resources on assignments to adjust the capacity and delivery dates based on priority.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Updating project document from file.

    Hi community,
    I need to create a functionality using C# to update opened Project Professional 2013 Document.
    I have an open document with some project.
    At some moment the project file was changed by third party program.
    Those changes need to be displayed in the opened document. How can I update Active Project document programmatically to see changes made to the project file?
    Thank  you,
    Ross

    For this purposes I can use function OpenFile.
    Doing that action there is a dialog window "Import wizzard" appears with several options - how to import. Could you please tell me how can I
    suppress "Import wizzard" and
    import updated project with "A new project" option (from wizzard).
    Thank you.

  • How to convert keystore (from native android project) to .p12 to use with AIR project?

    Due to the advancements with adobe AIR, I'm really excited to be finishing up a HUGE update of an old project that was originally made with native android.
    But, i've hit a brick wall with 2 issues, and it would be terrible if all the work i've done in AIR was for nothing...
    First, how do I convert the keystore I previously used (from native android project) to .p12 to use with AIR project? (on a mac)
    Second, how do I remove the "air." that gets automatically appended onto the front my android package name? I plan to use a captive runtime, so it's not really needed at all, and I can't upload it like this as an update because it will think it's a different app.
    Please help so I can continue using air for all my projects from now on!

    Thanks for the reply!
    So I'm going through this guide..
    http://helpx.adobe.com/air/kb/opt-out-air-application-analytics.html
    I followed all the steps, made all the adjustments to the androidmanifest.xml like it asks.
    But when i get to the stap that says
    "Run the following command to create the resource file for the updated AndroidManifest.xml:"
    I run this..
        "/Users/brybam/Documents/eclipse/android-sdk-mac_x86/platform-tools/aapt" package -f -M AndroidManifest.xml -F resources.arsc -I "/Users/brybam/Documents/eclipse/android-sdk-mac_x86/platforms/android-8/android.jar" -S ./res
    But I keep getting the same error
        ./res/layout/expandable_chooser_row.xml:1: error: Error parsing XML: not well-formed (invalid token)
        ./res/layout/expandable_multiple_chooser_row.xml:1: error: Error parsing XML: not well-formed (invalid token)
        ./res/layout/main.xml:1: error: Error parsing XML: not well-formed (invalid token)
        ./res/layout/multiple_file_selection_panel.xml:1: error: Error parsing XML: not well-formed (invalid token)
        ./res/layout/ssl_certificate_warning.xml:1: error: Error parsing XML: not well-formed (invalid token)
    The guide doesn't say anything about these xml files, and im not sure what to do with these ore how to handle them.
    If i go into the res/layout folder, and just delete these (i know theyre for my layout and i need them, but im just saying i deleted them for the sake of a test)
    I was able to get through the rest of the steps in the guide fine, make an apk, and put it on my phone...only to find out the app will crash the moment you try to run it.
    So my question is, does anyone with any experience re-packaging an android application know how I might get around this or take care of the errors with the xml files in the layout folder?
    Thanks!!
    EDIT to note something i've tried:
    So, earlier in the guide they have me use thing thing called the "AXMLPrinter2.jar" to make the AndroidManifest.xml readable so i can edit it.
    I run something like this:
        java -jar "/Users/brybam/Desktop/repackage/AXMLPrinter2.jar" AndroidManifest.xml > AndroidManifest.xml.bk
    This makes a new file "AndroidManifest.xml.bk" and i can edit that.
    So, I was thinking with all of these layout xml files, maybe I could run this "AXMLPrinter2.jar" on them and then edit them. Because right now if you open them they're not human readable, and its hard for me to work on them if they're not...
    But when i do the same command I did on the AndroidManifest.xml i just get blank files...
    I tried
        java -jar "/Users/brybam/Desktop/repackage/AXMLPrinter2.jar" main.xml > main.xml.bk
    Just get a blank file.
    So, i think the issue might be with these just not being re-formatted to human readable.

  • How to find next number range for project definition in tcode CJ20N

    Hai Experts,
          Please help me 'How to find next number range for project definition in tcode "CJ20N". I was trying in function module NUMBER_GET_NEXT. Is it right function module? If its right what input i need to give for this tcode and for the field project definition?
    Note: I searched in forum before posting, but couldn't find the solution.
    Thanks
    Regards,
    Prabu S.

    Hi,
    For project defination internal number is assigned by system.
    When you saves's project then system allocate one number to project defination, you can view it,
    SE11 >>> table  PROJ >> Click on contents >>> execute,
    here you will get your project defination & number is assigned to project defination.
    kapil

  • How Can I Run A SQLJ Normal Project In SAP NWDS

    I have a question about SQLJ in SAP NWDS.
    1.I created a java dictionary project,and then create the table , then depoly it.it's ok.
    2.I created a java normal project including the above java dictionary project.
    3.I used the SQLJ tech in the java normal project,exporting the opensqllib.jar,sqljapi.jar,sqljc.jar,sqljimpl.jar.
    4.I coded the normal project,and export the project .jar,everything is ok.
    <b>5.But when i runed the project in NWDS,the error appeared:java.lang.NoClassDefFoundError: com/sap/sql/log/OpenSQLException
         at com.ezkj.deom.sqlj.MainApp.main(MainApp.java:21)
    Exception in thread "main"</b>
    How Can I Run A SQLJ Normal Project In SAP NWDS?
    PLS Help me and don't let me alone!

    Tony,
    Why not try to import your SQLJ project in SAP NWDS. Add all the jars mentioned to the project path both for compile time as well as runtime. Now try running he project. Once you are able to bypass java.lang.NoClassDefFoundError, you will get other errors related to SQL statements. These Oracle SQL statements needs to be converted to OpenSQL format.
    Chill out!!!
    Sukanta Rudra
    Note: If helpful, plz donate some points.

  • How do the Procurement of materials from projects?

    Hi Friends'
    How do the Procurement of materials from project s, here our Process is:
    Whenever our engineers on site see any shortages he will send a report thro our customized InfoPath request form. Then we decide depending on the material whether to order to USA or Procure locally. Some mechanical parts we procure locally. For this in PR we give reference of WBS element. Purchase department raise PO, we receive material, sent to site And finally we charge USA(parent Company)  for this amount against this project.
    For the items like electronic cards, Critical mechanical parts to be ordered to USA we send the InfoPath form to USA. We get weekly shipments from USA. We create PR and also PO. No action by our purchase dept. The FREE OF CHARGE (FOC) material is received to us. Stores will do MIGO and then we dispatch to Site.
    Friends please suggest how to do this Process through project systems. I need the entire configuration setting that we need to do and the process also, plz friends... I need these settings step by step.
    Regards,
    Hari
    Edited by: Hari  Krishna on Jan 3, 2009 12:39 PM

    suggest attend course PLM220
    If using only WBS then you have to raise PR from MM module and the material demand will not be driven from PS (except Easy Cost Planning)
    If using networks then assign material component to network activity and set the item category as non stock item - this will trigger PR from activity

  • After upgrading to Photos, how can I work on a Book Project from another apple device?

    After upgrading to Photos, how can I work on a Book Project from another apple device?

    I'm not sure I understand what you are asking, but on the device/Settings, do you have iCloud and Photos sync turned on?

Maybe you are looking for

  • Backing up a shared itunes library

    Hi, I want to back up my shared itunes library and most importantly my purchased music onto an external hard drive. When I use backup it can't find the purchased music in the shared file (I have two users on one mac sharing the itunes library). What

  • Can you share photo books

    Hello! I am making a photo book on my macbook as a gift for a client at work and i want to put it on my boss's macbook pro for backup. I tried to email it and drop it in to an email but i cant drag it or open it. Is there any way to move this or shar

  • Grouping elements on a slide

    I am using Captivate v4. Is it possible to select different elements placed onto a slide and create a "group" - as is possible in PowerPoint ? For example - I have created an magnified view of an area visible on the slide itself. I have placed around

  • Running firefox in the background

    Hi, I find that if I launch firefox when there is already a window open, I get a much faster startup than from a when it's not open at all. I assume this is because there are a group of shared processes which don't have to be started when the second

  • Passing parameters to report - nothing displays

    My abjective is to pass 3 parameters to a report in Forms. The user should not see the parameter form. The values passed are changed programatically based on the screen the user is on. The parameters are named the same in both Reports Builder and For