Quantcast
Channel: Adobe Community : Popular Discussions - InDesign Server Developers
Viewing all 20709 articles
Browse latest View live

Problem printing documents from a Script

$
0
0

Hello, I have developed a JavaScript for InDesign Server CS6.
The JavaScript take the InDesign document and send it to print to a poscript printer.
Usually the script works correctly, but after some executions it appear the error message "There is a problem with the font "---------"".

At the beginning I thought that the font was corrupt but it makes no sense because if I restart the InDesign Server and launch the execution with the same document, It works correctly.

I have reviewed the script, and we are sure that the script is correct.

The documents should be correct because if I launc any document after restarting the application It works OK.

The fonts seem be OK, following the same reason that I say about the document.

So we don't know where is the problem but it is an important problem.

could someone help me?

Regards


InDesign Server CC Mac problem licensing

$
0
0

Hi all.

 

I'm trying toactivateInDesign ServerCCbutI am havinga lot of problems.

 

- MacOSX 1.8.5 Server.

- Adobeindesignserver 9.2 Debug 1_23


First of all, the package contains just a folder, not an installer.

So I suppose all I have to do is copy the content in the Applications folder.

 

In the folder I found tree different executable files:

InDesignServer.app

InDesignServer.command

indesignserverconsole.command

 

I tried toactivateInDesignwithall the methodslistedhere:

http://helpx.adobe.com/it/indesign/release-note/indesign-server-cc-release-notes.html#Requ isiti%20minimi%20di%20sistema

 

adobe_prtk --tool=StartTrial --leid=InDesignServer-CS7-Mac-GM

adobe_prtk --tool=Serialize --leid=InDesignServer-CS7-Mac-GM --serial=<MySerial> --adobeid=<MyID>

adobe_prtk --tool=Type1Exception --accept --serial=<MySerial>--responsecode=<MyResponseCode> --leid=InDesignServer-CS7-Mac-GM

 

All attemptsended with: ReturnCode = 0 but InDesign still do not start.

The error is always the same:

"Adobe InDesign Server is not properly licensed and will now quit"

 

On this server is installed also IDServer CS5, can it be aproblem?

 

I hope someone can halp me.

thanks Ivan.

trouble opening cs6 files

$
0
0

i did my portfolio on cs6 and i have 3 different saved files but everytime i try to open it, it says that it was created on cs7 so is there anyway for me to open them because i really dont want to start over

Single Instance to Multi Instance licensing

$
0
0

Is it possible to upgrade from single instance license to multi instance license? If yes, what is the cost involved?

where are adobe fonts installed in Mac OSX?

$
0
0

Hi,

I need the same Adobe fonts in Photoshop CS6 and InDesign CS6.

Where are they installed in OSX?

Do my Adobe programs install fonts in a different folder than other programs do?

VS not able to find VersionedScriptElementInfo during compilation.

$
0
0

Hi,

I am trying to make my plugin scriptable but VS2010 is not able to recognize the resource VersionedScriptElementInfo in my .fr file and I am getting the below error:

 

error R32735: # Error: Bad resource kind 'VersionedScriptElementInfo'.

 

Do I need to include some header or another resource to fix this?

updating internal links crashes IDS

$
0
0

Hi,

 

The relevant flow is that a indd document is passed to the Indesign Server where I have to try and update outdated links before exporting to PDF.

 

This in Windows (7, server, doesn't matter)

 

For each link in the document, I am trying to do this (javascript)

 

if (link.status == LinkStatus.linkOutOfDate) {

    try{

      link.update();

     

    }

    catch(error){

      app.consoleout("Error trying to update links ...");

      app.consoleout(error);

    }

}

 

 

The indesign client is able to update the links fine.

Problem is if the links are internal, meaning link.linkType is "type Internal Linked Story" or "type Internal Linked Object", the script above crashes the indesign server instance with the following.

 

 

Faulting application name: InDesignServer.exe, version: 9.0.0.245, time stamp: 0x51acf1d4

Faulting module name: GENERIC PAGE ITEM.RPLN, version: 9.0.0.245, time stamp: 0x51acf472

Exception code: 0xc0000005

Fault offset: 0x000000000010b65a

Faulting process id: 0x1b48

Faulting application start time: 0x01cfd83481a0cfef

Faulting application path: c:\Program Files\Adobe\Adobe InDesign CC Server x64\InDesignServer.exe

Faulting module path: c:\Program Files\Adobe\Adobe InDesign CC Server x64\Required\GENERIC PAGE ITEM.RPLN

Report Id: ccc9d9af-4427-11e4-8324-b1ee80b6158b

 

Am I doing something wrong with the link.update? It works fine for external links.

 

thanks

Cristian

INDESIGN SERVER GET LOCKED ON EXECUTING SCRIPT

$
0
0

Hi

Is there any method in jsx to unlock the indd file from indesign server.

currently indesign cc 2014 server is locking the indd files generated due to linking error in the server logs.


Using pdf preset file in Indesign server

$
0
0

Hi,

Using pdf preset as a input file to generate pdf files using indesign server . It gives the error as per below

rrmsg=PDF error:Invalid value for parameter 'using' of method 'exportFile'. Expected PDFExportPreset, but received FALSE

 

pdf preset file used is as Adobe PDF Preset 1.joboptions

 

Any workaround to fix the above error msg ???

InDesign Preferences on InDesign Server

$
0
0

I'm currently working on automating document generation using InDesign Server.  We've set some preferences in the regular InDeisgn while creating the template regarding how pages are inserted when text overflows the current page.  How can I carry over this preference setting from the client version of InDesign to the InDesign Server settings?   As it stands now, the document looks correct when viewed on the client with the preferences set, but incorrect when the document is generated on the Server itself.

Licence InDesign Server

$
0
0
Hello

I live in Brazil and the care here ADOBE to InDesign Server is very bad. So I have some questions for you:

1 - How much does it cost on average leave the IDS?
2 - What requirements to get a test version?

Thank you

Exporting to JPEG and keeping the bleed

$
0
0
How do i export my indesign file with bleed into a jpeg then bring it into photoshop while retaining this bleed?

Passing parameters from plugin to script

$
0
0

I need to pass some parameters from a plugin to a script. I have tried this method:


    PMString engineName("myengine");
    PMString scriptString("C:/Program Files/Adobe/Adobe InDesign CS4 Debug/Scripts/IterateFolder.jsx");
    IDFile scriptFile;
    scriptFile.SetString(scriptString);

    PMString value("c:/windows");
    ScriptData param1;
    param1.SetPMString(valor);

 

    ScriptIDValuePair argument1(0, param1);
       
    ScriptRecordData arguments;
    arguments.push_back(argument1);
    ScriptData result;
    PMString errorString;
    ScriptData scriptFileData(scriptFile);
    int32 errorCode=Utils<IExtendScriptUtils>()->RunScriptInEngine( engineName, scriptFileData, arguments, result, errorString);

 

 

The problem is that I don´t really kwno how can I get the parameters in my script. I suppose it must be something like app.scriptArgs.getValue(), but i don´t really know. Could anybody help me?

 

Thanks,

 

Alvaro

Make online editor

$
0
0

Hellow. I have a system that is a catalog. I want make some functions to load data from database to form for online edit a template and after that to export to InDesign for printing. Do I need InDesign Server for that and how I can to use it for web (php,ajax,ExtJs)?

How to speed up InDesignServer performance

$
0
0

Hello everyone.

 

I have some critical problem, so I want you help me.

 

My project using Flex and InDesign Server to produce pdf.
Plex in the form of the xml passed to the server and
InDesignSever open template file(*.indd) and  process the xml information and submitted to create a pdf.

The problem is speed.

InDesignServer to read the template file takes a second.
To modify one second, and creating and storing pdf takes a second.


It can take 3 seconds total. How to handle it in 0.5 seconds suggestions?

 

Thank you,

Lion, J


[CS5 Windows] LBQ crashes Java

$
0
0

Hi all,

 

I'm trying to follow the instructions in the "Working With Load Balancing and Queueing" document for CS5 server. I've run four instances of ID Server using the recommended CORBA parameters in that document. Then I started LBQ by running the "clover.cmd" batch file (after tweaking it a bit, because they forgot to set the JAVA_HOME path). All seems well.

 

However, when I ping the LBQ as recommended, by opening this URL:

 

http://localhost:8080/com.adobe.clover.application/api/GetVersion

 

I get a message that Java has crashed. Specifically, it says "Java(TM) Platform SE binary has stopped working." Then Windows helpfully offers to find a solution (I've never actually experienced Windows finding a solution, ever). Of course then the browser request times out, and we're back to using QuarkXPress.

 

This is using Windows Server 2008 R2 Standard, Service Pack 1 (say that fast, 3 times), and InDesign CS5 Server 7.0.0.355.

 

I thought perhaps the Java version was suspect, so I uninstalled it (both 32- and 64-bit versions) and installed fresh versions from www.java.com. Still the same problem. Then I thought, maybe it needs more memory, so I changed the command line -Xmx parameter from 512M to 1024M. Still the same problem.

 

The problem isn't InDesign Server, because it never actually gets to that point; it's in the LBQ Java code (I think) and/or some mystical Java configuration.

 

So I'm stumped. Has anyone successfully used Adobe's load balancing solution as documented?

 

Thanks in advance for any advice.

 

Regards,

Chuck Weger

Simply open a file

$
0
0

Hi,

 

This is my first attempts to script IDS. I am stuck with the simpliest command: open a file.

 

app.open(File(myFilePath));

 

It returns an error.

 

<IDSP:RunScriptResponse><errorNumber>1</errorNumber><errorString>open</errorString><scriptResult></scriptResult></IDSP:RunScriptResponse>

I first developed on Indesign desktop and the script just works fine. I read the IDS scripting guide so I am aware of restrictions and I think I avoided them.

Is there anything to be aware of for opening files ?

Best,

Loic

Why can't I download Indesign CC? It keeps saying I have a server error.

$
0
0

I just purchased the cloud...I have been trying to download Indesign CC and everytime it asks me to login, I do as such, and then it tells me that an Unknown Server has occured. This has been going on for quite some time...is there something wrong with my compatibility? Is there a direct link that can be provided to download Indesign? And I am not talking about the trial. Is my fire wall blocking it or what? Because I have purchased the cloud and I feel like I'll be wasting my money if I can't even download anything. If there is another way to download the programs, can I do that without accessing the website?

Clover is not responding to any command

$
0
0

Hi

 

I'm running "Adobe InDesign Server CC 2014 trial" on Windows Server 2012 R2 (All 64 bit)

As I started Clover after running indesign server, I sent command via RESTful; but clover seems inactive to receive commands.

 

(I checked many times IOR and IDSQUEUE properties file, seems no mistakes.)

 

I can successfully run the same in my pc. Please find the attached screenshot of "Clover".

Could anyone help me to understand the issue / suggest a troubleshooting method.

 

InDesignServer-CloverIssue.png

Thank you

Ays.Hakkim

Problems with reading font

$
0
0

Hi everyone!

We are working with InDesign Server CS4 and there is a strange problem. I have a document with some different Frutiger Fonts (black, italic, ... ). The fonts are installed on the System and when I open the document with InDesign it's working fine and InDesign finds the necessary fonts.

When I read the same document with InDesign Server there comes an Exception (com.adobe.ids.IdsException: IDL:com/adobe/ids/IdsException:1.0).

 

I use following code:

Font font = doc.getNthChildFont(x);
String fontName = font.getName();                         // working
String fontLocation = font.getLocation();                // --> exception
String fontPostScriptName = font.getPostScriptName();     // working
String fontStyleName = font.getFontStyleName();          // --> exception

 

Usually this works but somehow not with one document.

I already created a new Document with the same fonts and then .getLocation() works fine and finds the font on the system.

 

Does someone know why this could happen?


Many Thanks and Regards!

Viewing all 20709 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>