Font's...manage through indesign server or os?

Hi,
I'm just getting started with InDesign Server, and working with packaged .indd file (i.e all elements in a nice folder structure).
My question is, if i'm uploading a new package onto my server, and want to use the fonts for that artwork, do I need to manually, or through some form of automation add the fonts to the windows server, or is there a function in the InDesign Server that deals with importing / loading fonts?
Any help much appreciated!
Many thanks,
Brett

You're pretty close, the outlined steps could work. Of course you'd have to add some more postprocessing steps - add or remove pages dependent on your conditional sections, let InDesign rebuild the index if you need one, eventually optimize the layout beyond the automatically maintained keep options.
With that number of produced documents your topmost issue will be speed. For that reason I'd try to not use IDML and outside processing - to open an existing document is much faster than to import it from IDML, and if you can reuse the same template document without close-open, it will be even faster. InDesign has many features such as conditional text, text variables, counters that could be utilized. Your script would then work straight on the document object model, given an input such as tab delimited text or xml.
It is possible to communicate from .net applications with InDesign, but here you should also run comparisons with VBScript and ExtendScript which both have the advantage to run within the InDesign process. There are also other advantages of VBScript and ExtendScript - controlling InDesign can be a bit inconvenient for strongly typed languages like C#, even though it is doable. The community and thus possible support is larger for ExtendScript.
Output will work in all mentioned formats. You might get along with a PDF-only workflow, but as you mentioned the print supplier may have special requirements.
Dirk

Similar Messages

  • JS InDesign Server CS2 - Search and Replace

    I am struggling to get a search and replace script to work on InDesign Server CS2.
    This works on my Desktop CS2:
    app.documents[0].search('xxx', false, false, 'yyy');
    but not through InDesign Server CS2.
    Can any one please help.
    Thanks
    Simon Kemp

    Thanks for all of the replies.
    This situation is that the company I work for has decided to consolidate some of the duties of our graphics departments.  People in one location will be dummying documents for people at another location.
    The paths to the images are UNC paths, which means they're pointing to different shares on different servers.  This cannot be changed.
    Also, the images at either location may not exist until days after the dumming process.
    During the dummying process, the application that's used to build the pages places empty ad boxes (placeholders) on the page.  The placeholders are text frames.
    I don't understand in what way, but the paths to the images are hidden inside the InDesign file.  From the users' standpoint, the placeholders simply display basic information about the ad (customer name, ad number, etc.) and hold the position for the images that will be placed later.
    It is not using script labels to apply the paths.
    So, this is why I describe the problem as needing to do a search and replace inside the InDesign file.
    As I mentioned before, I know this is doable.  I think I now see that the problem problem is figuring out how these hidden paths are being applied in the document.  My only thought was script labels, but this is not the case...

  • Why Does Indesign Server Keep Crashing?

    Hello,
    I'm using InDesign Server 6 to run a publication with multiple products. I'm using a 3rd party plug-in to automate the process with a XML data file. When I start the script I created to run the publication through InDesign Server it runs fine when  the data file has a few products (3 or 4), but when I tried to run the script with a larger XML file it crashes and I get the following error message:
    Has anybody else encountered this error using InDesign Sever? I know the Sharedcontent plugin error usually means there is a file compatability issue, but my template files were all created in CS5.5, so that shouldn't be a problem. Also I've tested this process on the the desktop version of InDesign CS6 and the same data file doesn't cause a crash.

    Well, you're not using the most recent versoin of CS6. Try upgrading to 8.0.1.
    Windows APPCRASH messages are nearly useless I don't suppose you could try it on a Mac or on a Windows machine with WinDBG installed...

  • Getting the default font - possible? (default fonts problem in InDesign Server CS5)

    Is there a way to decide whether a font is used as "default font" for a document?
    Or a simple way to see whether a font is used at all?
    The actual problem is that InDesign server (CS5 ver. 7.0.3.533) returns the "default font" along with all other used fonts, when looping through the document.fonts collection. This becomes a problem when the default font is never used in the document, and is also not present. Then the (name of) the default font may also become meddled by a style that does not even exist for that very font.
    This is indicated as a problem in our application... as a missing font, just as the call to InDesign server reports back. But the font (with that style) doesn't even exist.
    Running the same script on an desktop InDesign CS5 (ver 7.0.4) the unused default font of the same document is not returned at all.
    Thanks,
    Andreas

    To get the default font, just check:
    app.activeDocument.textDefaults.appliedFont
    Obviously this didn't solve the problem, since InDesign server has made up a font name that is reported as missing... and it's not equal to the default font. So there is some lack of logic in my previous description.

  • Problems with installation  Fonts into Adobe InDesign Server

    Hi,
    I have a problem to install the fonts into Adobe InDesign Server.
    I'm developing an application that manage the fonts, principally It's move font file to directory Fonts of Indesign Server. That works.
    The problem is that InDesing spends more than 10 seconds to detect it. I need that it works inmediately.
    How can I do it? Can I load the font with SDK?
    Thanks for your help
    Best Regards

    app.updateFonts()
    Harbs

  • InDesign Server to manage reporting services

    Hi, Im looking for help/guidelines regarding InDesign. I'm a software architect working on a line-of-business application that will eventually require printing about 5 hundred thousand personalized report (of about 20 pages each) over a couple of days (and many other smaller jobs), and my client requires that this job be executed by a third party. Think of the document as a fairly standard financial report printed once a year for each participant. The application is built in .net, backed by a sql database. Once a year, the data is mined, computed, and outputed in a format acceptable by the supplier (who is chosen through a public tendering process).
    So from what I've learned thus far, to be complient with most suppliers, I must use some file format like postscript or eps, and to do this, it looks like InDesign Server might be what I'm looking for.
    So here is what I've figured out so far (and where I will need your help if I'm not making sense) :
    - Create a kind of IDML template using InDesign on a desktop computer
    - in our .net application, modify the IDML for each participant to personalize it (a lot of conditional code to remove sections of text, and inject numbers, etc).
    - Send each (or a batch is feasable) to the InDesign Server to prepare for publishing into postscript/eps files
    - and if feasable, also create a PDF of each because we need to keep a digital version of the document on the client's corporate SharePoint (for legal reasons).
    Is this how InDesign should be used? Am I making any sense?
    Thanks in advance for all the answers.

    You're pretty close, the outlined steps could work. Of course you'd have to add some more postprocessing steps - add or remove pages dependent on your conditional sections, let InDesign rebuild the index if you need one, eventually optimize the layout beyond the automatically maintained keep options.
    With that number of produced documents your topmost issue will be speed. For that reason I'd try to not use IDML and outside processing - to open an existing document is much faster than to import it from IDML, and if you can reuse the same template document without close-open, it will be even faster. InDesign has many features such as conditional text, text variables, counters that could be utilized. Your script would then work straight on the document object model, given an input such as tab delimited text or xml.
    It is possible to communicate from .net applications with InDesign, but here you should also run comparisons with VBScript and ExtendScript which both have the advantage to run within the InDesign process. There are also other advantages of VBScript and ExtendScript - controlling InDesign can be a bit inconvenient for strongly typed languages like C#, even though it is doable. The community and thus possible support is larger for ExtendScript.
    Output will work in all mentioned formats. You might get along with a PDF-only workflow, but as you mentioned the print supplier may have special requirements.
    Dirk

  • Indesign server not recognising fonts.

    Hi Experts,
    We are generating pdf by running Indesign client plugin on indesign server.
    We are able to generate the pdf but correct font is not recognised.
    We have placed font in
    c:\programe files\adobe\indesign cs5 server\fonts\avery.lnk
    the avery.lnk pointing to one of our shared folder placed on other IP adress machine.
    whereas if we place font files directly to
    "c:\program files\adobe\indesign cs5 server\fonts"  fonts are recognised, but not from avery.lnk.
    We checked that avery.lnk is correctly pointing to our repository where we have kept out fonts.
    I will be highly thankful for any reply.
    Thanks& Regards
    sameer

    Are you sure you haven't converted everything to outlines?
    Not sure what else you could try apart from the standard trashing your prefs or cleaning by exporting but if those don't work post this question on the Indesign forum, you'll get far more people answering there.

  • InDesign Server configuration and fonts

    When you start multiple instances of InDesign Servers you specify the different configuration names.
    Is it possible that 2 instances of InDesign Servers running on the same server with different configuration names have different fonts installed?
    I.e. can I install some fonts of configuration level, not for the entire server?

    There is no document titled "InDesign Server Installation and Configuration Guide". This was an error in the CS2 version of Introduction to InDesign Server.
    You'll find the CS2 version of Introduction to InDesign Server in the InDesign Server CS2 ESD (the server download bundle). Even better you'll find the CS3 version in the InDesign CS3 Server SDK. Available at the following URL:
    http://www.adobe.com/devnet/indesign/
    The information about Java/CORBA is specific to CS3, but the information about scripting and SOAP applies to CS2.
    Let me know if that helps, or you still need something else.
    Regards,
    Heath Lynn
    Developer Technologies
    Adobe Systems

  • Transaction log backup through SQL Server Management studio

    Dear All,
    I need to configure transaction log backup through SQL server management studio.
    It is already being configured for our PRO server(not by me) and now I want to configure it for DEV server.
    In PRO I am taking it through(SID/right click/task/backup)
    Then under backup type only full and differential option is coming for DEV.
    Whereas for PRO all three(full/differential/transaction log) is coming.
    Please suggest how to do it for DEV.
    helpful suggestion will be duly rewarded.
    Regards,
    Ashutosh

    Hi,
    Just go to the database you want
    right click then properties then options
    then set recovery model to full.
    Hope this helps .
    Regards,
    Vamshi.

  • InDesign Server fonts are locked even after document closed

    Hi!
    We get "file in use" messages from windows, after installing latest InDServer update.
    We create packages from open documents, on the server, then we close the documents.
    After that a piece of code is to move the package to another location. This "move" fails now, after installing the update called 7.0.3.533.
    That upgrade was also called: Adobe InDesign Server CS5 Release Update 7.0.3 WIN
    Screen-shot: Manually repeating the MOVE FOLDER method call.
    Is this a known error? What can be done?
    The InDesign documents are using "document fonts", that is these fonts should be local to the document.
    We also could find no specification of the changes implemented in 7.0.3.533.
    Best regards,
    Andreas Jansson

    Hi Folks,
    I'd forgotten about this particular problem, but here I am again as I still have no solution for it. On a number of documents, I am now seeing a number of frames contain a large number of links and I cannot see a way to access them to remove them (whether this be by changing the resource state, I don't know).
    Earlier on I tried something simple by simply getting hold of ILinkManager and calling QueryLinks(). As expected it returned no links! Another aspect of this issue can be seen in the screenshot below - there are no links, yet the tooltip specifies that there are 2 unique links (I imported tagged text into the same frame twice).
    I now have two projects using slightly different approaches to importing tagged text. One uses IImportSuite::DoImport() as mentioned before and the other uses IImportResourceCmdData\IReplaceCmdData. Both import with no problems apart from this annoying side-effect.
    Has anyone got any ideas?
    Thanks in Advance,
    Andrew

  • Invoking Indesign server plugin through script

    Hello,
    I have built a Indesign server plugin which was made to run with desktop Indesign application also. I wrote a javascript in which an event was fired. Plugin was supposed to handle the event. When I run this javascript, desktop plugin gets invoked rather than the server plugin.
    I don't know the way by which an Indesign server plugin gets invoked.
    Please help me getting aware of the flow it follows.
    Thanks,

  • InDesign Server Automation

    I'm looking into purchasing InDesign Server for the document automation features. One feature, Data Merge, would be a tremendous help for our company.
    I'm having some trouble setting it up with a script.
    Here's what I have running, just a basic test.
    var myDocument = app.open(File("C:\\inetpub\\wwwroot\\indesign\\test.indd"));
    with (app.dataMergeOptions) {
    linkImages = true;
    removeBlankLines = false;
    createNewDocument = true;
    documentSize = 100;
    } // (end of dataMergeOptions)
    myDocument.dataMergeProperties.mergeRecords();
    myDocument.exportFile(ExportFormat.PDF_TYPE, File ("c:\\inetpub\\wwwroot\\indesign\\merged.pdf"));
    myDocument.close ();
    In the file I had it linked to a csv that pulled data but it seems the link has been broken (or out of date according to the error).
    Can anyone help me with what I am doing wrong or even provide a better method?
    I am running the script through PHP via SOAP in IIS running on Windows 2008 R2
    InDesign Server CC 2014

    Thank you for your post Loic.Aigon.
    After I stumbled upon this post javascript - InDesign Script: export to IDML - Stack Overflow I found the option dataMergeProperties.selectDataSource(csv file).
    Here's my updated code, sorry for the missing formatting.
    var myDocument = app.open(File("C:\\inetpub\\wwwroot\\indesign\\test.indd"));
    var myDataSource = File("C:\\inetpub\\wwwroot\\indesign\\test.csv");
    with (app.dataMergeOptions) {
    linkImages = true; 
    removeBlankLines = false;
    createNewDocument = true;
    documentSize = 100;
    } // (end of dataMergeOptions)
    myDocument.dataMergeProperties.selectDataSource(myDataSource);
    myDocument.dataMergeProperties.mergeRecords();
    app.activeDocument.exportFile(ExportFormat.PDF_TYPE, File ("/c/inetpub/wwwroot/indesign/merged2.pdf"));
    //myDocument.save(new File("C:\\inetpub\\wwwroot\\indesign\\mergedOutput.idml"));
    myDocument.close ();
    if I run myDocument.exportFile(ExportFormat.PDF_TYPE, File ("/c/inetpub/wwwroot/indesign/merged2.pdf")); then it tries to merge but throws a warning [link manager Link out of date: file: and links the original csv file it was created with (not my referenced data source file).
    I believe I should merge on the active document and not the original document.
    But if I run app.activeDocument.exportFile(ExportFormat.PDF_TYPE, File ("/c/inetpub/wwwroot/indesign/merged2.pdf")); it throws a javascript error, app.activeDocument is undefined.

  • InDesign Server :line 13: 2753 Bus error "$installed_name" "$@"

    [InDesign Server CS4, CS5, CS5.5    line 13: 2753 Bus error "$installed_name" "$@"]
    We support a few clients on various version of InDesign Server and all have exactly the same issue upon having the application produce PDF files...   line 13: 2753 Bus error "$installed_name" "$@"   which causes InDesign Server to unexpectedly quit.
    Searching these forums we have found CS3 instances of this error message pointing to fonts not loaded on the machine running InDesign Server, but no "this is what we did to fix it" solution has been found.
    Our customers are running beefed up MacPros or Mac Minis with Mac OS 10.6 (non server) and OS 10.7 (server), 8GB - 16GB RAM, 1TB HD
    For font management we have the following being utilized:
    - Universal type server
      - if no plugin exists for InD Server, not sure how much this app will help manage fonts
    - Suitcase Server
    - if no plugin exists for InD Server, not sure how much this app will help manage fonts
    - Loading all fonts into:   /Users/*/Library/Fonts
      - seems to be the best option for font management on a system running InDesign Server
    Our company develops a plugin for InDesign Server and allows regular InDesign to produce the pdfs in a similar manner.  Running our plugin under regular InDesign we DO NOT have these issues of BUS errors, yet as soon as any of our customers utilize InDesign Server, they all immediately see BUS errors.
    We have written a shell script that quits (normally) indesign server, and relaunches it (if quit abnormally) so that we have some semblance of an "always on" InDesign Server application, but this is merely a band-aid fix for a bigger problem.
    We are pointing the finger at Adobe InDesign Server being the problem here, yet our customers do not care where the blame is placed, we are seeing a solution for them in any fashion that presents a permanent solution.
    Julio Vasquez
    Product Specialist @ Comosoft, Inc.

    Hi Julio,
    I am having the same exact problem. We are evaluating the InDesign server and will consider buying it only if it performs reasonably stable. This "installed_name" "$@" is baffling us.
    Team Adobe InDesign Server: Kindly address this concern soon!
    Varun

  • 5.0.2 dot release available for InDesign Server

    The 5.0.2 Dot Release for InDesign, InCopy and InDesign Server is now live on Adobe.com and available through Help>Updates. This update provides key fixes in the areas of Anchored Objects, Character Alignment, Step and Repeat, Indexing and Table of Contents, Text and Fonts, Dictionaries, Color, Scripting, Import/Export Graphics, InDesign Interchange files (INX), XML, Library files, Printing, and others.
    For a full list of resolved issues, please see the Adobe InDesign CS3 5.0.2 ReadMe.pdf at http://www.adobe.com/go/id5_readme.
    This installer includes fixes from all previously released InDesign CS3 5.0.x updates. Note that the previous InDesign 5.0.x updates are no longer available separately.

    Kuassi,
    I see that files "javadoc.zip" and "demo.zip" report the same file sizes for both 10.2.0.2 and 10.2.0.1 versions. Are the 10.2.0.2 versions of these files identical to the 10.2.0.1 versions?
    Thanks,
    Avi.

  • Indesign Server Licensing

    I am looking into purchasing a 3rd party product for doing dynamic date publishing using Indesign. The vendor is telling me in order to be complaint with Adobe I need to purchase an Indesign Server license even though the 3rd party application doesnt need it. It will basically sit on the shelf and collect dust. The vendor isnt even looking for us to purchase Indesign Server through, so its not like they are making any money.
    Just doesnt make sense on why I would need to purchase it. I have tried calling Adobe sales reps numerous times and either no one knows the answer or I never get called back from the people who are supposed to know the answer.
    I figured this was the best board to post this on, not sure if it would be better somewhere else.
    Does anyone have any insight into this? Any response is greatly appreciated.
    Thanks!

    I had trouble - the instructions send you down some confusing paths - but I got it working eventually. The "Installation Instructions.pdf" file indicates you need to activate the trial with Adobe Provisioning Toolkit Enterprise Edition (APTEE), but sends you to a link that says nothing about APTEE. It turns out you can find APTEE in a download called Adobe Application Manager Enterprise (AAME), which doesn't say much about APTEE, but does install APTEE in "C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\Enterprise\utilities\APTEE\CS6". You don't actually need to create a distribution package of the product installer with the UI of the installed AAME software as you might be led to believe; in the folder above is a command line tool, for which the "indesign-server-cs6-release-notes.pdf" file provides incorrect command line information regarding how to activate the 90 day trial (spurious spaces at line breaks and in command line options that are supposed to be "--" not "- -"). The actual correct command line I used successfully to activate the trial was "adobe_prtk --tool=StartTrial --leid=InDesignServer-CS6-Win-GM" .
    It really shouldn't have taken that much figuring out (especially since the InDesign Server CS6 installer itself has a UI which suggests you can just choose an option for trial mode). You can only get on the right track by reading and then ignoring the instructions, and searching around for the right download on the Adobe site.
    Glenn

Maybe you are looking for

  • Setting up of UME

    Hi, If the User Management Engine is correctly, that is the connection test has passed in System Administration -> System Configuration -> UM Configuratin -< SAP R/3 System, will I be able to search for the users in my back end SAP R/3 System directl

  • Match resolutions/aspect ratio of two different cameras

    I shot a short video with an iPad 3 and a Sony DCR-DVD-403 NTSC. The video from the iPad is fuller and wider than the footage I shot with the Sony Cam. 1. I just need them to be the same size as I edit.  So that I can produce this project with all vi

  • PDF to Word.doc Converter and vice versa

    Hello! I am in need of a program capable to convert PDF files to Word documents and vice versa (eventually, a program for each way). The converter needs GUI and must handle images, tables etc. (not just plain text). Does anyone have any tip concering

  • Could using UK plug cause overheating?

    I have had my macbook pro for about 5 months, no overheating issues. I have recently had to come to the UK for work, so I bought Apple's adaptor kits, and plugged in over here no problem 3 days ago. Yesterday, I came home from an afternoon out to fin

  • Date picker format

    Hi, I have a Date Picker in my view and its default date format is mm/dd/yyyy. I want to change its format to dd/mm/yyyy. Any way to change its format? Rewards waiting for the right ans. vinod.