Opening a document into a template

Hello,
I'm wondering if you can open an existing document into a particular template. When I open a RTFD document in Pages, it seems like it opens into a blank template. How would I open it into my preferred template?
Thanks!

The templates are made for you to enter your data into, they are not themes like in Keynote or iMovie or iDVD where you can change the look of an existing document. You can copy & paste from the RTF into a Pages template.

Similar Messages

  • Open .xml documents into InDesign?

    Is there a way to open .xml documents into InDesign, or any Adobe program?
    The goal is to access text from a web site feed and place it in an Indesign doc, to create a print product.

    You can't open XML but you can certainly utilize it.
    Here's a good book you might want to look into: http://amzn.to/i3iWZ5
    Bob

  • Opening into a template

    I am new to photoshop and this is probably a simple question but I can't figure what to search for in the help files.   I have made two sides of a business card with multiple layers in photoshop, when I turned them into .jpg files and opened them in the template in Word it was not lining up right and I can't get it to fit how I want it to.
    I found a template for photoshop and I am hoping it will keep my sizes right, but I can't figure out how to open my premade card in the template window and I need to have it done tomorrow.
    Would you please help me?

    I don't know which Photoshop template you have, but normally you would need to drag your own image into the template file with the Move tool.
    If it's the wrong size when it's there, adjust by pressing Ctrl+T.
    To make things easier, turn off Tabbed windows, or switch to Float All in Windows, using the arrange Documents drop-down in the top bar of the Photoshop window.

  • How can I convert my Open Source document files into Word document files? I cannot download Pages since my Macbook Air does not have the most recent software.

    How can I convert my Open Source document files into Word document files? I cannot download Pages since my Macbook Air does not have the most recent software. I downloaded open office to my mac to try and save money. It worked well for a while. Now I get this pop-up message that asks me to "Reopen" and when I select the option, nothing happens. I cannot save my documents anymore and I cannot convert them to word. Help!

    dwb wrote:
    Does OpenOffice output Word documents by default or do you have to select it manually?
    You have 17 options to save as in Open Office, one of which is .doc  files,  yes it needs to be saved manually.
    You may be able to default to DOC, but have not tried same.
    Since Open Office is 99% same as Word, I use it, or Word, either one.  Open Office is a bit less buggy than Word 11'

  • Batch combine files into one illustrator document - how to open target document?

    I am making a script which will:
    1) Open a folder of Illustrator files
    2) Open each file in the folder (these files are called the source files)
    3) Select all the contents of the source file
    4) Copy the contents of the source file
    5) Paste these contents into a target file as a new layer
    6) Ensure the new layer has the same name as the old source file
    However, I don't know how to tell Illustrator where my target file is. How can I do this?
    Also, when I paste, how can I turn off paste rembers layers. (So the layers get pasted into the new layer that has the same name as the old document).
    Here is my code:
    // JavaScript Document
    //Set up vairaibles
    var destDoc, sourceDoc, sourceFolder;
    // Select the source folder.
    sourceFolder = Folder.selectDialog('Select the folder with Illustrator files that you want to mere into one', '~');
    // If a valid folder is selected
    if (sourceFolder != null) {
              files = new Array();
              // Get all files matching the pattern
              files = sourceFolder.getFiles();
              if (files.length > 0) {
                        // Get the destination to save the files
                        destDoc = document.selectDialog('Select the final saved document', '~');
                        for (i = 0; i < files.length; i++) {
                                  sourceDoc = app.open(files[i]); // returns the document object
                                  var myLayers = sourceDoc.layers; // All layers in Active Document
                                  //Go through all layers of source document and copy artwork
                                  for (i = 0; i < myLayers.length; i++) {
                                            myLayers[i].hasSelectedArtwork = true;
                                  with(sourceDoc) {
                                            var count = pageItems.length;
                                            for (var i = 0; i < count; i++) {
                                                      pageItems[i].selected = true;
                                            redraw();
                                            copy();
                                            for (var i = 0; i < count; i++) {
                                                      pageItems[i].selected = false;
                                  //Create a new title variable that has the title of the source document
                                  var title = sourceDoc.name;
                                  var title = title.substring(0, title.length - 4); //(remove extension from name)
                                  //Close the Source Document
                                  sourceDoc.close(SaveOptions.DONOTSAVECHANGES);
                                  //Open the Destination Document and create a new layer in it that is named after the title variation
                                  var newLayer = destDoc.layers.add();
                                  newLayer.name = title;
                                  //Paste into this new layer
                                  destDoc = app.paste();
              else {
                        alert('No matching files found');
    Thanks in advance for any help   
    Edit: Also, when pasting, how can I paste in place instead of just pasting.

    I have been studying this script. It is similar to what I need except it places the source files (Instead of copying & pasting them)
    http://kelsocartography.com/blog/?p=204
    I have adapted the script to my needs and it works perfectly, except it has the same problem as before: It pastes the first source file, but then it endlessly starts pasting the second source file (in a loop) and so I have to force quit.
    So my new question is, when looping through files how can you get illustrator to move on the next one?
    The original kelsocartography had this line:
    thisPlacedItem = newLayer.placedItems.add()
    thisPlacedItem.file = imageList[i];
    I belive this line is what makes Illustrator move onto the next file, but I am not sure how to adapt it to my code.
    Here is my code so far:
    function getFolder() {
              return Folder.selectDialog('Please select the folder to be imported:', Folder('~'));
    function importFolderAsLayers(selectedFolder) {
              // if a folder was selected continue with action, otherwise quit
              var myDocument;
              if (selectedFolder) {
                        myDocument = app.documents.add();
                        var firstImageLayer = true;
                        var newLayer;
                        var thisPlacedItem;
                        // create document list from files in selected folder
                        var documentList = selectedFolder.getFiles();
                        for (var i = 0; i < documentList.length; i++) {
                                  // open each document in file list
                                  if (documentList[i] instanceof File) {
                                            // get the file name
                                            var fName = documentList[i].name.toLowerCase();
                                            var sourceDoc = app.open(documentList[i]); // returns the document object
                                            var myLayers = sourceDoc.layers; // Select All layers in Active Document
                                            //Go through all layers of source document and copy artwork
                                            for (i = 0; i < myLayers.length; i++) {
                                                      myLayers[i].hasSelectedArtwork = true;
                                            with(sourceDoc) {
                                                      var count = pageItems.length;
                                                      for (var i = 0; i < count; i++) {
                                                                pageItems[i].selected = true;
                                                      redraw();
                                                      copy();
                                                      for (var i = 0; i < count; i++) {
                                                                pageItems[i].selected = false;
                                            //Create a new title variable that has the title of the source document
                                            var title = sourceDoc.name;
                                            var title = title.substring(0, title.length - 4); //(remove extension from name)
                                            //Close the Source Document
                                            // check for supported file formats
                                            if ((fName.indexOf(".eps") == -1)) {
                                                      continue;
                                            } else {
                                                      if (firstImageLayer) {
                                                                newLayer = myDocument.layers[0];
                                                                firstImageLayer = false;
                                                      } else {
                                                                newLayer = myDocument.layers.add();
                                                      // Give the layer the name of the image file
                                                      newLayer.name = fName.substring(0, fName.indexOf("."));
                                                      // Place the image on the artboard
                                                      sourceDoc.close(SaveOptions.DONOTSAVECHANGES);
                                                      //Paste into this new layer
                                                      newLayer = app.paste();
                        if (firstImageLayer) {
                                  // alert("The action has been cancelled.");
                                  // display error message if no supported documents were found in the designated folder
                                  alert("Sorry, but the designated folder does not contain any recognized image formats.\n\nPlease choose another folder.");
                                  myDocument.close();
                                  importFolderAsLayers(getFolder());
              } else {
                        // alert("The action has been cancelled.");
                        // display error message if no supported documents were found in the designated folder
                        alert("Rerun the script and choose a folder with images.");
                        //importFolderAsLayers(getFolder());
    // Start the script off
    importFolderAsLayers(getFolder());

  • Photoshop uses JavaScript to load open documents into the Match Color command

    Hello,
    I am a production artist and I make use of the Match Color command quite a lot in my work. I often have 6-10 Photoshop documents open and one of them is designated as my master document. With this document active, I launch the Match Color command. Inside the Match Color dialogue, I load one of the other open documents into the Source drop-down menu under Image Statistics. I click Ok, and save the master document under a new name. I have to repeat this for all other open documents. Needless to say, it gets tedious.
    I started to write a script to automate this, but I cannot find the syntax for the Match Color. I have the Adobe Photoshop Cs6 Javascript Scripting Reference but have been unable to locate it in this PDF. I tried looking online, but no luck. Does anyone know what syntax to use as well as associated properties / methods?
    Thanks for any assistance.

    What we do is we make seamless images from product photos supplied by retailers in the flooring industry (carpet, tiles, etc). The seamless image gets loaded into a virtual room scene powered by Adobe Scene7. Scene7 takes the seamless image and duplicates it horizontally and vertically, in 3D perspective, so the final rendering looks like one continuous product image. Check this link to see an example:  http://sitesetup.creatingyourspace.com/wlhhbw4/designcenter/vrddesign.aspx?room=2854 The thumbnails on the left side are seamless images. click on one and it will load into the virtual room.
    When I make seamless I may encounter 20-50 images of the same product, but different colors. Rather than spend 10-15 minutes per seamless, I make one and then let Match Color do the rest. Match Color is a great tool for this application. If destructive editing were an issue, the layer could simply made into a smart object, but we're not concerned about that.
    I did try the javaScript listener. Below is the code it generated. I'm new to JS so I don't understand all of the syntax.
    // =======================================================
    var idmatchColor = stringIDToTypeID( "matchColor" );
        var desc7 = new ActionDescriptor();
        var idLght = charIDToTypeID( "Lght" );
        desc7.putInteger( idLght, 100 );
        var idClrR = charIDToTypeID( "ClrR" );
        desc7.putInteger( idClrR, 100 );
        var idFade = charIDToTypeID( "Fade" );
        desc7.putInteger( idFade, 0 );
        var idfsel = charIDToTypeID( "fsel" );
        desc7.putBoolean( idfsel, true );
        var idSrce = charIDToTypeID( "Srce" );
            var ref5 = new ActionReference();
            var idLyr = charIDToTypeID( "Lyr " );
            var idBckg = charIDToTypeID( "Bckg" );
            ref5.putProperty( idLyr, idBckg );
            var idDcmn = charIDToTypeID( "Dcmn" );
            ref5.putName( idDcmn, "4167_13828.jpg" );
        desc7.putReference( idSrce, ref5 );
    executeAction( idmatchColor, desc7, DialogModes.NO );

  • How do you open a new document from the template chooser?

    Hi There,
    Since upgrading to Yosemite, I can't find the option to open a new document from the template chooser. When I type in "template" in the help box it shows it under "file" But when I click on "File" I don't see that option.
    Basically, I'm trying to ask how do you access the templates in the new pages?
    Thanks so much

    Check your preferences and make sure Show Template Chooser is selected:
    Then just choose New from the File menu.

  • PDF is changing all my pdf documents into a word document - My boss sent me a pdf email through outlook and when I try to open it changes to a word document

    PDF is changing all my pdf documents into a word document - My boss sent me a pdf email through outlook and when I try to open it changes to a word document Help this is so frustrating

    Hi tinam74565130,
    That does sound frustrating! It sounds as though the filename associations have become confused on your computer. You should be able to reset that easily. Here are some instructions:
    Change which programs Windows uses by default - Windows Help
    How to change the default application for a file type | Macworld
    Please let us know how it goes.
    Best,
    Sara

  • How to transfer a mac document into a pdf file to open on a microsoft computer.

    how to transfer a mac document into a pdf file to open on a microsoft computer.

    Choose to print it, click on PDF, and then Save as PDF.
    (113984)

  • Issue when opening word document where it doesnt show the template part of the word document

    I have a user who when she opens a document that should have a letter head template load in the background the template doesnt show, using another profile on the same machine the template does open, the view can be replicated from the working profile by
    selecting page layout/Margins/custom Margins/layout and unticking the different first page box. this setting is correct on the affected profile. I have recreated the users profile but still get the same issue, this issue is affecting all documents the user
    opens, is there a setting i am missing? I have also tried resetting word in the registry but this also has had no effect.

    Hi,
    Could you tell me what version of Word are you using?
    Templates (including Normal.dot) are stored in C:\Documents and Settings\user name\Application Data\Microsoft\Templates.
    It’s possible that normal.dot file under your profile is corrupted. You can copy the normal.dot file under the normal profile to your store path.
    If there is anything else that I can do for you regarding this issue, feel free to post back.
    Best regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Convert a Document into Template

    As far as I know to save any document to create a template with a dot extension. I want to know is there any better idea and any quick way to convert a document into template because every day I had to make many template for my business purpose. So any one will suggest me a better way so that a document will be converted as a template in quick time it will make-work easy.
    Thanks in advance.

    HI,
    Well, saving any document you wish to use as a template with the .dot extensions is a good idea. Now as you want to know a quick way to make a document a template to make your work easy and faster, I thing you will get help from the site http://www.templatesforbusiness.us

  • Pages 5.0 can't open iCloud documents.  Has anybody run into this issue?

    Here's the story:
    I upgraded to Pages 5.0 and can't open .pages documents saved in icloud.
    It does not seem to be a file incompatibility.  I am creating files in Pages for Mac, saving them to iCloud.  They are immediately unable to re-open. 
    I only get a message saying:  The file “{file name}.pages” couldn’t be opened.
    Documents can be created without issue.  If they are saved to my local drive, I can open them again.
    Obviously, this makes it very difficult to use Pages with any other devices because document syncing is impossible.
    Details on my system:
    Mid-2010 13" Macbook pro
    2.4 Ghz core 2 duo
    8 GB ram
    OS X 10.9

    I was also experiencing same issues without being to open Older Pages Docs from iCloud in Pages 5.  I followed suneson Recommendation and process to the T...    Works perfectly. 
    Important to note you do have to do the second part in order for it to work completely.  I tested just the first half and still had issues.  Once Disabling and Re-enabling Documents and Clearing Cache - works perfectly now.  Thanks Suneson!
    Suneson process:
    Move all of your iCloud documents to a local folder (offline).
    Go to the iCloud preference pane i System Preferences.
    Click Manage... and delete all Pages data.
    The Next Step is required:
    Go back to iCloud preferences and uncheck "Documents & Data".
    Check it again.
    Delete ~/Library/Caches/--anything related to Pages or iWork--

  • I have Keynote'09. I started a new Keynote document, closed it, came back to continue on it. I tried to open it and received the drop-down window "need a newer version of Keynote to open this document." ???

    I have Keynote '09 and have used it many times. Today I started another Keynote document, stopped for a while, came back to continue, and received, "You need a newer version of Keynote to open this document."  ?? Stumped.

    IOS Pages 2.0 and 2.1 implement an entirely incompatible document format with Pages ’09 v4.3. It cannot open them, and you are then prompted to update to Pages v5+ which is compatible with your IOS Pages.
    Unfortunately, updating to Pages v5+ is a bad thing, as it is a brand new application that has omitted over 90+ features from Pages ’09 v4.3. When you update to Pages v5+, it will move your old still functional version of the earlier Pages into /Applications/iWork. Aside from all the missing functionality, Pages v5+ will likely damage older documents that depend on specific Pages ’09 v4.3 features (including AppleScript and custom Templates).
    Oh, by the way, the older and new Pages documents have the same filename extension (.pages) making document organization difficult without applying different tag colors to old and new documents.
    We are recommending that users remain on their earlier Pages version. You may have to export documents from IOS Pages as Word .docx to avoid the OS X Pages update notice.

  • A picture that was saved in a word document is not showing when I open the document in Pages. Is there a way to recover the image, or a specific type of file that Pages only recognizes?

    My professor posted the course syllabus online and at the time, I was using OpenOffice. Whenever I opened the document the image would show perfectly fine, but I switched over to Pages because it had a template I know one of my professors wants a project to be done in. When I opened the same document in Pages to see if it would look the same, the error box popped up and said the image could not be imported and there was a blank box where the picture should have been. My question is, is there any way that I could somehow get the image to show or was it saved in a format that Pages doesn't recognize?

    Open the document with Open Office. Select and Copy the image. Paste it into Pages.
    If that doesn't work,
    Open the document with Open Office. Select and Copy the image. Launch Preview. Press command-N (New document from Clipboard). Save the Preview file as a PDF or JPEG, as appropriate. Insert that in Pages.
    Regards,
    Barry

  • Opening Word Documents in different ways - 'Open as' instead of 'Save as'.

    I would like to combine several documents into one document. For example, I want to combine Document A, B & C. The document will not be A then B then C, more A,B,C,A,B,C,A,C,A,B.
    What I would like to do then is to be able to open only the A parts as one document, or the B parts as another and so on.
    Is there anyway in which this can be done?
    All help gratefully received!

    "in the different 'formats'." Different order? or is there more to it than the order?
    Would AutoText meet your needs? If not, why not?
    You can save in one template AutoText entries for A, B and C. This template will have no text showing but will contain the saved AutoText.
    Then, you can create documents based on the template that have AutoText fields calling on the entries for A B and C in whatever order you want. Save those documents. Note, AutoText fields, not just inserted AutoText.
    To change B in all documents, redefine the AutoText entry for B in the template. Then open the documents and Ctrl+A followed by F9 to update the AutoText fields.
    If you are sending these outside your own computer, you would want to unlink the fields after updating. The shortcut for that is Ctrl+A followed by Ctrl+Shift+F9.
    Charles Kenyon Madison, WI

Maybe you are looking for