Acrobat5 との共存にて

お世話になります。
WindowsXP PRO SP2
Acrobat 5.0.7
Reader 7.0.0
の組合せなのですが。
当方。現在、HTMLを使用し“PDFファイルの一覧表”を作成しているのですが、
Acrobat5 を起動している場合、WebブラウザからPDFファイルが開けない。
Reader7 を起動している場合、Webブラウザから開けるが、編集して保存ができない。
との状況に困っております。
Acrobat5&Reader6の場合では、以上の状況にはならなかったのですが。
解決策をご存じの方。ご教授をお願いいたします。
よろしくお願いいたします。

Acrobatの旧製品がインストールされている環境にAdobe Reader 7.0をインストールすると、
(混在は推奨されていないハズ)
インストールの途中で「PDFのデフォルトアプリケーション」を設定する画面が表示されます。
そこでAdobe Reader 7.0を選択したのだと思います。
ローカルに保存してから、Acrobatで開くか、
両方をアンインストールして、Acrobat5.0でPDFを開く設定で入れ直すかのどちらかになると思います。
(古い方から順番に入れた方がいいですよ。混在は自己責任で)

Similar Messages

  • PDF export with security settings

    Using JavaScript to export PDFs.  Export works fine.  Security in the PDF is not working.
    ID CS5.5
    This is the snippet of code I'm using to apply settings to the PDF:
    with(app.pdfExportPreferences){
    cropMarks = false;
    registrationMarks = false;
    acrobatCompatibility = AcrobatCompatibility.acrobat5;
    colorBitmapCompression = BitmapCompression.autoCompression;
    colorBitmapQuality = CompressionQuality.low;
    colorBitmapSampling = Sampling.bicubicDownsample;
    colorBitmapSamplingDPI = 100;
    compressionType = PDFCompressionType.compressObjects;
    compressTextAndLineArt = true;
    cropImagesToFrames = true;
    grayscaleBitmapCompression = BitmapCompression.autoCompression;
    grayscaleBitmapquality = CompressionQuality.low;
    grayscaleBitmapSampling = Sampling.bicubicDownsample;
    grayscaleBitmapSamplingDPI = 100;
    monochromeBitmapCompression = MonoBitmapCompression.ccit4;
    monochromeBitmapSampling = Sampling.bicubicDownsample;
    monchromeBitmapSamplingDPI = 300;
    optimizePDF = true;
    subsetFontsBelow = 100;
    useSecurity = true;
    viewPDF=true;
    disallowPrinting=false;
    disallowCopying=true;
    disallowChanging=true;
    openDocumentPassword = "password"
    changeSecurityPassword = "password"
    Most (if not all) of these settings are working with the exception of the security settings.
    disallowPrinting=false;
    disallowCopying=true;
    disallowChanging=true;
    openDocumentPassword = "dj2575!!"
    changeSecurityPassword = "dj2575!!"
    Am I missing something in the code?
    Thank you for any input.

    @Mike – yes.
    Your with() statement seems to obscure some problems, i think.
    I'd do the following:
    //1. Set useSecurity to false (default)
    app.pdfExportPreferences.useSecurity = false;
    //Get a list of property/value pairs to see what's enabled or what's not possible in the current state of the app:
    var myObject = app.pdfExportPreferences;
    for(x in myObject){
        try{
        $.writeln(x +"\t"+myObject[x]);
        }catch(e){$.writeln(x+"\t"+e.message);};
    Then enable useSecurity and run the for x in pdfExportPreferences again:
    app.pdfExportPreferences.useSecurity = true;
    var myObject = app.pdfExportPreferences;
    for(x in myObject){
        try{
        $.writeln(x +"\t"+myObject[x]);
        }catch(e){$.writeln(x+"\t"+e.message);};
    That should clear the view…
    Uwe

  • JavaScript to prompt user to save as PDF

    I am making changes with code to the file. I want the user to be prompted to save as a .ai file first. I have that down. Now I am wanting to have the user immediately be prompted to save as a pdf with only the optimize for fast web view option selected. I believe it is an adobe preset of Smallest File Size.
    The reason for wanting the prompt is because I want to save the files in 2 different locations.
    Here is my code so far.....
    var doc = app.activeDocument;
    // Save as .ai file 
    var fileName = doc.fullName; 
    var thisFile = new File(fileName);
    var saveFile = thisFile.saveDlg();
    doc.saveAs (saveFile);
    // Save as .pdf file
    var pdfSaveOptions = new PDFSaveOptions(); 
    pdfSaveOptions.pDFXStandard=PDFXStandard.PDFXNONE; 
    pdfSaveOptions.compatibility = PDFCompatibility.ACROBAT5; 
    pdfSaveOptions.preserveEditability = false; 
    var pdfFile = new File(fileName); 
    doc.saveAs(pdfFile, pdfSaveOptions);
    AI CS4 Windows 7 64bit

    is the folder structure existing already?
    if so, things are simple.
    if the job number and name are in the file the you could pull that from the doc rather then manual entry at the prompts.
    (please note this has no testing to check folders exist etc...)
    var job = prompt("Enter Job Name");
    var num = prompt("Enter Job Number");
    aiFile = "D:\\"+job+"\\"+num+"\\AI\\Schematic.ai"
    pdfFile = "D:\\"+job+"\\"+num+"\\PDF\\Schematic.pdf"
    var newaiFile = new File(aiFile);
    var doc = app.activeDocument;
    doc.saveAs (newaiFile);
    var pdfOpts = new PDFSaveOptions();   
    pdfOpts.pDFXStandard=PDFXStandard.PDFXNONE;
    pdfOpts.compatibility = PDFCompatibility.ACROBAT5;   
    pdfOpts.preserveEditability = false;
    var newpdfFile = new File(pdfFile);   
    doc.saveAs(newpdfFile, pdfOpts);
    if you want the script to create the folders then its a little harder.
    Javascript will not do this and you need some other work around.
    something like this...
    if (Folder(qfolder).exists){
    app.activeDocument.saveAs( saveName, saveOpts );
    }else{
               //alert("about to try bat");
               batpath= 'call "C:\\Adobe Scripts\\MakeDirectory.bat"';
                battemp = new File("C:\\Adobe Scripts\\tempBAT.bat");
                battemp.open("w");
                battemp.writeln(batpath + " " + qfolder);
                battemp.close();
                battemp.execute();
             //alert("Had to Create Folder, Please press OK to continue...");
                $.setTimeout = function(func, time) {
                        $.sleep(time);
                        func();
             $.setTimeout(function(){ app.activeDocument.saveAs( saveName, saveOpts )},200);
    the MakeDirectory.bat is just:
    ECHO OFF
    CLS
    IF %1=="" GOTO BLANK
    SET savepath=%*
    MKDIR %savepath%
    GOTO FINISH
    :Blank
    ECHO No Folder provided
    GOTO FINISH
    :FINISH
    the tempBat.bat is used to call the MakeDirectory.bat with the folder name as an argument.

  • SaveAs() method doesn't work for PDF file

    I used the script below to generate a PDF file. When I ran it, no error occurred but no PDF was generated either
    var pdf = new File("E:\\STWWEB1\\CDLG_ILL\\temp\\jpeg\\640\\1.pdf");
    docRef.saveAs(pdf);
    Does anybody know what's wrong?

    PDF needs to have a new instance of the PDFSaveOptions created. Look at the JS Reference
    PDFSaveOptions
    Options for saving a document as an Adobe PDF file, used with the saveAs method. All properties are optional.
    Saving to PDF format
    // Saves the current document as PDF to dest with specified options
    // dest contains the full path and file name to save to
    function saveFileToPDF (dest) {
    var doc = app.activeDocument;
    if ( app.documents.length > 0 ) {
    var saveName = new File ( dest );
    saveOpts = new PDFSaveOptions();
    saveOpts.compatibility = PDFCompatibility.ACROBAT5;
    saveOpts.generateThumbnails = true;
    saveOpts.preserveEditability = true;
    doc.saveAs( saveName, saveOpts );

  • Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format

    We are unable to open pdf reports in Workspace with the following error. It was all working fine and doesn't work now for unknown reasons.
    Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format
    We are on 11.1.2.1 environment. Ghost Script 8.54 and Java heap settings xms256m and xmx512m.
    Please advice.

    hello,
    just to clarify
    a) the parameter is named DESFORMAT not :DESFORMAT, there is
    no : in front of the name, if you submit it via URL !
    b) there are some issues with acrobat5 and IE but those are not
    only caused by PDFs generated with oracle reports.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • PDF Security II

    Hello all, I was reading a post about pdf security and the following script, created by Mike Brog, was mentioned. However, I do not know how to modify it to work for me. I am very new to scripting. Some of the elements look familiar to me, but I still do not know what to modify.
    I should clarify that I need the script to export a pdf with the security settings already applied.
    I have replied to the original post but thought I would get a better response by making a new post.
    Thanks Tom
    CurrentDoc = app.activeDocument;
    CurrentPage = app.activeWindow.activePage.name;
    myFile = "VOLX:_DNK1:PROOFWATERMARK2.pdf";
    var insertedImages = CurrentDoc.pages.item(CurrentPage).place(myFile);
    var myGraphic = CurrentDoc.allGraphics[0];
    myGraphic.parent.geometricBounds = ["0p","0p",CurrentDoc.documentPreferences.pageHeight,CurrentDoc.documentPrefere nces.pageWidth]
    myGraphic.fit(FitOptions.proportionally)
    myGraphic.fit(FitOptions.CENTER_CONTENT)
    myGraphic.opacity = 30
    with(app.pdfExportPreferences){
    cropMarks = false;
    registrationMarks = false;
    acrobatCompatibility = AcrobatCompatibility.acrobat5;
    colorBitmapCompression = BitmapCompression.autoCompression;
    colorBitmapQuality = CompressionQuality.low;
    colorBitmapSampling = Sampling.bicubicDownsample;
    colorBitmapSamplingDPI = 100;
    compressionType = PDFCompressionType.compressObjects;
    compressTextAndLineArt = true;
    cropImagesToFrames = true;
    grayscaleBitmapCompression = BitmapCompression.autoCompression;
    grayscaleBitmapquality = CompressionQuality.low;
    grayscaleBitmapSampling = Sampling.bicubicDownsample;
    grayscaleBitmapSamplingDPI = 100;
    monochromeBitmapCompression = MonoBitmapCompression.ccit4;
    monochromeBitmapSampling = Sampling.bicubicDownsample;
    monchromeBitmapSamplingDPI = 300;
    optimizePDF = true;
    subsetFontsBelow = 100;
    useSecurity = true;
    viewPDF = true;
    disallowPrinting = false;
    disallowCopying = true;
    disallowChanging = true;
    changeSecurityPassword = "XXXXXX"
    var myPageName, myFilePath, myFile;
    var myDocument = app.activeDocument;
    var myDocumentName = myDocument.name;
    var myRegExp = new RegExp(":","gi");
    var myRegExp2 = new RegExp(".indd","gi");
    myPageName = myDocument.name
    myPageName = myPageName.replace(myRegExp, "_");
    myBaseName = myPageName.replace(myRegExp2, "");
    myFilePath = "VOL1:Test PDF Ads:_LOW RES PROOF - WATERMARK:" + myBaseName + ".pdf";
    myFile = new File(myFilePath);
    CurrentDoc.exportFile(ExportFormat.pdfType, myFile, false)

    As Mylenium said once a PDF file's been created with a password, it cannot be cracked. You need to check with the creator of the file for its password.
    Thanks
    Nikhil

  • 用紙サイズより大きいpdfファイルの印刷

    MAC OS9.2でG4 450MHz
    Acrobat Reader 4.0を使用しています
    Adobe Illustrator 9.0.2で作成したpdfファイルをプリンターで印刷する際
    もとのデータはA3より大きいサイズなんですが、
    これを原寸100%でA3用紙2枚に分けてプリントアウトすることはできないんでしょうか?
    「用紙サイズに合わせる」オプションのチェックをはずしてしているのですが
    どうもうまくいきません
    最初に用紙サイズに分けてpdfファイルを
    作るしかないのでしょうか

    Acrobat5.0であれば、「タイル印刷」で所望のことができるでしょう。
    詳細はAcrobat5.0のヘルプ文書でと行きたいところですが、ここはAcrobat ReaderフォーラムなのでAcrobatを持っていなくても当然。
    Adobeサイトだと以下のPDF文書(5ページ目)でこんな説明をしています。
    http://www.adobe.co.jp/products/acrobat/pdf/acrnfhs.pdf
    効率良く印刷する—
    Adobe Acrobat では、大きなサイズのドキュメントをタイル印刷することで、制作時間とコストの削減を実現することができます。これにより、たとえば11×17 インチのポスター画などの色校正のために、標準のA4 紙または8.5 × 11 インチ紙で印刷して貼り合わせることが可能です。
    以下のサイトでは、「タイル印刷」の設定のイメージ切り取りがあるので、参考に。
    http://www2.convention.jp/pdf/dictionary/j/01_i/print/print.htm
    なお、この「タイル印刷」機能には、Acrobat5.0(4.0には無いと思う)とPSプリンターが両方必要です。たとえAcrobat5.0があっても、GDIプリンターではメニューがシ ェード化され、機能しません。
    Acrobat5.0がなければ、元アプリケーションで作成しなすのが一番早いでしょう。

  • Strange crash after exporting PDF...

    I have a script with the following at the end:
    var pathName = "~/Desktop/salesChartEMC.pdf";
    var saveName = new File (pathName);
    saveOpts = new PDFSaveOptions();
    saveOpts.compatibility = PDFCompatibility.ACROBAT5;
    saveOpts.generateThumbnails = true;
    saveOpts.preserveEditability = true;
    templateFile.saveAs(saveName, saveOpts);
    templateFile.close(SaveOptions.DONOTSAVECHANGES);
    alert("PDF successfully saved as "+pathName);
       The script keeps crashing at the templateFile.close(...) line.  If I comment out that line, the script works without crashing and I can switch back and forth between open documents and work as normally.  However, as soon as I manually close the PDF that is still open, Illustrator crashes again.  Has anyone run into this behavior before?

       Fixed.  This had to do with some code earlier i nthe script.  I had moved some objects from one document into the document I was exporting.  Instead of moving, I duplicated them into the new document (with new variable names) and then removed the old one.  This fixed the crashing issue for some reason.

  • Adobe Reader 7.0.2インストールでエラー

    Adobe Reader 7.0.2インストール時に「指定されたデバイスまたはファイルを開けません。」というエラーが発生。
    <動作環境>
    CPU  Mobile Pentium3 800MHz
    メモリ 256MB
    OS  Windows2000 Pro SP4
    Adobe Reader 7.0.1
    Adobe Acrobat5.0.5
    IE 6.0 SP1
    再度チャレンジでもNG。PC再起動でもNG。
    http://support.adobe.co.jp/faq/faq/qadoc.sv?222728+002#anc_c
    に記述されたように、常駐ソフトを終了しても、スタートアップ項目を無効にしても、VGAモードで再起動してもNG。
    何が原因でしょうか。ご存じの方がいらっしゃったら、どうかお助け下さい。

    > Adobe Reader 7.0.2インストール時に
    アップデートとしての「7.0.2」のインストールの意味でしょうか?
    だとすれば、以下の情報も。
    文書番号 : 226396
    http://support.adobe.co.jp/faq/faq/qadoc.sv?226396+002
    Acrobat 7.0.2/Adobe Reader 7.0.2 アップデートインストール手順(Windows)
    > Adobe Reader 7.0.1
    このAdobe Reader 7.0.1が正常に機能することは確認済みですか?
    > 常駐ソフトを終了しても、スタートアップ項目を無効にしても、VGAモードで再起動してもNG。
    サポート文書222728 には、「C-2. ファイル名の確認 」もありますね。さらにファイル名には日本語も避けるべき。
    またユーザー名の日本語も要注意。
    ユーザー名に日本語を使っていると、マイ ドキュメント以下に実行ファイルをダウンロードした場合、実体は「C:¥Documents and Settings¥ユーザ名¥My Documents」以下なので、日本語のユーザー名が邪魔してインストールできない場合もある。
    管理者権限のあるユーザを別途作成して、そのユーザーでログオンし直してからインストールする方法もある。
    アップデートは、Adobe Readerの[ヘルプ/アップデートの有無を今すぐチェック]メニューからでも可能。
    以下のサポート情報によれば、Acrobat5.xとAdobe Reader 7.0xの共存は可能です。
    文書番号 : 226659
    http://support.adobe.co.jp/faq/faq/qadoc.sv?226659+002
    異なるバージョンのインストールおよびアンインストールについて(Windows 版 Acrobat 7.0)
    AcrobatやAdobe Readerは「C:¥Documents and Settings¥ユーザー名¥Application Data¥Adobe¥Acrobat」以下にテンプファイルなどを作成する。無ければ自動的に作成されるので、このAcrobat以下を削除してもよいはず。
    念のため、いきなり削除よりは「Acrobat」を[Acrobat_old」などとリネームするのが安全だろう。
    テンポラリファイルの削除に関しては、以下のサポート情報を参照。
    文書番号 : 223367
    http://support.adobe.co.jp/faq/faq/qadoc.sv?223367+002
    Acrobat または Adobe Reader が起動時にフリーズまたは終了してしまう

  • "Isolation Mode" and Javascript.

    Hi All,
    Does anyone know of a way to get out of IsolationMode using Javascript?
    I am trying to create a Duplicate of a Selection on a Tempory Layer.
    The selection is often quickest to get to by Isolating.
    Then running script.
    I'm getting this error:
    Error 9034: Cannot add a new layer as sibling to 'Isolation Mode' synthetic layer.
    ->  tempLayer = app.activeDocument.layers.add();
    I also have this issue with another Script I use to Save Artwork.
    If Isolation Mode is active when script is run, file is saved with non-isolated sections "Dimmed"
    Would be nice to "Idiot Proof" the code a little more by getting out of Isolation mode if need be before saving.
    Snippet of save code below:
    saveName = new File(FilePathAndName);
    saveOpts = new PDFSaveOptions();
    saveOpts.compatibility = PDFCompatibility.ACROBAT5;
    saveOpts.generateThumbnails = true;
    saveOpts.preserveEditability = true;
    app.activeDocument.saveAs( saveName, saveOpts );
    Fingers Crossed there is a way to access "Isolation Mode" using Javascript.
    Both scripts are too much for an action.
    I can't run action from Javascript... can I? (boo)
    and I realy don't want to go down the path of running JS from an Action, then calling VB to call a different action bla bla.
    am using CS6 with CC coming soon...
    Thanks in advance...

    Okay, for those fortunate to have CS6+ Illustrator, this approach may be a possible workaround since it's cross-platform, and needs to use no pre-programmed shortcut keys as Exit Isolation Mode is recordable from the Layers fly-out menu.
    It'll use the layer's name to try and determine if we are currently in isolation mode by the layer's name being "Isolation Mode".  So if there's normal layers named that, it'll be a problem. In addition, it's possible to load an entire action set from a file into the Actions palette, and it is possible to unload one action at a time from it, but I don't see a way to delete an entire set. Therefore, this method will always leave a trace on the user Application: an action set called "TEST1".
    #target illustrator
    function test(){
        if(app.documents.length > 0){
            var doc = app.activeDocument;
            if(doc.layers[0].name == "Isolation Mode"){
                app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
                try{
                    app.doScript("Action 1", "TEST1", false);
                    if(doc.layers[0].name == "Isolation Mode"){
                        throw new Error("The Exit Isolation Mode action did not successfully play. It may be absent.");
                } catch(e){
                    var exitIsolationModeAction = "/version 3"+
                    "/name [ 5"+
                    " 5445535431"+
                    "]"+
                    "/isOpen 1"+
                    "/actionCount 1"+
                    "/action-1 {"+
                    " /name [ 8"+
                    " 416374696f6e2031"+
                    " ]"+
                    " /keyIndex 0"+
                    " /colorIndex 0"+
                    " /isOpen 1"+
                    " /eventCount 1"+
                    " /event-1 {"+
                    " /useRulersIn1stQuadrant 0"+
                    " /internalName (ai_plugin_Layer)"+
                    " /localizedName [ 5"+
                    " 4c61796572"+
                    " ]"+
                    " /isOpen 0"+
                    " /isOn 1"+
                    " /hasDialog 0"+
                    " /parameterCount 1"+
                    " /parameter-1 {"+
                    " /key 1836411236"+
                    " /showInPalette -1"+
                    " /type (integer)"+
                    " /value 25"+
                    " }"+
                    " }"+
                    var temp = File(Folder.desktop+"/ExitIsolationModeActionFile.aia");
                    temp.open('w');
                    temp.write(exitIsolationModeAction);
                    temp.close();
                    app.loadAction(temp);
                    app.doScript("Action 1", "TEST1", false);
    test();

  • File registry problem: entered file types not seen via RON but in DB

    Greetings,
    I configured SCM with the new Jdev file extension types to be treated as text for
    merge purposes as suggested in the RC2 release notes.
    I used RON 4.11 to enter 6 or so new file extensions, then hit the OK.
    These extensions are not visable but when attempting to re-enter them, I get
    a SQL dup. key constrain exception.
    Useing SQLplus I find them in i$sdd_file_registry
    The difference between an extention I entered one at a time, vs N at a time is
    the sequence (SEQ column) is larger for the N at a time:
    4294966997 +/-
    vs
    326 for one entered
    VS
    8251 for those setup at SCM installation time
    Will SCM still treat these as text even though I can't see them? The RULE was
    set correctly to be: TXT_FILE
    Thanks for any help here,
    curt

    It's NOT the case of the file system showing the file correctly… It is saved to the requested location… You are just overwriting it with the standard PDF… The supplied paths you defined are the same… Here I have just made a change to your code…
    var myDoc = app.activeDocument; // Just so I can ignore the rest of the code…
    var myPermission =confirm ("Are you sure you're ready to save?","","Save Script Execution")
    if (myPermission){
    var myFileName = prompt ("Enter Filename","");
    if (myFileName){
    var destFolder = Folder.selectDialog('Select which folder to save to Katie:');
    else
    alert ("Save cancelled");
    if (destFolder) {
    /*Save as Illustrator CS4*/
    var IFile = new File(destFolder + '/' + myFileName + '.ai' );   // Now unique           
    var ISave = new IllustratorSaveOptions();
        with (ISave){
            compatibility = Compatibility.ILLUSTRATOR14;
       /*Save as standard PDF*/
        var IPreset = '[Illustrator Default]'
        var pdfSave = new PDFSaveOptions();
        var pdfFile = new File(destFolder + '/' + myFileName + '.pdf' ); // Ditto here
            with (pdfSave){
                 pDFPreset = IPreset;
                 viewAfterSaving = false;
                 compatibility = PDFCompatibility.ACROBAT5;
    /*Save as smallest PDF*/
    var SmallestPDF = '[Smallest File Size]';
    var pdfSaveOpts = new PDFSaveOptions();  
    var pdfFileCompressed = new File(destFolder + '/' + myFileName +'%2e' + 'now_format' + '.pdf' ); // This was just un-string your variable…
        with (pdfSaveOpts){
            compatibility = PDFCompatibility.ACROBAT5;   
            pDFPreset = SmallestPDF;
            viewAfterSaving = false;
    destFolder.execute()
    myDoc.saveAs (IFile, ISave)
    myDoc.saveAs(pdfFile, pdfSave) 
    myDoc.saveAs(pdfFileCompressed, pdfSaveOpts)
    else {
    alert("Save cancelled!") 

  • SDK installer

    Acrobat5.0へversion upした後、SDK installerを起動しようとすると、”SDK installerが見つからないので、SDK installerは開けません”と表示されます。

    私も同じ症状にあいました。しかし、アドビのWebサイトからダウンロードしたインストーラからはインストールできました。CD内のSDKから起動しているのなら是非試してみてください。

  • Acrobat 5.05にAcrobat Reader 6.02をインストールできるか?

    AcrobatをVer 5のままでReaderだけ6にあげることは可能なのでしょうか?

    >先に、Adobe Readerをインストールして、Acrobat 5を後からインストールする
    ブラウザとAcrobat(AdobeReader)がやりとりする部分、
    ActiveXコントロール関連が古いバージョン(Acrobat5.0)の物に上書きされる可能性があります。
    私個人の意見としては、
    製品のリリース順でインストールする方がいいと思います。
    (混在は自己責任で)

  • ツールバーを非表示にしたい

    PDFを開く際にツールバー、メニューバー等を非表示にしたいのですが、Designerでの作成時に設定する方法はあるのでしょうか?
    Acrobat Proで設定する方法はありますが、下のトピックでもおっしゃっているように、Designerで作成したものは修正できないようですね。
    Designerでの設定方法が分かる方いらっしゃいましたらよろしくお願いします。

    以下は、Acrobat(あるいはAcrobat Reader)を起動させ、PDF文書を何も表示させない状態で行います。PDF文書を表示させてもよいのですが、表示させないほうが楽なので。
    各メニューはパーツごとに分かれていますが、その先頭(左端)がやや山高になっています。その個所をマウスでつかんで、左隅(右側でもよい)の端にもっていき、マウスを放します。すると、縦表 示のメニューバーができます。
    あとは、各メニューバーを同じように左隅端にもっていくだけです。
    すべてのメニューバーを移動させると、横表示用のバーは消えるので、縦方向の描画領域が広がります。
    この設定はAcrobat(あるいはAcrobat Reader)を終了→再起動させても覚えています。
    以上は、Windows2000 SP2、Acrobat Reader5.1、Acrobat5.0.5で動作確認しています。
    以下は参考。
    awanot さんが投稿したメッセージ「ツールバーがフローティングパレットのままになってしまいました。」 (投稿日時 : 2003年2月2日 09:28)
    kenchiku さんが投稿したメッセージ「ツールバーがフローティング状態 WIN版」 (投稿日時 : 2003年2月5日 16:34)

  • フォームで外字入力

    お世話になります。abraと申します。
    現在、PDFを使用したWebアプリケーションを開発しております。
    Acrobat6.Xを使用してPDFにテキストフィールドを作成し、AdobeReader6.Xをインストールした端末から、ユーザに外字の入力をさせて、保存および印刷をしたいと思って おります。
    しかし、外字エディタを使用して外字を作成した端末においても、印刷どころか表示もできません。
    過去のトピックを検索してみると、Acrobat5.Xまではサポートされるフォントが少ないため、外字入力は難しそうなことが書いてありましたが、使用可能なフォントが増えている6.Xでも 難しいのでしょうか。
    どなたかご存知の方がいらっしゃれば、ご教授ください。
    よろしくお願いいたします。
    ちなみに環境は
    クライアント:Win2K, IE6, AdobeReader6.0
    Webサーバ:Solaris8
    です。

    早速のご返信、ありがとうございます。
    言葉足らずで申し訳ございませんでした。
    入力と書きましたが、実際には外字の表示がきちんとされていれば十分です。
    FDF Toolkitを使用して、サーブレット上でテキストフィールドに外字を含んだ文字列をセットするというアプリケーションです。
    AdobeReaderで開いた際、テキストフィールドには空白文字(フォントの設定によっては●)が入っており、選択コピーして、他アプリケーション(テキストエディタなど)に貼り付けてみ ると、きちんと目的の外字がはいっていたことが確認されるといった状況です。
    やっぱり無理なんでしょうか?

Maybe you are looking for