Default Locale won't carry over to Adobe Acrobat Language Property

Repost from http://forums.adobe.com/thread/340914 . I have the same problem and have searched everywhere.  Any suggestions?
In LiveCycle Designer ES, you can set the default "Form locale" under "Defaults" on the File Properties page.  This is essentially the default language for the form.  The problem comes when you generate a pdf from the form.  Regardless of this setting, if you view the Advanced tab under the pdf's document properties, the field "Language" under Reading Options is blank, and greyed out - you cannot change it.  This is the field Adobe uses to check for accessibility- if it is blank it gives an error message upon an accessibility check reading "the form lacks a language specification".  I have searched all over this forum and all over the web trying to figure out how to correct this with no luck.

Hi LBarton,
Have solved this issue? I have exactly same issue with PDF generated using Livecycle Designer ES2. Adobe documentation says following:
In LiveCycle Designer, setting the primary language is accomplished by setting the Locale property of
the form and the Locale property for the top-level subform. To identify changes to the primary
language, change the Locale property for any object that uses a language other than the form’s
language.
To set the Locale property of a form:
1. Choose File > Form Properties and select the Default tab
2. Select the appropriate language for the Form Locale (see Figure 17)
3. Click OK
But this doesn't work. Let me know your experience.
Thanks.

Similar Messages

  • How do I change my default .pdf viewer in Firefox BACK to Adobe Acrobat ?

    HMRC website forms will not open in foxit. How do I change my default .pdf viewre in Firefox BACK to Adobe Acrobat ?

    AWESOME - PROBLEM WAS, AT THE TIME ADOBE AND FOXIT FILE TYPES WERE NOT APPEARING IN MY TOOLS/OPTIONS/APPLICATIONS TAB - THIS IS A MYSTERY . . . .

  • Changing Applications default content type for e.g fro Adobe Acrobat 7 to Adobe Acrobat Document

    How can I change the default Applications content type, currently it point to Adobe Acrobat 7.0 the correct content type should be Adobe Acrobat Document.

    See the [[managing file types]] article, in particular the section on changing download actions. You may need to select "Use other" and browse to the application if it is not listed as one of the default options.

  • Product Registration option won't go away on Adobe Acrobat Std X

    Hi,
    I'm in the middle of a customization project for Adobe Acrobat, Reader and flash. For the Acrobat (standard), I'm using the customization wizard and selecting the option to suppress registration. At first it seems to work: when I open acrobat it's not there, but after a few seconds, it shows up grayed out and then after a few more seconds, it shows fully enabled.
    I tried other registry tweaks and also tried to hide the menu through js (but couldn't find it).
    Any ideias? Is it doing it for any know reason?
    thank you,
    JF

    My computer was missing a iPodDriver.kext, and an archive update had to be performed for the OS. I went to a Genius Bar, it took about an hour.

  • Why won't plugin check recognize Adobe Acrobat is up to date?

    Every time I open a Firefox window I get a plug-in check tab telling me that my Adobe Acrobat is out of date. I have installed the newest version three times now. I even downloaded the install from Adobe's ftp page rather than the page that plug-in check sent me to just to be sure. The plug-in check page even says I am running version 10.0.1, the latest version I can find, but still insists that one's out of date. What's going on here?

    I uninstalled Viewpoint Media Player (and the AOL IM client "AIM", since apparently that's what forced Viewpoint Media Player on to my system.)
    Viewpoint Media Player is responsible for the plugin called "MetaStream 3 Plugin r4", and I believe this plugin is triggering Firefox to open the plugincheck page. It is not enough to disable the plugin, it must be uninstalled.
    For me, after uninstalling Viewpoint Media Player, the "plugincheck always opening" problem then went away.

  • .PNG Transparency in Photoshop CC won't carry over to Photoshop Touch

    Whenever I creat a template in Photoshop CC with the intent of using it in Photoshop Touch, the.PNG transparency will not show in PS Touch. I open the document in Photoshop CC and its all layed out perfectly, I open it in Photoshop Touch and its flat and filled with white.
    I'd really appreciate any help with this issue. Thanks!

    Does Photoshop Touch support PC and Mac files like .png files
    Adobe Photoshop Touch for tablet
    Photoshop Touch for phone

  • Adobe Acrobat Language Settings

    We've been using LiveCycle to create forms that are 508 Compliant and have found a major issue with creating a document in LiveCycle and saving it as a PDF. When brought into Acrobat there are several options that have been lost in the Form Properties menu. Under the advanced tab the Reading Options Language has been grayed out and has no value. Actually, everything in the Advanced tab has been grayed out with no values present. This is a problem because this effects how the Screen Reader interacts with the PDF.
    I've been in touch with Adobe and JAWS (the screen reader) and neither of them have noticed this issue, though they both agree it is not good. Is there anyone with any sort of solution to this problem; maybe a third party software that rights this wrong or a way around it? And does anybody have an idea of what would cause this? Is there a known problem with integration between LiveCycle and Acrobat?

    Which LiveCycle product do you use?

  • Maintaining default locale in multi-lingual application

    Hello,
    I have a multi-lingual application where the language can be changed at runtime.
    To make the following code work properly, the default locale has to be set each
    time the language changes. Why?
    Since I need to check sometimes the platforms original locale (I do this with
    "Locale.getDefault()"), I am looking for a way not to change the default locale,
    but still to change the resourceBundle.
    In the API I read under "ResourceBundle, Cache Management" that the bundles are cached. Is this the reason why redefining the resourceBundle has no effect? And if yes, how can it be avoided?
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    public class Y extends JFrame {
      boolean toggle;
      Locale currentLocale;
      JButton b;
      ResourceBundle languageBundle;
      String country, userLanguage;
      public Y() {
        setSize(300,300);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        Container cp= getContentPane();
        b= new JButton();
        b.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent evt) {
         toggle= !toggle;
         if (toggle)
           country= "DE";
         else
           country= "GB";
         setUserLanguage(country);
        cp.add(b, BorderLayout.SOUTH);
        setUserLanguage("GB");
        setVisible(true);
      public static void main(String args[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
          public void run() {
         new Y();
      void setUserLanguage(String country) {
        if (country.equals("DE"))
          userLanguage= "de";
        else
          userLanguage= "en";
        currentLocale = new Locale(userLanguage, country);
    //    System.out.println(currentLocale); // The locale changes ...
    //    Locale.setDefault(currentLocale); // Remove comment slashes and it works.
    //    languageBundle.clearCache(); // No effect.
        languageBundle = ResourceBundle.getBundle("MyBundle",currentLocale);
        System.out.println(languageBundle); // ... but the resourceBundle does not change.
        b.setText(languageBundle.getString("ButtonText"));
    The resource bundle files:
    MyBundle.properties
    ButtonText= Just a button
    MyBundle_de_DE.properties
    ButtonText= Nur ein KnopfEdited by: Joerg22 on 18.08.2008 13:26

    What's your default locale? If your default locale is de_DE, that's the expected behavior. The reason for it is the fallback mechanism searches default locale's bundle before falls back to the base bundle, i.e., in case of searching en_GB bundle, the search order is:
    en_GB
    en
    de_DE
    de
    (base)
    So, it will choose MyBundles_de_DE.
    If you do not want this default locale fallback, you can specify ResourceBundle.Control instance, which is returned from ResourceBundle.Control.getNoFallbackControl() method, in your getBundle() call. Or if you do not use JDK6, you could copy the base bundle to MyBundles_en, which is ugly but should work.
    Naoto
    Edited by: naoto on Aug 18, 2008 1:05 PM

  • Hello, how can i modifie in the options, aplications, Adobe acrobat document, open with Adobe acrobat (in Firefox) instead of open with portable document format (default). Thanks

    I can'T open pdf links in another page, because in options, aplications i have in Adobe acrobat documents open with portable document format (default) and i must put open with Adobe Acrobat (in firefox) default.
    Where can i change the default?
    Tnaks

    All you now have to do is use that variable to the value property of your text field... So add this at the end of your code:
    this.getField("Conference_Option").value = ConferenceOpportunity;
    Also, I would use MouseUp, not MouseDown.

  • Adobe Acrobat update error: 1603 | 11.0.07/11.0.08/11.0.09

    Hello,
    i get an error when i try to update Acrobat Pro XI 11.0.06 to 11.0.07/11.0.08 or 11.0.09 with the msp files from the adobe download page.
    In the end of the installation procedure the installer is doing a roll-back and the installation returns an error code 1603
    - uninstall Adobe Acrobat and Reader , install Acrobat 11.0.0.0 and Update to 11.0.09 --> 1603
    - uninstall Adobe Acrobat and Reader , execute the adobe cleaner tool and then install Acrobat 11.0.0.0 and Update to 11.0.09 --> 1603
    - uninstall Reader und update Arobat --> 1603
    - http://helpx.adobe.com/creative-suite/kb/error-1603-install-cs3-cs4.html
    the update from 11.0.0 to 11.0.06 works without problems on my computers.
    please help me!
    the log file is too large to upload here the whole file.. But here is a short summary:
    - Paket: Microsoft .NET Framework 2.0 x64
    - Speicherort: http://www.microsoft.com/downloads/details.aspx?FamilyID=
    b44a0000-acf8-4fa1-affb-40e78d788b00&displaylang=en
    Property(S): RESERVED_APPNAME_PDAPP = PDApp.exe
    Property(S): KBDOCLINK_ERROR_INVDRIVE = http://kb2.adobe.com/cps/404/kb404946.html
    Property(S): WebLink = 0
    Property(S): _WebLinkChecked = 1
    Property(S): LANG_LIST_EXCEPTION = 0
    Property(S): HotFix64_Link = http://www.adobe.com/go/ms_kb930627
    Property(S): ADOBE_ACROBAT_DOCUMENT = Adobe Acrobat-Dokument
    Property(S): AppsInUseUnknownAcrobatApps = Programme, die Adobe Reader oder Adobe Acrobat verwenden
    Property(S): UnsupportedOS_HotFix = Dieses 64-Bit-Betriebssystem muss aktualisiert werden. Sie finden das Update unter  http://www.adobe.com/go/ms_kb930627. Aktualisieren Sie Ihr System und führen Sie das Setup erneut aus. Das Setup wird jetzt beendet.
    Property(S): REMOVE_A_CURRENT = ALL
    Property(S): LangListMismatchError = LANG_LIST weist einige Gebietsschemaeinträge auf, die nicht mit dem Gebietsschema der Seriennummer übereinstimmen.
    Property(S): _5789b66a5ab8e = {AC76BA80-0011-7760-0000-000000000000}
    Property(S): BLOCK_APP_TIMEOUT = 300
    Property(S): ProductLocale = de_DE
    Property(S): NewProperty1 = 0
    Property(S): BrandName = Adobe Acrobat XI Pro (11.0.09)
    Property(S): BLOCK_ENTRYPOINT_LOGGING = 0
    Property(S): ISReleaseFlags = MUI_PRO,MUI,PRO,PRO_ONLY,ROMAN,CHS_PRO,CHS,CHT_PRO,CHT,EFG_PRO,ISDP_PRO,JPN,JPN_PRO,KOR,K OR_PRO,RURT_PRO,SDFN_PRO,CHPS_PRO,ENU_PRO
    Property(S): REBOOT = ReallySuppress
    Property(S): ARPINSTALLLOCATION = C:\Program Files (x86)\Adobe\Acrobat 11.0\
    Property(S): REINSTALL = Fonts,ARM,PDFMaker,Requirements,ViewerProgramFiles,AcrobatBrowserIntegration,Distiller,Ac robatElements,InstallCache,PDFMakerForProject,PDFMakerForOutlook,Adobe_AMT,PaperCapture,Pr eFlightPlugin,ViewerPlugins,AdobeCommonLinguistics,SearchAndIndex,PDFMakerForExcel11,PDFMa kerForPowerPoint11,PDFMakerForWord11,PDFMakerForExcelXP,PDFMakerForPowerPointXP,PDFMakerFo rWordXP,PDFMakerForExcel2K,PDFMakerForPowerPoint2K,PDFMakerForWord2K,PDFMakerForIE,Program ExtendedLanguageSupport,PDFMakerForLotusNotes,PDFMakerForAutoCAD,BatchSequences,AcroHelp_P rofessional,AutodeskFilters,PDFMakerForAutoCAD_2011,PDFMakerForExcel11_x64,PDFMakerForExce lXP_x64,PDFMakerForExcel2K_x64,PDFMakerForPPt11_x64,PDFMakerForPPtXP_x64,PDFMakerForPPt2K_ x64,PDFMakerForWord11_x64,PDFMakerForWordXP_x64,PDFMakerForWord2K_x64,PDFMakerForOutlook_x 64,PDFMaker_x64,AutodeskFilters_update,Distiller_x64,Common_de_DE,FormsCentral,ProOnly,PDF MakerForVisio,Distiller_de_DE,PDFMakerForMozilla,C3PO_Installer,Pro_de_DE,SevicesPlugin
    Property(S): PRODUCTLANGUAGE = 0
    Property(S): INSTALLMAJORVERSION = 11
    Property(S): SourcedirProduct = {AC76BA86-1033-FFFF-7760-000000000006}
    Property(S): PDFIFILTERX64 = {F6594A6D-D57F-4EFD-B2C3-DCD9779E382E}
    Property(S): CANCEL_SET_IGNORE_AAM = 1
    Property(S): DEFAULT_LAUNCH_URL_OLD = version:2|shell:3|hcp:3|ms-help:3|ms-its:3|ms-itss:3|its:3|mk:3|mhtml:3|help:3|disk:3|afp :3|disks:3|telnet:3|ssh:3|acrobat:2|mailto:2|file:1|rlogin:3|javascript:4|data:3
    Property(S): DEFAULT_LAUNCH_URL = version:2|shell:3|hcp:3|ms-help:3|ms-its:3|ms-itss:3|its:3|mk:3|mhtml:3|help:3|disk:3|afp :3|disks:3|telnet:3|ssh:3|acrobat:2|mailto:2|file:1|rlogin:3|javascript:4|data:3|jar:3|vbs cript:3
    Property(S): FeatureNamesToCheckInstallState_Patch = PDFMakerForIE;en_US;nb_NO;da_DK;zh_TW;zh_CN;sv_SE;pt_BR;nl_NL;es_ES;ko_KR;ja_JP;it_IT;fr_ FR;fi_FI;de_DE;cs_CZ;hu_HU;pl_PL;ru_RU;sk_SK;tr_TR;uk_UA;sl_SI;fr_MA;en_IL;en_AE;AutodeskF ilters_update;PDFMaker_x64;PDFMakerCommonSideCars;PDFMakerForAutoCAD;ProgramExtendedLangua geSupport;PDFMakerForLotusNotes;PDFMakerForMozilla
    Property(S): DEFAULT_ATTACHMENT_WHITELIST_OLD = version:1|.ade:3|.adp:3|.app:3|.arc:3|.arj:3|.asp:3|.bas:3|.bat:3|.bz:3|.bz2:3|.cab:3|.ch m:3|.class:3|.cmd:3|.com:3|.command:3|.cpl:3|.crt:3|.csh:3|.desktop:3|.dll:3|.exe:3|.fxp:3 |.gz:3|.hex:3|.hlp:3|.hqx:3|.hta:3|.inf:3|.ini:3|.ins:3|.isp:3|.its:3|.job:3|.js:3|.jse:3| .ksh:3|.lnk:3|.lzh:3|.mad:3|.maf:3|.mag:3|.mam:3|.maq:3|.mar:3|.mas:3|.mat:3|.mau:3|.mav:3 |.maw:3|.mda:3|.mdb:3|.mde:3|.mdt:3|.mdw:3|.mdz:3|.msc:3|.msi:3|.msp:3|.mst:3|.ocx:3|.ops: 3|.pcd:3|.pi:3|.pif:3|.prf:3|.prg:3|.pst:3|.rar:3|.reg:3|.scf:3|.scr:3|.sct:3|.sea:3|.shb: 3|.shs:3|.sit:3|.tar:3|.taz:3|.tgz:3|.tmp:3|.url:3|.vb:3|.vbe:3|.vbs:3|.vsmacros:3|.vss:3| .vst:3|.vsw:3|.webloc:3|.ws:3|.wsc:3|.wsf:3|.wsh:3|.z:3|.zip:3|.zlo:3|.zoo:3|.pdf:2|.fdf:2 |.jar:3|.pkg:3|.tool:3|.term:3@@version:1|.ade:3|.adp:3|.app:3|.arc:3|.arj:3|.asp:3|.bas:3 |.bat:3|.bz:3|.bz2:3|.cab:3|.chm:3|.class:3|.cmd:3|.com:3|.command:3|.cpl:3|.crt:3|.csh:3| .desktop:3|.dll:3|.exe:3|.fxp:3|.gz:3|.hex:3|.hlp:3|.hqx:3|.hta:3|.inf:3|.ini:3|.ins:3|.is p:3|.its:3|.job:3|.js:3|.jse:3|.ksh:3|.lnk:3|.lzh:3|.mad:3|.maf:3|.mag:3|.mam:3|.maq:3|.ma r:3|.mas:3|.mat:3|.mau:3|.mav:3|.maw:3|.mda:3|.mdb:3|.mde:3|.mdt:3|.mdw:3|.mdz:3|.msc:3|.m si:3|.msp:3|.mst:3|.ocx:3|.ops:3|.pcd:3|.pi:3|.pif:3|.prf:3|.prg:3|.pst:3|.rar:3|.reg:3|.s cf:3|.scr:3|.sct:3|.sea:3|.shb:3|.shs:3|.sit:3|.tar:3|.taz:3|.tgz:3|.tmp:3|.url:3|.vb:3|.v be:3|.vbs:3|.vsmacros:3|.vss:3|.vst:3|.vsw:3|.webloc:3|.ws:3|.wsc:3|.wsf:3|.wsh:3|.z:3|.zi p:3|.zlo:3|.zoo:3|.pdf:2|.fdf:2|.jar:3|.pkg:3|.tool:3|.term:3|.acm:3|.asa:3|.aspx:3|.ax:3| .ad:3|.application:3|.asx:3|.cer:3|.cfg:3|.chi:3|.class:3|.clb:3|.cnt:3|.cnv:3|.cpx:3|.crx :3|.der:3|.drv:3|.fon:3|.gadget:3|.grp:3|.htt:3|.ime:3|.jnlp:3|.local:3|.manifest:3|.mmc:3 |.mof:3|.msh:3|.msh1:3|.msh2:3|.mshxml:3|.msh1xml:3|.msh2xml:3|.mui:3|.nls:3|.pl:3|.perl:3 |.plg:3|.ps1:3|.ps2:3|.ps1xml:3|.ps2xml:3|.psc1:3|.psc2:3|.py:3|.pyc:3|.pyo:3|.pyd:3|.rb:3 |.sys:3|.tlb:3|.tsp:3|.xbap:3|.xnk:3|.xpi:3
    Property(S): SOURCEDIR = C:\Program Files (x86)\Adobe\Acrobat 11.0\Setup Files\{AC76BA86-1033-FFFF-7760-000000000006}\
    Property(S): SUPPORTDIR = C:\Windows\TEMP\{AC76BA86-1033-FFFF-7760-000000000006}
    Property(S): ALL_USERS_DOCUMENTS = C:\Users\Public\Documents\
    Property(S): bIsPro = 1
    Property(S): MsiLogFileLocation = c:\uhdlogs\AdobeAcrobat.log
    Property(S): USERNAME = Dezernat 11.1
    Property(S): COMPANYNAME = RP Giessen
    Property(S): CURRENTDIRECTORY = B:\activate\95FE2F63-6A23-457C-84BC-DE7C893D14E0.itm\1.vol
    Property(S): ProductToBeRegistered = 1
    Property(S): ProductState = 5
    Property(S): CLIENTUILEVEL = 3
    Property(S): PackageCode = {7463CA64-F497-45FB-A84C-1BA3A908B2EB}
    Property(S): TRANSFORMS = C:\Windows\Installer\{AC76BA86-1033-FFFF-7760-000000000006}\1031.mst
    Property(S): P7.196A45B3_0387_4DF9_9420_597B6F2F9ADD = C:\Program Files (x86)\Common Files\Adobe\AdobeApplicationManager\AAMSetup\packages\P7\
    Property(S): LOCALES = C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\AcroExt\locales\
    Property(S): ACROEXT = C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\AcroExt\
    Property(S): PLUG_INS_PAPERCAPTURE_IDRS15_OCRRES = C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\plug_ins\PaperCapture\iDRS15\OCRResources\
    Property(S): PLUG_INS_PAPERCAPTURE_IDRS15 = C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\plug_ins\PaperCapture\iDRS15\
    Property(S): WCIEACTIVE_X64 = C:\Program Files (x86)\Common Files\Adobe\Acrobat\WCIEActiveX\x64\
    Property(S): PDFMAKER_AUTOCAD_2013_64 = C:\Program Files (x86)\Adobe\Acrobat 11.0\PDFMaker\AutoCAD\2013\64\
    Property(S): MSPSRCAC76BA86A440FFFFA4407A8C40011009 = C:\Windows\Installer\5ef892.msp
    Property(S): MsiRunningElevated = 1
    Property(S): PATCHNEWPACKAGECODE = {DAFD831E-9F8C-46F7-ABAD-6CF538C89B69}
    Property(S): PATCHNEWSUMMARYSUBJECT = Installers
    Property(S): PATCHNEWSUMMARYCOMMENTS = Contact:  Your local administrator
    Property(S): ACR11009 = B:\activate\95FE2F63-6A23-457C-84BC-DE7C893D14E0.itm\1.vol\AcrobatUpd11009.msp
    Property(S): Privileged = 1
    Property(S): DATABASE = C:\Windows\Installer\3c4e3a.msi
    Property(S): OriginalDatabase = C:\Windows\Installer\3c4e3a.msi
    Property(S): UILevel = 2
    Property(S): QFEUpgrade = 2
    Property(S): ACTION = INSTALL
    Property(S): WindowsSystemString = (Windows Vista 64-bit)
    Property(S): IS_CURRENT_PDFOWNER = 1
    Property(S): ROOTDRIVE = C:\
    Property(S): UserLanguageID = 1031
    Property(S): ACROPDF_RDR_EPM = 1
    Property(S): PDFMAKER_AUTOCAD_2013 = C:\Program Files (x86)\Adobe\Acrobat 11.0\PDFMaker\AutoCAD\2013\
    Property(S): VersionDatabase = 300
    Property(S): VersionMsi = 5.00
    Property(S): ServicePackLevel = 1
    Property(S): ServicePackLevelMinor = 0
    Property(S): MsiNTProductType = 1
    Property(S): WindowsVolume = C:\
    Property(S): RemoteAdminTS = 1
    Property(S): NetHoodFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
    Property(S): PrintHoodFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
    Property(S): WindowsBuild = 7601
    Property(S): RecentFolder = C:\Windows\system32\config\systemprofile\AppData\Roaming\Microsoft\Windows\Recent\
    Property(S): GPTSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): ShellAdvtSupport = 1
    Property(S): MsiAMD64 = 6
    Property(S): Msix64 = 6
    Property(S): Intel = 6
    Property(S): PhysicalMemory = 8053
    Property(S): VirtualMemory = 13877
    Property(S): AdminUser = 1
    Property(S): MsiTrueAdminUser = 1
    Property(S): LogonUser = SYSTEM
    Property(S): UserSID = S-1-5-18
    Property(S): ComputerName = WKSxxxxxx
    Property(S): SystemLanguageID = 1031
    Property(S): ScreenX = 1024
    Property(S): ScreenY = 768
    Property(S): CaptionHeight = 22
    Property(S): BorderTop = 1
    Property(S): BorderSide = 1
    Property(S): TextHeight = 16
    Property(S): TextInternalLeading = 3
    Property(S): ColorBits = 32
    Property(S): TTCSupport = 1
    Property(S): Time = 10:38:15
    Property(S): Date = 24.10.2014
    Property(S): MsiNetAssemblySupport = 4.0.30319.18408
    Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
    Property(S): RedirectedDllSupport = 2
    Property(S): ADDLOCAL = Common_en_AE,Common_en_IL,Common_fr_MA,Common_sl_SI,Common_uk_UA,Common_tr_TR,Common_sk_S K,Common_ru_RU,Common_pl_PL,Common_hu_HU,Common_cs_CZ,Common_fi_FI,Common_fr_FR,Common_it_ IT,Common_ja_JP,Common_ko_KR,Common_es_ES,Common_nl_NL,Common_pt_BR,Common_sv_SE,Common_zh _CN,Common_zh_TW,Common_da_DK,Common_nb_NO,Distiller_ko_KR,Distiller_sl_SI,Distiller_sk_SK ,Distiller_pl_PL,Distiller_nb_NO,Distiller_hu_HU,Distiller_fi_FI,Distiller_da_DK,Distiller _cs_CZ,Distiller_uk_UA,Distiller_tr_TR,Distiller_nl_NL,Distiller_it_IT,Distiller_pt_BR,Dis tiller_ru_RU,Distiller_sv_SE,Distiller_zh_CN,Distiller_ja_JP,Distiller_es_ES,Distiller_fr_ FR,Distiller_zh_TW,Distiller_fr_MA,Distiller_en_IL,Distiller_en_AE
    Property(S): AS_HKCR_EXE = "C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe"
    Property(S): PDFSHELL_LOCALSERVER_COMMAND = "C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\AcrobatInfo.exe" /PDFShell
    Property(S): PDF_DEFAULTICON = C:\Windows\Installer\{AC76BA86-1033-FFFF-7760-000000000006}\_PDFFile.ico,0
    Property(S): DEFAULT_PROGID = Acrobat
    Property(S): PDX_DEFAULT_PROGID = AcrobatPDXFileType
    Property(S): DEFAULT_PDF_PROGID = Acrobat.Document.11
    Property(S): DEFAULT_CURVER_PROGID = Acrobat.Document.11
    Property(S): PDF_PREVIEW_HANDERLER_DLL = C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\pdfprevhndlr.dll
    Property(S): PDF_PREVIEW_HANDERLER_HELPDIR = C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\
    Property(S): PDF_INPROCSERVER_VIEWERPS = C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\ViewerPS.dll
    Property(S): PDF_ACROBROKER_PATH = C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\AcroBroker.exe
    Property(S): LOTUS_DLL_PATH = C:\PROGRA~2\Adobe\ACROBA~1.0\PDFMaker\Mail\LOTUSN~1\PDFMLO~1.DLL
    MSI (s) (CC:20) [10:38:15:543]: Produkt: Adobe Acrobat XI Pro - Update "Adobe Acrobat XI (11.0.09)" konnte nicht installiert werden. Fehlercode 1603. Weitere Informationen sind in der Protokolldatei c:\uhdlogs\AdobeAcrobat.log enthalten.
    MSI (s) (CC:20) [10:38:15:543]: Ein Update wurde durch Windows Installer installiert. Produktname: Adobe Acrobat XI Pro. Produktversion: 11.0.09. Produktsprache: 1031. Hersteller: Adobe Systems. Updatename: Adobe Acrobat XI (11.0.09). Erfolg- bzw. Fehlerstatus der Installation: 1603.
    MSI (s) (CC:20) [10:38:15:543]: Note: 1: 1729
    MSI (s) (CC:20) [10:38:15:543]: Transforming table Error.
    MSI (s) (CC:20) [10:38:15:543]: Note: 1: 2262 2: Error 3: -2147287038
    MSI (s) (CC:20) [10:38:15:543]: Transforming table Error.
    MSI (s) (CC:20) [10:38:15:543]: Note: 1: 2262 2: Error 3: -2147287038
    MSI (s) (CC:20) [10:38:15:543]: Transforming table Error.
    MSI (s) (CC:20) [10:38:15:543]: Transforming table Error.
    MSI (s) (CC:20) [10:38:15:543]: Note: 1: 2262 2: Error 3: -2147287038
    MSI (s) (CC:20) [10:38:15:543]: Transforming table Error.
    MSI (s) (CC:20) [10:38:15:543]: Note: 1: 2262 2: Error 3: -2147287038
    MSI (s) (CC:20) [10:38:15:543]: Transforming table Error.
    MSI (s) (CC:20) [10:38:15:543]: Produkt: Adobe Acrobat XI Pro -- Configuration failed.
    MSI (s) (CC:20) [10:38:15:543]: Das Produkt wurde durch Windows Installer neu konfiguriert. Produktname: Adobe Acrobat XI Pro. Produktversion: 11.0.09. Produktsprache: 1031. Hersteller: Adobe Systems. Erfolg- bzw. Fehlerstatus der neuen Konfiguration: 1603.
    MSI (s) (CC:20) [10:38:15:543]: Attempting to delete file C:\Windows\Installer\5ef892.msp
    MSI (s) (CC:20) [10:38:15:543]: Unable to delete the file. LastError = 32
    MSI (s) (CC:20) [10:38:15:543]: Attempting to delete file C:\Windows\Installer\5ef893.mst
    MSI (s) (CC:20) [10:38:15:543]: Unable to delete the file. LastError = 32
    MSI (s) (CC:20) [10:38:15:559]: Deferring clean up of packages/files, if any exist
    MSI (s) (CC:20) [10:38:15:559]: Attempting to delete file C:\Windows\Installer\5ef892.msp
    MSI (s) (CC:20) [10:38:15:574]: Attempting to delete file C:\Windows\Installer\5ef893.mst
    MSI (s) (CC:20) [10:38:15:574]: MainEngineThread is returning 1603
    MSI (s) (CC:2C) [10:38:15:574]: No System Restore sequence number for this installation.
    === Protokollierung beendet: 24.10.2014  10:38:15 ===
    MSI (s) (CC:2C) [10:38:15:590]: User policy value 'DisableRollback' is 0
    MSI (s) (CC:2C) [10:38:15:590]: Machine policy value 'DisableRollback' is 0
    MSI (s) (CC:2C) [10:38:15:590]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (CC:2C) [10:38:15:590]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (CC:2C) [10:38:15:590]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (CC:2C) [10:38:15:590]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (s) (CC:2C) [10:38:15:590]: Restoring environment variables
    MSI (s) (CC:2C) [10:38:15:590]: Destroying RemoteAPI object.
    MSI (s) (CC:68) [10:38:15:590]: Custom Action Manager thread ending.
    MSI (c) (98:88) [10:38:15:590]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (98:88) [10:38:15:590]: MainEngineThread is returning 1603
    === Verbose logging stopped: 24.10.2014  10:38:15 ===

    Running into the same issue over here. It seems like it has to do with applying a transform to the installation, so it could be related with a particular setting put in place using the Adobe Customization Wizard.
    It's really kind of hit or miss, because it appears to affect those with previous versions of Acrobat or Reader installed, but that isn't always the case.
    Had this happen to systems that haven't had any sort of Adobe product installed prior.
    It's always the same thing too. Error 1603 is spit out after it can't remove select files in C:\Windows\Installer
    After digging through the system, the files that it's looking to delete aren't even there to begin with.

  • Adobe Acrobat X Pro & Adobe Acrobat X Standard questions

    Hi, I'm running into a problem.  I have Adobe Acrobat X Pro on my computer at work, however, I'm finding that my field personnel have Adobe Acrobat X Standard.  I've written some javascripts on a form to automatically calculate when a number is entered into a field.  I'm finding that the form works fine for the folks with Adobe Acrobat X Pro, but does not work for people with Adobe Acrobat X Standard. 
    Is there a specific reason for this?   I've been going nuts trying to find out why this is happening.  I even created the form in Adobe LiveCycle ES2 and the form still will not calculate for those that have Adobe Acrobat X Standard.  In addition to that, it doesn't work with Adobe Reader either.
    Anyone has any idea why this is happening? 
    (I'm going to post this same message over in Adobe Acrobat in case I've put this in the wrong spot.)
    Thanks
    Connie

    Hi thanks for the reply yes the Epson software was up todate
    I have fixed the problem by repairing my Disk Permission and a restart
    cheers Mike

  • Silent Installation Adobe Acrobat 9 Win 2008 R2

    Hi,
    I have a problem with the silent installation of Adobe 9 under Win 2008 R2. I have created an admin installation with all hotfixes including 9.3.2 german.
    When I install. The installation fails with 1603. In the log i found the following errors:
    Property(S): UnsupportedOS_DotNet = The installation of [BrandName] on a 64-bit Windows operating system requires that you first install the following package from the location indicated below:
    - Package: Microsoft .NET framework 2.0 x64
    - Location: http://www.microsoft.com/downloads/details.aspx?FamilyID=
    b44a0000-acf8-4fa1-affb-40e78d788b00&&displaylang=en
    Property(S): HotFix64_Link = http://www.adobe.com/go/ms_kb930627
    Property(S): ADOBE_ACROBAT_DOCUMENT = Adobe Acrobat Document
    Property(S): UnsupportedOS_HotFix = Acrobat requires an update for this 64-Bit operating system.  The update can be found at http://www.adobe.com/go/ms_kb930627.  Please update your system and run setup again. Setup will now terminate.
    Both Hotfixes are not available under win 2008r2. Dotnet 3.5sp1 is already installed and the other hotfix is not for R2.
    What can I do?
    thanks in forward!

    Hi John,
    Acrobat 9.3.2 is certified for W2008R2

  • Where the Adobe Designer PDF Form "Default Locale" read from?

    I am designing PDF form using Adobe Designer. I have set the "Default Locale" in the Edit -> Form Properties. I have set the Display Pattern of numeric field to ZZZ,ZZZ,ZZ9.99. Based on locale, Adobe should format the numeric field accordingly. So where exactly the Adobe Designer read the locale and the number format? From SAP table, Adobe server OS, PC OS or from where? Because I need to check the locale setting ZZZ,ZZZ,ZZ9.99, ZZZ.ZZZ.ZZ9,99 and so on.

    Check in the Interface Or Form Builder -->Interface.
    Reward if Useful.
    Thanks,
    Anita

  • Can shortcuts from Adobe Premiere Pro CC (last version) carry over to PP CC 2014?

    I installed Premiere Pro CC 2014 on two computers, and both times the custom shortcuts that I created did not carry over.
    Is there any way to make this happen? Thanks.

    give the KBSC a unique name and copy them from My Documents / Adobe / Premiere Pro / 7.0 / Profile creative cloud / win
    to
    My Documents / Adobe / Premiere Pro / 8.0 / Profile - name / win.

  • Batch Renames do not carry over to Finder

    When I Batch Rename my photos in Adobe Bridge, the images file names appear to change in Bridge, but when I close out of Bridge and open my images in Finder the images keep their old names and do not carry over the new Bridge batched rename.
    Can anyone tell me how to get my files to permanently change their names from Bridge to Finder?

    Working across a server in general, is not supported by Adobe.
    Bridge in particular is very sensitive to any problem(s) in your server configuration, which we cannot troubleshoot for you.
    This is the boilerplate text often used in connection to saving to a network (please NOTE the part where it explains that normally, it does work, but that it is impossible to troubleshoot someone else's network remotely, and that's why it's not supported by Adobe):
    If you are opening files over a network or saving them to a network server, please cease and desist immediately in the event you are currently experiencing problems with one or more files. Working across a network is not supported.
    See: 
    http://kb2.adobe.com/cps/406/kb406793.html
      Copy the CLOSED file from your server to your local hard disk, work on it, save it again to your local hard disk, close it, and copy the closed file back to the server.
         Of course, the fact that Adobe does not support working across a network does not necessarily mean it won't work.   It should.
        Adobe's position is that there are too many variables in a network environment for them to guarantee that everything will work correctly in every network, especially given the fact that if something does not work properly, it's probably the network's fault, and Adobe has no way of troubleshooting your network.
      If you can't work locally, you are on your own, and if something happens, you're on your own. If you must work from a server, make sure your network administrator is a competent professional.
    When problems arise, a lot of valuable work can be lost.

Maybe you are looking for