Problem with indesign cs2

When i start my indesign problem i´ve recived a box that says
the installer seems to have written the wrong AUM application ID
I don´t know what to do to fix this problem and the program worked smooth as a charm until to day, it´s not expired or is a trail version.
I´ve installed the whole creative suite and it´s only the indesign program who won´t work.
I ve reinstalled it but it won´t work now.
I´ve also gone thrue my computer for viruses and things like that but that didn´t work either.
I´ve installed ad-aware - can that program have caused a problem ?

Ben,
Let me start with, I'm asking questions from a Mac perspective.
What are you using for font management? Are the fonts located in the same location on each machine? How are the fonts activated? (And, are the fonts auto-activated on each machine? Or is that just a Mac feature?)
>In addition, when someone uses a new font, it's only available locally.
I don't understand. That font is only installed on that one machine?
Depending upon your font license -- and it varies from font to font; even with different ways that identical fonts are acquired -- you can use a central server for your fonts, and specify privileges for each user. I use single license Font AgentPro on each of my Macs and like the interface. See if there is a server version for Windows available.
Neil

Similar Messages

  • Problems with Photoshop CS2 I originally purchased this software several years ago. At time I was running Microsoft Windows XP. This computer recently was replaced with  a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few

    Problems with Photoshop CS2
    I originally purchased this software several years ago. At time I was running Microsoft Windows XP.
    This computer recently was replaced with a Dell running Windows 8.I reloaded my CS2 on this computer & it ran fine with a few exceptions as follows;
    when the software comes up initially I get a message that says “could not complete your request because of program error”. Hitting OK allows me to continue using the software .
    When I try to activate a function using CTLR or ALT keys I get this message “required application failed to load and the product cannot continue. Please reinstall the application”. This causes the application to abort.
    Reloading my CS2 continues to generate the same messages when I depress the CTLR or ALT keys.

    Your original copy is obsolete and Adobe is offering a free replacement you are entitled to. Download and use that and that should clear it up for you.
    https://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.ht ml
    Download this copy of CS2 and use the serial number provided next to the download link.

  • Printing problems with InDesign CS3 running on OS 10.6

    I recently upgrade my old G4 Mac (OS 10.4) to a new Mac Mini running OS 10.6.6. I am still running CS3 and have encountered only one problem. When I print multiple copies documents from InDesign that contain several layers, each copy is processed separately, so that it can take several minutes just to send the print job to the printer if I'm printing over 20 copies. Then once the print job is processed the printer pauses between every copy, which is tripling the printing time. If I print a simpler document with only one or two layers it processes all the copies at once, as it should. I am printing on an Okidata 6150 color laser printer.
    I never had this problem on my old computer. I'm wondering if this is one of the "unsupported" bugs of running CS3 on Snow Leopard. I want to make sure that this is a problem unique to running CS3 with Snow Leopard before I go ahead and upgrade to CS4 or CS5.
    computer: Mac Mini core 2 duo 2.4 ghz processors, 4 gb RAM, printer: Okidata 6150 DN color laser printer.

    Hi again Peter
    It is version 5.0.4.  I updated it when I newly installed it a week ago in my new computer, and then again updated it just yesterday.
    I might mention that before I got my new computer, I was running Mac OS 4.11, and was using InDesign 3.0.  I had bought InDesign CS3 about a year ago, but hadn't gotten around to using it since version 3.0 had been working fine, and I was used to it.  Then, when I got my new computer, I decided it was time to use the newer version.  However, while using InDesign 3.0 with the old Mac OS 4.11, a printing problem popped up there, too, a few months ago... and it also involved printing problems with Adobe Reader.  I contacted Adobe, and they sent me a patch which fixed it.  I will contact Adobe again if need be, although I thought I'd start here first to see if it was a common enough problem that someone might be able to provide a free and routine answer.
    Richard
    Date: Tue, 15 Jun 2010 20:10:13 -0600
    From: [email protected]
    To: [email protected]
    Subject: Printing problems with InDesign CS3 with Mac OS 10.6.3
    I neglected to ask what version of indesign CS3 you are using. I also 
    notice that Mac OSX 10.6.4 has just been released. It actually 
    addresses some CS3-specific issues, though they seem to be related to 
    launching the apps, not printing. It may be worth trying to update, 
    nonetheless.
    Peter Truskier
    Premedia Systems, Inc.
    510-655-4454
    >

  • I have a problem with indesign cs6 and my epson 3880 on mac

    I have a problem with indesign cs6 and my epson 3880 on mac.  I need an older version of indesign but do not have a serial number....any suggestions?

    I see then I believe Kglad's advice is on track with starting with updating your printer drivers.  I have also moved this discussion over to the InDesign forum as the Users in this forum likely have additional suggestions.
    Also if you can please turn off your e-mail signature if you want to respond via e-mail.  Your responses are going to a public forum where the information is accessible by anyone.  I have edited your previous response to remove the signature.

  • How to place a word document in a TextFrame with InDesign CS2 scripting (JavaScript)?

    I´m newbie with InDesign CS2 Scripting (JavaScript). I need some help to understand the way to place a Word document in an indesign template, using JavaScript(.jsx).
    Thank you for the help,
    Peter

    //PlaceTextFileInFrame.jsx
    //An InDesign CS3 JavaScript
    //Places a text file in a text frame.
    var myDocument = app.documents.add();
    //Set the measurement units to points.
    myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
    myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
    //Create a text frame.
    var myTextFrame = myDocument.pages.item(0).textFrames.add({geometricBounds:myGetBounds(myDocument, myDocument.pages.item(0))});
    //Place a text file in the text frame.
    //Parameters for TextFrame.place():
    //File as File object,
    //[ShowingOptions as Boolean = False]
    //You'll have to fill in your own file path.
    myTextFrame.place(File("/c/test.txt"));
    function myGetBounds(myDocument, myPage){
    var myPageWidth = myDocument.documentPreferences.pageWidth;
    var myPageHeight = myDocument.documentPreferences.pageHeight
    if(myPage.side == PageSideOptions.leftHand){
    var myX2 = myPage.marginPreferences.left;
    var myX1 = myPage.marginPreferences.right;
    else{
    var myX1 = myPage.marginPreferences.left;
    var myX2 = myPage.marginPreferences.right;
    var myY1 = myPage.marginPreferences.top;
    var myX2 = myPageWidth - myX2;
    var myY2 = myPageHeight - myPage.marginPreferences.bottom;
    return [myY1, myX1, myY2, myX2];

  • Problem with InDesign CC redrawing the screen too slow while using Zoom tool

    Hello. I got a problem with InDesign CC redrawing the screen too slow while using Zoom tool. Sometimes it takes more than a secong to zoom in or out. However InDesign CS6, Photoshop CC, Illustrator CC works just fine. What could be the problem, videocard or something else? Below is my PC configuration: OS Windows 8 Pro (x64); processor Intel Core i7 2600k CPU 3,40GHz; video adapter NVIDIA GeForse GTS 450; monitor NEC PA271W (2560x1440).

    Yes it’s a bug. The trick is to select the tool and then left click the photo information strip and hold for a few seconds until you see the windows bar at the top of the screen (not responding)
    The lasso tool should then work normally.

  • Type problem with InDesign, especially CC.

    Hi. I'm experiencing a type problem with InDesign, especially CC. When I open a type box, the cursor appears in the top right hand corner. I can correct that by selecting 'range left' but when I paste or type in my copy, the final period of each paragraph appears at the beginning of the last line. This is drivning me up the wall as I can find a way of correcting it.
    Any ideas to solve this problem?
    Thanks

    Are you using a MENA (Middle East North Africa, Hebrew, Arabic, Farsi, …) version? Then restting woul not help.
    If not, you have to create a new document with the same Paragraph, Character and Object Styles (name should be identical) and import them into the other document to overwrite these style oddities.
    If you are working without styles? Create correct new styles and apply them.
    I doubt that resetting preferences will change here anything as paragraph properties from any existing document will not be changed when working with new preferences.

  • Problems with Illustrator CS2

    Argh! Suspected problem with Illustrator CS2...
    When I look in the Stroke/Fill boxes for colours, I have no options available to me. All that appears is this: http://www.ioimi.com/images/strokefill.jpg.
    Is this normal? All I want to do is selected different colours for the line stroke and fill colour of something I have already drawn using the pen tool.
    Also, how do I move or remove rulers once placed and why is it that if I use the arrow keys on the end of a line it moves it more than one pixel? How do I keep a line straight? It's so much easier in photoshop but I need to learn.
    Please help...
    Thank you!

    That is not the Color palette, it is the Swatches palette. It's where pre-mixed colours, gradients, and patterns can be stored and quickly applied. The file you are using has no swatches.
    You can add your own by loading swatches from any other Illustrator file or from the libraries that ship with Illustrator. You can also add a swatch by mixing a colour in the Color palette and either dragging the colour onto the Swatches palette or clicking one the New Swatch icon (The page icon next to the trash can).

  • Printing problems with InDesign CS3 with Mac OS 10.6.3

    I am not new to InDesign... I have CS3... but I am brand new to Mac Snow Leopard (OS 10.6.3).  Although I can open CS3 and use the application, I cannot print with it.  None of my other applications has printing issues... just CS3.  Any suggestions?
    Richard

    Hi again Peter
    It is version 5.0.4.  I updated it when I newly installed it a week ago in my new computer, and then again updated it just yesterday.
    I might mention that before I got my new computer, I was running Mac OS 4.11, and was using InDesign 3.0.  I had bought InDesign CS3 about a year ago, but hadn't gotten around to using it since version 3.0 had been working fine, and I was used to it.  Then, when I got my new computer, I decided it was time to use the newer version.  However, while using InDesign 3.0 with the old Mac OS 4.11, a printing problem popped up there, too, a few months ago... and it also involved printing problems with Adobe Reader.  I contacted Adobe, and they sent me a patch which fixed it.  I will contact Adobe again if need be, although I thought I'd start here first to see if it was a common enough problem that someone might be able to provide a free and routine answer.
    Richard
    Date: Tue, 15 Jun 2010 20:10:13 -0600
    From: [email protected]
    To: [email protected]
    Subject: Printing problems with InDesign CS3 with Mac OS 10.6.3
    I neglected to ask what version of indesign CS3 you are using. I also 
    notice that Mac OSX 10.6.4 has just been released. It actually 
    addresses some CS3-specific issues, though they seem to be related to 
    launching the apps, not printing. It may be worth trying to update, 
    nonetheless.
    Peter Truskier
    Premedia Systems, Inc.
    510-655-4454
    >

  • Problem with Indesign CC 2014 and tables

    Problem with Indesign CC 2014 and tables. The text rearranges itself when I delete or add something in a table; the footnotes to the text associated with the overlap even getting unreadable. Just click on the chain symbol in the window and everything is fine. Why?

    try circumventing your cc app and see if that helps:
    if you follow all 7 steps you can directly download a trial here:  Adobe CC 2014 Direct Download Links: Creative Cloud 2014 Release | ProDesignTools
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies.
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com).
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

  • Bizarre image load problem in InDesign CS2

    Hi, I am having a problem with bringing in some images into InDesign CS2. I have a document file that has many images in place, and I just received some new images that are screenshots from video. They are saved as rgb jpgs. They are 2700x1963 pixels and 300dpi (so someone obviously did some conversion from screen res.)
    When I try to bring them into an image box in InDesign, I do command D, then select the image. It acts like its loading it but then nothing is in the box. I thought perhaps the image was just hidden outside of the edge of the box but when I go to "fitting" under the "OBJECT" menu, all the options are greyed out as if there is no image there. It also shows no image linked in the links panel.
    I tried opening in photoshop and resaving, and also tried resaving as another name. I tried changing it to cmyk and adjusting the levels and resaving as tif. I tried making a new photoshop file and copy-and=pasting the image into it and saving. Still, no image will load in the image box.
    I feel like the images must have corrupted since they were sent to me as email attachments, but its so odd that they open in photoshop just fine. Any ideas?

    nevermind, people.
    my computer was having memory overload. on a whim I restarted the computer.
    BAM...no issue.
    You know what they always say, "When all else fails, restart your computer!"

  • Arial Black font problems in InDesign CS2

    Hi there,
    I'm having a bit of a problem with the Arial Black font in InDesign CS2.  I recently got a new computer running Windows XP. The computer has had  MS Service Pack 3 installed. When I installed my old fonts onto the new  computer and booted up InDesign, I noticed there was no Arial Black font, only Arial Black Italic. When I looked under the Arial group of fonts a Black version of the font was there, but on my old machine Arial Black is a separate font group. I've tried deleting the font cache and adding the fonts to the InDesign fonts folder as well, but it still doesn't register as a separate font family. I've also tried installing an older version of Arial Black (2.35 from 2004) and emptying the font cache but still no joy. The  problem is I work on a newspaper and this font is quite common, and is  used on our templates, so when I receive a page I need to change the  font, which isn't ideal. Interestingly, the file name of the font is  ariblk.ttf, but when you look at the icon it appears to be OpenType. The  Arial Black Italic font is called ARBLI__.TTF and has a TrueType icon, and this appears as a separate font family in InDesign. Any help would be much appreciated.
    Many thanks in advance.

    I'd give it a go anyway. And please keep in mind that CS2 is the earliest version eligible for upgrade pricing.
    At some point, if the current policy holds, you'll be out of the upgrade loop and will have to pay full price.
    Bob

  • Anybody having trouble with InDesign CS2 documents on a network drive?

    I just set up my Airport network at home (Airport Extreme base station, external hard drive plugged into the USB port, iMac G5 plugged into one of the Ethernet ports) and have run into a peculiar problem. When working on my iMac (connected vie ethernet) I open an Adobe InDesign CS2 document from the USB network drive. After a minute or so InDesign tells me something has gone wrong and it is shutting down. I immediately re-launch InDesign and it does its auto-recovery and immediately shuts down again. If I re-launch again and it asks if I want to begin auto recovery it immediately shuts down again. Only by telling it "no" to auto revoery can I break the cycle and let InDesign launch normally. However, if I then go to the file I was working on and attempt to open it, InDesign shuts down. I know that InDesign creates a temporary Lock file when you open a document. My guess is that somehow the lock file is getting corrupted and preventing InDesign from opening this file. InDesign documents are the only file types thus affected, Illustrator and Photoshop are fine. I have a second hard drive connected via Firewire and have never had any problems with files from it. My question is, what would be causing the problem on my network drive connectd to the base station? Am I the only one out there with this problem?
    iMac 1.8 GHz PowerPC G5 20   Mac OS X (10.4.9)  

    I just set up my Airport network at home (Airport Extreme base station, external hard drive plugged into the USB port, iMac G5 plugged into one of the Ethernet ports) and have run into a peculiar problem. When working on my iMac (connected vie ethernet) I open an Adobe InDesign CS2 document from the USB network drive. After a minute or so InDesign tells me something has gone wrong and it is shutting down. I immediately re-launch InDesign and it does its auto-recovery and immediately shuts down again. If I re-launch again and it asks if I want to begin auto recovery it immediately shuts down again. Only by telling it "no" to auto revoery can I break the cycle and let InDesign launch normally. However, if I then go to the file I was working on and attempt to open it, InDesign shuts down. I know that InDesign creates a temporary Lock file when you open a document. My guess is that somehow the lock file is getting corrupted and preventing InDesign from opening this file. InDesign documents are the only file types thus affected, Illustrator and Photoshop are fine. I have a second hard drive connected via Firewire and have never had any problems with files from it. My question is, what would be causing the problem on my network drive connectd to the base station? Am I the only one out there with this problem?
    iMac 1.8 GHz PowerPC G5 20   Mac OS X (10.4.9)  

  • Memory Problems with Photoshop CS2 - RAM not being utlized

    I am having memory issues with Photoshop CS2. I have a G5 dual 2.5 with 8 GB of RAM. PS CS2 keeps hanging on me when I'm doing fairly routine tasks with a fairly complex low-res .psd file. It includes several nested layers...etc.
    I noticed while running activity monitor that Photoshop is utilizing a very small percentage of my system's RAM. Approximately 475 MB of the total 8 GB RAM and 1.07 GB of harddrive space for the scratch disk. This seems odd as there is over 6 GB of free RAM while this is happening.
    I've uploaded a screen capture of my activity monitor while Photoshop is hanging. Note that the CPU percentage is above 98%. That's an awful lot of RAM going unused.
    http://www.tramad.com/Memory.png
    Any idea what's going on here? Could it be a corrupt file or font?

    Doesn't completely make sense as I've been using this particular machine for almost two years without any problems working in much more complex and much larger high-res .psd files. I doubt that's what the issue is here. I'm starting to think the file became corrupted...
    Hard to believe that Adobe/Apple haven't issued a fix for the RAM issue yet.
    I also run routine CRON maintenance using Cocktail and have no other issues with any software....

  • Problem with Indesign CC 2014 (Creative Cloud)

    I tryed to install InDesign CC 2014 (in a Mac) from Creative Cloud but the installation hangs in 17%... Checking the logs shows me that there is a problem with the file.
    Here is a screenshot of the logs
    If this is correct the selected text says that the file is corrupted...
    Note: This is the unique app that give me problems... I have installed Photoshop, Illustrator, Acrobat, Pro, etc. without any problem.
    Any idea?

    try circumventing your cc app and see if that helps:
    if you follow all 7 steps you can directly download a trial here:  Adobe CC 2014 Direct Download Links: Creative Cloud 2014 Release | ProDesignTools
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies.
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com).
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

Maybe you are looking for

  • Problem while selecting BELNR from BSEG

    Hi Experts, I have a report performance problem while fetching BELNR from BSEG table. I have to print latest BELNR from BSEG where BUZID = ‘M’ but at the time of execution of report, It is taking too much time (More that hour and sometimes it gets ha

  • Home sharing between Apple TV 2 & Windows 8

    I have my Apple ID on both devices but can't see my computer on Apple TV. Tried everything available on the support websites. Is there something else I can do other than smash it over the wall? Thats the only thing I haven't tried so far! I also trie

  • How to select data in one query ?

    I have a table "My_Table" with the data like below - order_seq      |ONE_CODE      |TWO_CODE     | ONE_VAL     | TWO_VAL 1          |ABC          |DDD          |1100          |1900 2          |PQR          |TTT          |5000          |3000 3        

  • SAP VB script for updating texts in purchase orders

    Hello, I am trying to create a SAP script for updating texts in purchase orders. It is in the last third - Item Detail,  Texts tab. The script is ok apart from the fact that it always deletes whatever text is in there and than add a new one. I would

  • CFMAIL with zip-attachment

    I have a function which creates some xls-files and pack it into a zip-archive, the created file is named 1234.zip and is saved at the server. This function works correct. After that the created file should be send by cfmail but when I receive the mai