Moving Clips One prel file to another

How can I move a group of clips from one PrE 9 file to another? I want to create a new video, but only certain portions. Can anyone advise? Thank you, Stan

I have seen no downside to removing un-used sections of a Project, and then doing either a Save_As, or Save_As_a_Copy. Do NOT do a Save, when you have removed those sections, or you will overwrite your original Project file - something that you do not want to do.
I use this workflow often. An example would be when I create an intro, or outro, in a Project, and realize that it has use in other Projects. I will clean out that Project, leaving only those segments, that will likely be needed later on, and still in an editable mode. I then do a Save_As (if I want to keep that "new" Project Open, in Premiere), or a Save_As_a_Copy, if I just want it available later. For some more detail on the differences between the various Saves, see this ARTICLE.
Good luck, and a good point.
Hunt

Similar Messages

  • Move group of pages from one InDesign file to another InDesign File using VB.Script

    Dear team,
    I am trying to move group of InDesign pages from one indesign file to another indesign file using vb.script.
    I have written the code like
    Dim Pages=IndDoc.Pages
    Dim Mytype=TypeName(Pages)
    Pages.Move(InDesign.idLocationOptions.idBefore,IndDoc1.Pages.LastItem)
    but it is giving an error as method Move is not a member of Pages 
    please give mme the solution to move the Multiple pages or a group of page from one Indd to another Indd.

    Hey Peter, if I wan to move several page that part of Auto Flow text, I checked the "delete page after moving" but the content still there, not deleted.
    Is there any way to delete it automatically, just to make sure I have moved that autoflowed page?

  • How can I copy layers from one .fla file to another .fla file?

    Hi,
    How can I copy layers from one .fla file to another .fla file? Please do help.
    Thanks.

    Select all the frames you want to copy, right click and select copy frames then select the file you want to paste them into and right click again and then paste frames.
    The layers the frames are should come across with them.

  • How do i move a picture from one pdf-file to another already created pdf-file with adobe reader?

    How do I move a picture from one pdf-file to another, already created pdf-file, with adobe reader?

    Reader doesn't have editing capabilities.

  • Place one IDML file inside another one.

    I want to place one or more IDML files into another single IDML "master" file.
    The master file is sort of a template for a site layout. The IDML files I need to embed represent single content boxes with specific layouts. The files for those content boxes are created outside of InDesign with some texts I get from a database.
    To retain those layouts I deemed it best to just place them into another document which is no problem with INDD but just with IDML.
    I managed to link multiple INDD files into the master file in InDesign itself, but can not figure out how to link IDML files. I also found that it is possible to link INDD files into IDML files, just not IDML into IDML.
    I need to be working with IDML as opposed to INDD because I have to be able to manipulate the files in an easy way outside of InDesign.
    Is there any way to link IDML files into other IDML files? Or if not, is there a possibility to convert my IDML files to INDD files without having to use a real instance of InDesign?
    Relevant Lines of code from the master IDML file taken from the Spread.xml file:
    <Link Self="u9f81" AssetURL="$ID/" AssetID="$ID/" LinkResourceURI="file:/path/to/subtemplates/box2.idml" LinkResourceFormat="$ID/InDesign Format Name" StoredState="Normal" LinkClassID="35906" LinkClientID="257" LinkResourceModified="false" LinkObjectModified="false" ShowInUI="true" CanEmbed="true" CanUnembed="true" CanPackage="true" ImportPolicy="NoAutoImport" ExportPolicy="NoAutoExport" LinkImportStamp="file 130505142560000000 1396736" LinkImportModificationTime="2014-07-22T16:50:56" LinkImportTime="2014-07-23T11:42:22" LinkResourceSize="0~155000" />
    If I leave this in and try to open the file in InDesign I get the error message that the linked file type is not supported
    <Link Self="u9f81" AssetURL="$ID/" AssetID="$ID/" LinkResourceURI="file:/path/to/subtemplates/box1.indd" LinkResourceFormat="$ID/InDesign Format Name" StoredState="Normal" LinkClassID="35906" LinkClientID="257" LinkResourceModified="false" LinkObjectModified="false" ShowInUI="true" CanEmbed="true" CanUnembed="true" CanPackage="true" ImportPolicy="NoAutoImport" ExportPolicy="NoAutoExport" LinkImportStamp="file 130505142560000000 1396736" LinkImportModificationTime="2014-07-22T16:50:56" LinkImportTime="2014-07-23T11:42:22" LinkResourceSize="0~155000" />
    If I put this in everything works fine.
    Notes: box1.indd and box2.idml are the exact same files, just saved differently by InDesign. The path to both files is a valid file system path and has full read/write access.

    Thank you for your reply. I already know that it is possible to edit IDML files, which is what I am already doing.
    What I am now looking for is a way to place one IDML file into another one like you are able to do with INDD files.
    Which file format should I use insted then? It must be editable outside of InDesign because I need to be able to change texts and stylings within the file.
    Laubender
    That possibly means you have to have InDesign Server to integrate in your workflow.
    That's the exact thing I am trying to avoid here.

  • I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button

    I have a document made up of separate PDF files which reside in a folder and are linked to each other via hyperlinks. Each pdf file is set to open with bookmarks displayed, however if I link from one PDF file to another and use the "Previous View" button to navigate back to my starting point the bookmarks are replaced by "page thumbnails". Is there anyway to stop this from happening?

    Hi Pusman,
    While setting up the links, if you choose to open the file in a new window then you won't face this issue, then you can simply switch to the previous file and bookmark view will remain as it is.
    Does that helps with your query?
    Regards,
    Rahul

  • Copy one text file to another text file and delete last line

    Hi all wonder if someone can help, i want to be able to copy one text file to another text file and remove the last line of the first text file. So currently i have this method:
    Writer output = null;
             File file = new File("playerData.xml");
             try {
                   output = new BufferedWriter(new FileWriter(file, true));
                   output.write("\t" + "<player>" + "\n");
                   output.write("\t" + "\t" + "<playerName>" + playerName + "</playerName>" + "\n");
                   output.write("\t" + "\t" + "<playerScore>" + pointCount + "</playerScore>" + "\n");
                   output.write("\t" + "\t" + "<playerTime>" + minutes + " minutes " + seconds + " seconds" + "</playerTime>" + "\n");
                   output.write("\t" + "</player>" + "\n");
                   output.write("</indianaTuxPlayer>" + "\n");
                  output.close();
                  System.out.println("Player data saved!");
             catch (IOException e) {
                   e.printStackTrace();
              }However each time the method is run i get the "</indianaTuxPlayer>" line repeated, now when i come to read this in as a java file i get errors becuase its not well formed. So my idea is to copy the original file, remove the last line of that file, so the </indianaTuxPlayer> line and then add this to a new file with the next data saved in it. So i would end up with something like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <indianaTuxPlayers>
         <player>
              <playerName>Default Player</playerName>
              <playerScore>0</playerScore>
              <playerTime>null minutes null seconds</playerTime>
         </player>
         <player>
              <playerName>Default Player</playerName>
              <playerScore>0</playerScore>
              <playerTime>null minutes null seconds</playerTime>
         </player>
         <player>
              <playerName>Default Player</playerName>
              <playerScore>0</playerScore>
              <playerTime>null minutes null seconds</playerTime>
         </player>
    </indianaTuxPlayers>
    However after all day searching the internet and trying ways, i have been unable to get anything working, could anyone give me a hand please?

    I would go the XML route too, but for fun, open a file as a BufferedWriter and do this:
    void copyAllButLastLine(File src, BufferedWriter tgt) throws IOException {
        BufferedReader in = new BufferedReader(new FileReader(src));
        try {
            String previous= in.readLine();
            for (String current = null; (current = in.readLine()) != null; previous=current) {
                tgt.write(previous);
                tgt.newLine();
        } finally {
            in.close();
    }

  • Linking one Numbers file to another???

    I want to link the formulas from one Numbers file to another seperate and distinct Numbers file - can I????

    D,
    Yo can link a table to another in the same sheet or different sheet in the same file, but there is no provision for linking a table in one file to that in another file.
    pw

  • Packet drop when clients moving from one Access point to another

    HI  All ,
    I am new to wireless . I am using  WS-SVC-WISM-1-K9  wism module and using 5 Access points . When my clients are moving from one access point to another we are getting packet drops .
    Kindly anyone suggest me what all configuration i need to verify on the controller  for Proper client roaming so that i can resolve my issues..
    Please let me know in case of any explanations requiered .
    Thanks  in Advance !!!
    Regards
    Angus

    For radius authenticated SSIDs, you need WPA2-aes or wpa1-tkip-CCKM. It depends on what the client supports.
    For pre-shared key, any WPA should be decent enough for roaming speed.
    If you're on WEP ... no comment.
    If you covered the above point, check if it's not a coverage problem. If the 2 APs coverage zone are not overlapping there will be a hole where you don't have signal and logically will have packet drops.

  • Moving from one external drive to another

    Hi,
    I've had a lot of difficulty having all my music on an external drive. iTunes keeps trying to localize my files on my local disk's music folder.
    Anyway, I have all my music on one external drive, which I've just done a complete copy of to another drive. All the files are in the same place.
    Is there a way to get iTunes to see all the new files without removing all the songs from my iTunes library and re-adding them from the new drive?
    Thanks

    I keep all my iTunes content stored on an external drive myself. Over the last few years, I have swapped that drive out a few times for a larger capacity drive with no problems. With iTunes closed, I copied the contents onto the new drive, then ejected the old one. After doing that, I renamed the new drive to have the same drive name/label as the old drive, so to the OS it looked like it was still the same old drive. One that was done, iTunes just treated the new drive as if it was still the old one. One other thing I have done is that I have moved my iTunes library file onto the external drive as well. This will cause iTunes to give me an error message about not being able to open the library if the external drive is not attached for some reason, and therefore it never writes to the internal drive. I haven't tried this myself, but I would think that you could get similar results by using aliases to point the iTunes folders off to the external drive as well.

  • I had two files named graphics and I replaced one graphics file with another which was the wrong one.  Can I undo my replacement?  I move the wrong one, which was on my desktop into another one and that is when it as me if I wanted to replace the file.

    I accidently replaced a file with another.  Can I undo my action? 
    I had two files named graphics.  One was on my desktop and another was within another file called solitarie.  I move the one on my desktop (wrong file) into the solitarie file and was asked if I wanted to replace the graphics file in the solitarie folder (the correct one).  I said yes accidently and then remembered that I had made a mistake.  If I use undo, it only move the wrong file back to the desktop.  Is there an undo of replace?

    Sorry, but's that's why you get the warning. "Replace" means just that - the new file over-writes the old one. There is no undo.

  • Digital movie download - can I move it from one iTunes file to another?

    I have gotten several new Blu-ray and DVD sets for Christmas. Included is a digital copy which can be downloaded. Once I download and move it to iTunes, can I export that from one iTunes file on my Mac to another Mac which I own? I haven't been able to find a relevant post.

    CWmain, this is something I'm keen to know too. I've got the new Star Trek and Transformers 2 Blu-ray discs with digital copies. I was hoping I could download the movies to my Mac Pro by redeeming the codes supplied with the discs and once downloaded just copy the resulting download files across to my MacBook Pro. I'm hoping that because both machines are authorised with my iTunes account it should just 'work'. Can anyone confirm this is correct before I go ahead?

  • Can you import a master from one Muse file to another?

    I've got upload space through Comcast, and my homepage and other material are there.  (home.comcast.net/~gregfisk/)
    But I have another site that I uploaded there through Dreamweaver a year ago.  I'd like to update it with Muse.  (www.caption-ator.com)
    But the thing with Muse is, when it exports a site to HTML, it defualts the home page to 'index.html'.  In this case, the caption-ator site info (made with muse) would over-write my main web page.  The same goes for any files that share the same file name, like 'site global.css', and 'sitemap.xml'.
    So I guess I should take the site info from the caption-ator Muse file, and rebuild it in my personal web page. So there will (theoretically) be no conflicts in the file names, and can all be uploaded safely.
    Rather than rebuild the whole Caption-ator muse built site in the Muse file for my personal web  page - is there any way to take a Master page from one Muse file, and import it to another?  That would be a HUGE time saver.  My first instinct would be to take the Muse tab for my personal web page, and the Muse tab for the Caption-ator web page, then drag and drop the Master from the Caption-ator page to the personal web page.  But Muse doesn't seem to allow for tabs to be kept separate like that.
    Any advice is apprecaited.

    If you still have the .muse file for the template you want you can open it up in Muse 'Select All' --> Copy.
    Open your destination blank template and paste it. You can have bothe muse files up in Muse at the same time.

  • Moving clips one frame at a time

    I'm trying to line up some clips to all be the same length and start and end at the same exact time.
    But final cut pro x is making it very difficult for me!
    Is there an easy short-cut to move a clip one frame at a time?
    I want these clips to line up exactly!
    Thank you,

    The way I was doing it was zooming in really close (command +) and then manually moving the clips to line up.
    But comma and period are exactly what I was looking for.
    Thanks!

  • How to include one xml file into another

    Dear Sir/Madam!
    Could you do me a favour and help me to solve the problem like this:
    I have one xml file wich describe the common thins of the GUI, and the another will be generated depending on the point the user has selected.
    I would be very pleased for any helpful assistance.

    <?xml version="1.0"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml"/>
    <xsl:template match="/">
    <xsl:variable name="xml1" select="document('xml1.xml')"/>
    <xsl:variable name="xml2" select="document('xml2.xml')"/>
    <xsl:copy-of select="$xml1"/>
    <xsl:copy-of select="$xml2"/>
    </xsl:template>
    </xsl:stylesheet>

Maybe you are looking for

  • When I attach images to an email they show as the image and not an icon.  Is there a way to make the attachment an icon?

    When I attach images to an email they show as an image and not an icon.  Is there a way to have them attached as an icon? When I send attachments this way some people can't save them.   They can see them but not save them. Any ideas?

  • Resolution when copying a graphic from Preview

    When I select a graphic in Preview and copy it, the resolution always appears to be "screen" resolution (i.e., when I paste into Photoshop). Any way to copy at a higher resolution? The copies resolution does not appear to depend on the pdf magnificat

  • Text in a shape doesn't line up, is it a bug?

    I created a triangular shape, and then double-clicked to add text within that shape.  The strange things is some of the text (generally along the 45 degrees angle) is either slightly above or below the baseline of the text (see image below).  Anyone

  • Code Coloring Bug: Ranges in DateFields

    Adding ranges to DateFields in an mxml file will cause the code coloring to stop working. Is this a known bug? Try a field like this: <mx:DateField id="dtNeeded" disabledRanges="{[{rangeEnd: new Date()}]}" selectedDate="{detailObject.dtNeeded}" edita

  • Goldengate replicate physical standby database

    Friends, I did not get a answer in data guard place Could we use oracle golden gate  to replicate a data guard  physical standby database into a  new logical database? Or we must replicate data guard primary database into a new logical database? Than