Filling in an InDesign Template with Applescript

I also posted this in an InDesign scripting forum, but I thought I'd see if anyone here had any ideas.
I'm working on a script to fill in an InDesign template I've created. The template consists of 8 text frames, each with a logo placed as an in-line graphic. What I need the script to do is to add text it has gathered after the in lines after the logos. The text frames will all be identical, so I've been trying variations of:
tell application "Adobe InDesign CS3"
tell active document
tell active page
tell every text frame
set paragraph 2 to label_info
end tell
end tell
end tell
end tell
It seems like the problem is in getting InDesign to even recognize the text frames so I can work with them. Eventually, I will also need to set paragraph styles and export a PDF of the document, but I'm just trying to figure this out one step at a time for now.

I got it to work.

Similar Messages

  • Apply Fill Color to Group Item with Applescript

    Is it possible to set the fill color of a group item using applescript and CS3? The group contains paths and text that have the same fill color with no strokes.I am able to select the group and delete it or move it (with applescript) but have had no success in setting the fill color.
    Thank you in advance for help on this question. And thanks for everything I have picked up from browsing.

    Now that I am addressing the path items and text items of the group separately I am having some success. Now I am having difficulty getting the correct terms for assigning a Spot Color to the file. Here is a piece of the script.
    This works:
    tell application "Adobe Illustrator"
    set openDoc to document 1
    set ftClr1 to (first group item whose note is "Front3") of openDoc
    set ftClr1Paths to path items of ftClr1
    repeat with thisPath in ftClr1Paths
    set fill color of thisPath to {red:255}
    end repeat
    set textFrames to text frames of ftClr1
    repeat with thistext in textFrames
    set fill color of every line of thistext to {red:255}
    end repeat
    end tell
    Need help to set the fill color to a Spot Color that already exists in Swatches.
    Thanks
    Nick

  • Batch printing the grade book template with AppleScript.

    I am using the grade book template with numbers. However, I might need to get some applescript help.
    The default template has a Report page, and it includes one student. I can  change the students name to change the values. This works brilliantly. However I have 300 pupils that I need to generate this report for. I want to have one of those reports for each student automatically generated and printable so that I can give them to the students at the end of the term.
    Obviously, I don't want to generate each report myself. Applescript seems like the solution, but I don't know how to use it.
    Can anyone lend a hand?

    I think AppleScript probably is the best way to go here, but you probably ought to learn something about using it because it is often difficult to write and test a script on one system when it has to work on a different one. Yvan does a pretty good job of that, but my AppleScript skills are not that advanced.
    My difficulties with your problem include:
    I don't know what changes you might have made to the stock template in Numbers
    I am using Snow Leopard, not Lion
    I believe UI scripting is needed to duplicate a sheet, and I don't own the tools to determine how to select a sheet (if that is possible).
    So, working with the unmodified template on my system, this is a script that I think does what you need (but it would probably have to be edited to suit your situation):
    To run this script, UI scripting must be enabled. Numbers must be running with the Grade Book document open and the sheet "Reports" selected.
    tell application "Numbers"
      activate
              set theDoc to front document
              set sourceTable to table "Student Grades" of sheet "Student Data" of theDoc
              tell theDoc
                        repeat with i from 4 to ((row count of sourceTable) - 1)
                                  set theName to value of cell i of column 1 of sourceTable
                                  tell application "System Events"
                                            tell process "Numbers"
                                                      click menu item "Duplicate" of menu 1 of menu bar item "Edit" of menu bar 1
                                            end tell
                                  end tell
                                  set theName to value of cell i of column 1 of sourceTable
                                  tell sheet (i - 2) of theDoc
                                            set its name to (theName & " Report")
                                            set value of cell 1 of row 3 of table "Student Lookup" to theName
                                  end tell
                        end repeat
      delete last sheet
              end tell
    end tell

  • How can I customize Microsoft Word Outline Numbered List Templates with AppleScript?

    I wrote an applescript to set up a word document with the appropriate styles to give the document an academic setup, much like what Xelatex produces. This is a work in progress and I have a problem.
    I have successfully applied the style changes to each Header and I have applied the desired outline numbered list template "list template 5 of list gallery 3", however I would like to add tab stops to each one in order to make each header look slick like in Latex.
    To do what I want manually in Microsoft Word 2011 mac I would click Bullets and Numbering, customize, under text position i would check the tab stop box and put in some value (1 cm, for example)
    The following is an approximation of the result of running this script on a document with headings 1-9 applied consequently to each line, respectively. Note how they are not even. I think this is an issue with the template, but I want to be able to run this script on any mac without extra template files.
    1    Heading 1
    1.1    Heading 2
    1.1.1    Heading 3
    1.1.1.1    Heading 4
    1.1.1.1.1    Heading 5
    1.1.1.1.1.1 Heading 6
    1.1.1.1.1.1.1        Heading 7
    1.1.1.1.1.1.1.1Heading 8
    1.1.1.1.1.1.1.1.1 Heading 9
    Here is the script so far:
    Academic Paper Setup
    Copyright © 2012 macmadness86
    Just kidding there is no copyright. Open Source rules!
    You may use this code however you like. It would be nice
    if you made reference to the original code when sharing.
    THINGS TO DO:
    find a fix for changing font color of headings without hardcoding it.
    fix headings 4-9
    (*<Properties to be set by the user*)
    --number suffix corresponds to heading 1, heading 2, etc.
    --NOTE: To change the coloring of headings, it must be hardcoded. must find a fix.
    property fontName1 : "CMU Serif Roman"
    property fontName2 : "CMU Serif Roman"
    property fontName3 : "CMU Serif Roman"
    property fontName4 : "CMU Serif Roman"
    property fontName5 : "CMU Serif Roman"
    property fontName6 : "CMU Serif Roman"
    property fontName7 : "CMU Serif Roman"
    property fontName8 : "CMU Serif Roman"
    property fontName9 : "CMU Serif Roman"
    property fontSize1 : 15
    property fontSize2 : 14
    property fontSize3 : 13
    property fontSize4 : 12
    property fontSize5 : 12
    property fontSize6 : 12
    property fontSize7 : 12
    property fontSize8 : 12
    property fontSize9 : 12
    property boldTF : true
    property italicTF : false
    property highlightTF : false
    (*Properties to be set by the user>*)
    tell application "Microsoft Word"
        tell active document
            (*<normal code BLOCK*)
            set name of font object of Word style style normal to "CMU Serif Roman"
            set font size of font object of Word style style normal to 12
            set bold of font object of Word style style normal to false
            set italic of font object of Word style style normal to false
            set color index of font object of Word style style normal to black
            (*normal code BLOCK>*)
            (*<heading 1 code BLOCK*)
            set name of font object of Word style style heading1 to fontName1
            set font size of font object of Word style style heading1 to fontSize1
            set bold of font object of Word style style heading1 to boldTF
            set italic of font object of Word style style heading1 to italicTF
            set color index of font object of Word style style heading1 to black
            --set paragraph format left indent of paragraph format of Word style style heading1 to (centimeters to points centimeters 0) --indent sections relative to margin
            --set tab stop position of tab stop of Word style style heading1 to (centimeters to points centimeters 1)
            --set tab hanging indent of paragraph format of Word style style heading1 to count 1
            (*heading 1 code BLOCK>*)
            (*<heading 2 code BLOCK*)
            set name of font object of Word style style heading2 to fontName2
            set font size of font object of Word style style heading2 to fontSize2
            set bold of font object of Word style style heading2 to boldTF
            set italic of font object of Word style style heading2 to italicTF
            set color index of font object of Word style style heading2 to black
            (*heading 2 code BLOCK>*)
            (*<heading 3 code BLOCK*)
            set name of font object of Word style style heading3 to fontName3
            set font size of font object of Word style style heading3 to fontSize3
            set bold of font object of Word style style heading3 to boldTF
            set italic of font object of Word style style heading3 to italicTF
            set color index of font object of Word style style heading3 to black
            (*heading 3 code BLOCK>*)
            (*<heading 4 code BLOCK*)
            set name of font object of Word style style heading4 to fontName4
            set font size of font object of Word style style heading4 to fontSize4
            set bold of font object of Word style style heading4 to boldTF
            set italic of font object of Word style style heading4 to italicTF
            set color index of font object of Word style style heading4 to black
            (*heading 4 code BLOCK>*)
            (*<heading 5 code BLOCK*)
            set name of font object of Word style style heading5 to fontName5
            set font size of font object of Word style style heading5 to fontSize5
            set bold of font object of Word style style heading5 to boldTF
            set italic of font object of Word style style heading5 to italicTF
            set color index of font object of Word style style heading5 to black
            (*heading 5 code BLOCK>*)
            (*<heading 6 code BLOCK*)
            set name of font object of Word style style heading6 to fontName6
            set font size of font object of Word style style heading6 to fontSize6
            set bold of font object of Word style style heading6 to boldTF
            set italic of font object of Word style style heading6 to italicTF
            set color index of font object of Word style style heading6 to black
            (*heading 6 code BLOCK>*)
            (*<heading 7 code BLOCK*)
            set name of font object of Word style style heading7 to fontName7
            set font size of font object of Word style style heading7 to fontSize7
            set bold of font object of Word style style heading7 to boldTF
            set italic of font object of Word style style heading7 to italicTF
            set color index of font object of Word style style heading7 to black
            (*heading 7 code BLOCK>*)
            (*<heading 8 code BLOCK*)
            set name of font object of Word style style heading8 to fontName8
            set font size of font object of Word style style heading8 to fontSize8
            set bold of font object of Word style style heading8 to boldTF
            set italic of font object of Word style style heading8 to italicTF
            set color index of font object of Word style style heading8 to black
            (*heading 8 code BLOCK>*)
            (*<heading 9 code BLOCK*)
            set name of font object of Word style style heading9 to fontName9
            set font size of font object of Word style style heading9 to fontSize9
            set bold of font object of Word style style heading9 to boldTF
            set italic of font object of Word style style heading9 to italicTF
            set color index of font object of Word style style heading9 to black
            (*heading 9 code BLOCK>*)
        end tell
        (*<apply numbering to the sections code BLOCK*)
        set selFind to find object of selection --selects text of execute find command
        clear formatting selFind --reset selFind just to make sure
        set style of selFind to style heading1 --set style we are looking for
        execute find selFind find text "" wrap find find continue with find format and match forward
        if found of selFind is true then
            --display dialog (get content of text object of selection) --for debugging only
            (*<code BLOCK word__set paragraph style*)
            --I apply the formatting to the previously found text
            set myLT to list template 5 of list gallery 3 of active document
            apply list format template (list format of text object of selection) ¬
                list template myLT
        end if
        (*Apply numbering to the sections code BLOCK>*)
    end tell

    I figured it out . Just in case anyone else wants to know the script is below:
    tell application "Microsoft Word"
        set myTable to table 1 of selection
        convert to text myTable separator separate by tabs
    end tell

  • Populating InDesign templates with data from Excel or XML?

    I have a client who does a weekly catalogue for computer parts. It’s very detailed and extremely time consuming, and we are looking at moving it to an automated InDesign workflow to save time and money in production. Once imported into InDesign, the resulting file can be exported as a formatted XML document to a webpage for auto formatting.
    I know you can import XML directly into InDesign and vice versa. I have created some categories and tables in Excel and exported this as an .xml document. When I import that document into the View > Structure panel, it displays a whole list of attributes but not the actual text I was after.
    Any help much appreciated. I’m using InDesign CS4 and doing some research on google at the moment.

    Hi CDesign2,
    If I understood you correctly, you are either trying to
    View your xml data in Adobe LiveCycle form to redit the form???
    View your xml data in Adobe acrobat pro
    Or wishing to collate updated(new) data into adobe (lifecycle) tracker and view the data set
    I suspect points 2, 3 may be the case.
    My experience with migrating excel data back to adobe is this.
    If you created the original form with adobe, you have the option of distributing the form (file/form distribution..)
    to recipients list (could include form creator).
    This allows adobe to generate a distribution and form response file and therefore able to track returned forms either as pdf (preferably) or excel/xml converted back to pdf after saving it.
    For Point 2 above,assuming your original data set were created using an adobe form you previously saved, open your original form in acrobat pro, go to menu/forms/manage form data/import data (usually as xml). It automatically repopulates the form.
    OR
    To view returned forms as a set, go to menu/forms/compile returned forms and this will bring up a window that
    requires you
    -to browse and locate your response file (essentially defining the index form),which is opened into the top row
    -then find and add each new completed form into a list in the second row.
    You then click ok and all returned forms are opened in a tracker window...
    I just realised I am talking about liveCycle ES version8 and this forum refers to pre ES!
    I am not sure if this helps but I hope it answers some of your questions.

  • Fastest way to fill an InDesign table with data

    Hello,
    I have to fill several InDesign tables with the content of my database.
    I have the database in memory and fill the cells in two Loops (For Each row..., For Each col...).
    But it is so slow! Is there a faster way?
    Here a code snippet of the solution today:
                For Each row In tableRecord
                    Dim inDRow = table.Rows.AsEnumerable().ElementAt(intRow)
                    For Each content In row
                        Dim cell = inDRow.Cells.AsEnumerable().ElementAt(content.Index)
                        cell.Contents = content.Value
                    Next
                    intRow+=1
                Next
    Thank you for help!
    Best regards
    Harald

    Hi, Harald!
    "This should be faster: table.Contents=Array. Or not?"
    Surprisingly is was not. It was slower. A lot slower.
    The array was gathered by (here ExtendScript(JavaScript) dummy code) :
    myArray = myTable.contents;
    Then I did operate on the array. Not on the table object or its cell objects. No direct access to InDesign's DOM objects. Just the built array.
    My text file was written by populating it with a string of the array:
    myString = myArray.join("separatorString");
    separatorString was something that was never used as contents in the table.
    Something like "§§§"…
    After importing the text file I used the convertToTable() method providing the separatorString as separator for the first and second argument with the number of columns as third argument. The number of columns was known from my original table.
    var myNewTable = myText.convertToTable("separatorString", "separatorString", myNumberOfColumns);
    Alternatively you could also remove the table after building the array and assign "myString" as contents for the insertionPoint of the removed table in the story. I think I tested that as well, but do not know, if there is a difference in speed opposed to placing a text file with the same contents (I think it was, but not I'm not sure anymore). So I ended up with:
    1. Contents of table to Array
    2. Array manipulation
    3. Array to String
    4. Write String as file
    5. Remove table
    6. Place file at InsertionPoint of (now removed) table
    Also to note: This was in InDesign CS5 with a very large table.
    Things could have changed in InDesign versions with 64-Bit support.
    But I did not test that yet. The customer I wrote this script for is still on CS5.
    Uwe

  • InCopy to determine length of article with InDesign template - possible?

    Hi, I was wondering if anyone knew whether it is possible to create a report template in InDesign CS5 (which consists of a header/title image at the top of each page) and export it to InCopy so my editors can determine the length of the article?
    So far I have only seen that it is possible for someone to use it as a standalone word processor (meaning that the editors cannot see the template headers etc) OR that I need to determine how many pages they can write in InDesign as create assignments from there.
    I would really like to be able to just create the background template and the editors/copywriters can do what they want in terms of length of text etc.
    The only workaround that I can see would be to create a 200 page InDesign doc with threaded text frames and the editors can type as little or as much as they like. I would then have to go into the template and delete the empty pages at the end of the process.
    Surely there is a better way?!!?
    Any help would be greatly appreciated.

    How essential are these images? You could theoretically start in InDesign, then export a text frame for them to work with, but with editors using the file over and over, you'd lose the previous content of the InCopy file every time.
    Why not start in InCopy? You can select a column width and even a depth when you open a new file. If you have your body paragraph style applied and save it as a template, your editors will know exactly how many lines they're running. If you set a depth, it will even tell them when they're over/under the desired amount. With Smart Text Reflow turned on in your preferences, it will add and delete pages as needed. Going this route and adding the images later seems like much less of a headache than trying to start in InDesign.

  • When I create a new polygon with applescript in in design cs4, I want to make a drop shadow

    when I create a new polygon with applescript in in design cs4, I want to make a drop shadow
    Is it possible?
    I am working with MAC OS 10.6.7 and CS4
    Can somebody help me?

    Adding a drop shadow should work fine regardless of shape… As Im a big fan of using styles everywhere I can…
    tell application "Adobe InDesign CS5"
    activate
    tell the active document
    set GotNoStyle to make new object style
    set properties of drop shadow settings of fill transparency settings of GotNoStyle to ¬
    {mode:drop, distance:3, angle:135, spread:0, blend mode:multiply, opacity:50, honor other effects:true, x offset:3, y offset:3, knocked out:true, use global light:false}
    set SomeFill to the last swatch
    tell the first page
    make new rectangle with properties ¬
    {fill color:SomeFill, geometric bounds:{10, 10, 30, 30}}
    apply object style (the result) using GotNoStyle without clearing overrides
    make new oval with properties ¬
    {fill color:SomeFill, geometric bounds:{10, 40, 30, 70}}
    apply object style (the result) using GotNoStyle without clearing overrides
    end tell
    end tell
    end tell
    You can then edit the object style to make global changes… Sorry my values were for my euro metric head…

  • Can not add function to pages-document created with Applescript

    If I create new document using the GUI (New document) I can place the cursor within any table-cell, type "=" (equal sign) and f.e. "2+2" which will result in a cell showing a "4".
    If I create a document with Applescript, I can not add new functions (neither by typing = nor by using Insert >> Function (may be different, I have German version here). Already existing functions (which already were in the template) can still be used and work as expected but can not be altered.
    Any idea?
    I use Pages '08, Version 3.03
    Code I used to create the document:
    tell application "Pages"
    launch
    make new document at front with properties {template name:templateName}
    # Angebotsnummer ins Dokument schreiben
    tell body text of front document
    make new paragraph at after paragraph 1 with data angebotsNr
    set paragraph style of paragraph 2 to "Überschrift"
    end tell
    # Datei abspeichern
    set dateiName to missing value
    repeat until dateiName is not equal to missing value
    set dateiName to text returned of (display dialog "Datei Name:" default answer angebotsNr & "_" & kundenName) as text
    end repeat
    save front document in angebotsOrdner & dateiName
    end tell

    I apologize but the given script can't run.
    The variable templateName is undefined.
    The variable angebotsNr is undefined too.
    About the described behavior, it's a bug which I never discover before.
    It's always striking in Pages '09.
    Here is the report which I filed :
    Bug ID# 8704270
    Summary:
    +Odd behavior of tables in Pages documents created by a script+
    +Steps to Reproduce:+
    +Run this huge script+
    +tell application "Pages"+
    +make new document at front with properties {template name:"Blank"} (* "Vierge" on French systems *)+
    +end tell+
    +Insert a table+
    +try to insert a formula+
    +Expected Results:+
    +I assumed that I will get the formula editor which I get when the document is created by hand+
    +Actual Results:+
    +There is no way to get the editor, no way to insert the equal character.+
    +This odd behavior strike in all versions of Pages '09 and Pages '08+
    Regression:
    +None to my knowledge+
    Yvan KOENIG (VALLAURIS, France) dimanche 28 novembre 2010 11:30:29

  • Xml? and Indesign template

    Hey all,
    Thanks in advance for any replies.
    I am working with a graphics designer to publish a "guide" of local businesses. I am the developer that made the database in which the data is stored in. We are using MySql and a simply designed frontend to input data.  Each business is stored into categories.  What we would like to achieve is to create an indesign template for the printed version of the guide.
    I have done some reading on the web and found some XML import tutorials for indesign. Where I find our situation different from the tutorials is in the fact that each category can have a dynamic number of businesses in it. In the tutorials they are using an XML file with the same amount of data for each instance of an object and are creating a single page for each object. (essential something like a mail merge for indesign)
    E.g.
    The tutorials have something like :
    3 people with Name, address, phone number...
    a template for "person"
    We have :
    3 categories with Name
    1 category has 5 businesses in it
    1 category has 2 businesses
    and 1 category with 16 businesses
    each business has a Name, address, phone number ...
    Looking for some way to make indesign import this data... The data could be XML or something else fairly easily as it is in a database and can be formatted with PHP.
    Desired output would be something like:
    ---Category Name---
    Bus. 1 info
    bus 2 info
    bus 3 info
    ---Category 2 Name ---
    bus 1 info
    bus 5 info
    bus 17 info
    Basically I would need to create a template with Some boundaries for my varriable number of children in each category.
    Any help what so ever would be nice,
    Again, thanks in advance for any replies
    Tom
    P.S. If i need to give more information just let me know

    """""If it's easy for you to do, and you know what categories each of your data fields would become, tagging them with a style name would save the designer a significant amount of time. It doesn't matter what the style names or definitions are -- that's easily changed in the layout -- but having the tags means you don't have to go through the doc and assign the styles manually. """""
    This was easy to do. You just saved them a lot of work.
    Thank you.
    reference i used:
    http://www.topchoice.pl/dtp/faq/specials/TaggedTextCS.pdf

  • How can I interact between two different frames in the same indesign template as well as from one template to another.

    I am looking for the best way (or any way) to interact between two different frames in the same indesign template as well as from one template to another. It's for a DPS app which needs to carry some button initiated data from one page to another and then present it in a table.

    There is no simple way to do it, as itunes wont let you use it on another computer without wiping the contents first.
    However if you really want to transfer songs to another computer then you could try this;
    * make sure that your ipod is accessible as a disk drive (ipod options)
    * when you plug your ipod into the computer you want to transfer to make sure you select "no" or "cancel" when it asks to wipe the contents. Leave the ipod connected and quit from itunes.
    * go to "my computer" and access the ipod directly. You probably have to select "view hidden files" from windows. You will see a lot of folders with odd names like ZX838aff with similar named files inside.
    * copy these files to a folder on your computers hardrive. Now remove the ipod and start itunes.
    * import the files from the folder you made in the last step.
    * Now your music is on itunes, but with unrecogisable names.
    This is the only way I have found to do it, but there may be another way, say with an application to do the hard work for you.
    Generic homebuild PC Windows XP
    Generic homebuild PC   Windows XP  

  • Trying to create a template with adjustable text fields.

    I need to creat a form or template with adjustable text and image fields.  I need to have a background template for multiple pages that when I make a change to the template it make the changes to all pages, like the master page of indesign.  I also need to have text and image fields that are specific to each page but the dimensions and placement are controled by the template,but the information inside is page spacific.  What program should I use and anyone know a tutorial for help?

    What you want would require elaborate programming or dealing with variables in Framemaker or InDesign (Server) to dynamically generate the output upon request. You can of course get part of the features using normal variables in ID e.g. to pull linked images based on some parameters, but generally your request sounds too complex to deal with all scenarios.
    Mylenium

  • Help with Applescript - filenames

    Hi!
    I hope there is someone who can help me. I have very little experience with Applescript, and have spent a couple of days scouring these forums amongst others without any luck...
    I have a folder (titled XLS) with about 1000 excel files in it. They are numbered basen on some parametric calculations (1111.xls, 1112.xls, 1113.xls, etc). I have constructed an Automator rutine which, one at a time, can open each excel file, copy some cells and then paste the data into an empty xml-file in TextWrangler. The empty xml-file is also in the XLS folder.
    What I am looking for is an applescript which can rename the open xml-file with the same filename as the xls-file. So, when 1111.xls is open, the xml-file gets renamed 1111-xml; when 1112.xls is open, the xml-file gets renamed 1112-xml, etc. Each new xlm-file is to be saved into a folder XLM, whivh is also in the XLS folder.
    Thanks in advance....
    Rob

    Se below; there are two folders on the desktop; "xls" (with xls-files in) and "xml", as well as the empty Template.xml file. Here it is!:
      --3 XLS to XML
              tell application "Finder"
                        set fileList to every file of entire contents of ("YourHD:Users:You:Desktop:xls" as alias)
              end tell
              repeat with i from 1 to number of items in fileList
                        set currentFile to (item i of fileList)
                        tell application "Microsoft Excel"
                                  set screen updating to false
      open currentFile
      activate currentFile
      activate object worksheet 1
                                  copy range range ("YourRange")
                        end tell
                        tell application "Finder"
                                  copy file "YourHD:Users:You:Desktop:Template.xml" to folder "YourHD:Users:You:Desktop:xml"
                        end tell
                        tell application "Microsoft Excel"
                                  set docName to name of window 1
                        end tell
                        tell application "Finder"
                                  set docName2 to text 1 thru ((offset of "." in docName) - 1) of docName
                                  set theFile to "YourHD:Users:You:Desktop:xml:Template.xml" as alias
                                  set the name of theFile to docName2 & ".xml"
      open file theFile
                        end tell
                        tell application "TextWrangler"
      activate
      paste
      close text document 1 saving yes
                        end tell
                        tell application "Microsoft Excel"
      activate
      close active workbook saving no
                        end tell
              end repeat
              tell application "Microsoft Excel"
                        set screen updating to true
      quit
              end tell
              tell application "TextWrangler"
      quit
              end tell

  • How to: Edit an INDT InDesign Template file?

    Hi,
    I am currently working on a packaging redesign project.
    I have received an InDesign template from a client that was previously created by another design house. They have added their logo and company details to the template, which I would like to remove in order to add my own.
    I have no idea how to edit the material in the template.
    Can anyone please advise me?
    Thanks in advance.

    Its not working Im afraid...
    The previous template has guides and crop marks etc, along with the contact details from the previous firm that I would like to shift or move.
    Following the steps you've described opens the template, but the content is still not able to be edited.
    Ive checked the layers palette to see if the layer is locked etc, but they are not. I simply cant edit the content.

  • Export PDF Workflow with Applescript and CS3

    Hello,
    I am setting up some PDF workflow with Applescript.
    On a given moment, as my script runs and after getting some user-input answers to questions in some dialogs, my script tells InDesign CS3 to open the Export Adobe PDF window for the current document. I copied and pasted that small part of the script:
    tell application "Adobe InDesign CS3"
    tell document 1
    export format PDF type to "Macintosh_HD:Test01.pdf" using "somePreset" with showing options
    end tell
    end tell
    When you run this small part of my Applescript, InDesign opens the Export Adobe PDF window (as expected) waiting for me to click on "Export". That is exactly what I want, since the user is given here a last opportunity to change some values (for example page range, or spreads). When all is set, the user can click on Export to close the dialog and finish the script.
    Problem: I was hoping that the Adobe PDF Preset "somePreset" would be selected in the first pull-down menu of the Export Adobe PDF window when this window is opened by the script. Unfortunately the last used preset is always selected by default. Anyone suggestions or help?
    Kind regards,
    Bertus Bolknak.

    My operators enter the page range and filename into a dialog box. Then I set those in the script. I use the Press Quality preset to start with and then set the changes I want into a export variable. I set things like bleed, marks, page range, etc.
    Here is an example:
    set theProps to properties of PDF export preset "[Press Quality]"
    try
    delete PDF export preset "Schmidt PDF"
    end try
    set theStyle to {name:"Schmidt PDF", acrobat compatibility:acrobat 7, bleed top:"0.125i", bleed bottom:"0.125i", bleed inside:"0.125i", bleed outside:"0.125i", page marks offset:"0.125i", include ICC profiles:Include None, effective PDF destination profile:use no profile, effective PDF X profile:"No Color Conversion"} & theProps
    make PDF export preset with properties theStyle
    set properties of PDF export preferences to theStyle
    set color bitmap sampling of PDF export preferences to none
    set grayscale bitmap sampling of PDF export preferences to none
    set page range of PDF export preferences to (item i of myPageList) as string
    export document 1 format PDF type to (PrinergyFolder & myJobNumFinal & "_" & VerCode & ".pdf") as Unicode text without showing options
    I am also doing this in Quark.

Maybe you are looking for

  • HDMI vs Mini DP vs DVI vs Thunderbolt

    I have a mid-2009 MacBook Pro with 8GB of RAM and a 2.26 GHz processor. When I connect to an external monitor and try to watch videos on youtube or netflix, I get choppy quality. This does not happen on my laptops display even while the external moni

  • How to change the language of itunes on my iPhone4

    I recently bought an iPhone 4 and the itunes language is set to korean or something and I can't seem to find any way of changing it to english. Can someone help me with that?

  • Live type - artifacts some times

    I have a half dozen live type titles all developed from the same basic set of elements- only differeing in the language on the titlesThe first set i place weeks ago they are all fine, this week i simply copied them and pasted them in another area of

  • Urgent - ORA-00439: feature not enabled: Partitioning - Windows

    i have downloaded the 11gr2 and installed in my xp laptop. Strange, i can't see the partition feature enabled. Any clue how to enable the feature in windows? In google search, i can find the solution for unix and linux but not windows CREATE TABLE T_

  • Mounting partition fails at boot time, but works after system is up

    **EDIT: ok, I know now the daemon array comes too late. Looks like I have to fiddle with initial ramdisk or mount the partition daemon-style. Which is recommended?** I have a fakeraid array which works well with device-mapper. I use dmraid as a daemo