INDDで常にIDMLを保存するスクリプト


8

INDDファイルとIDMLコピーを同時に保存するInDesignの既存のスクリプトはありますか?

私は数十人の独立したデザイナーと共同プロジェクトを行っていますが、Creative Cloudを使用している私たちは、以前のバージョンのIDMLコピーを必ず保存する必要があります。そして、私たちはしばしば忘れます。

たとえば、「IDMLで保存」というメニュー項目を追加し、現在のドキュメントとIDMLコピーの両方を一緒に保存するスクリプトを見つけたり、微調整したりしたいと思っています。


保存ではなく、常にパッケージ化できます
Manly

回答:


7

この例はあなたを始めるでしょう。InDesignセッションごとに1回スクリプトを実行する必要があります。たとえば、起動スクリプトとして追加できます。ユーザーがドキュメントをidmlファイルに保存するたびに保存されます。

#targetengine "session"
// we need a targetegine to make this work
var doc = app.activeDocument; // get the current doc

// now to the event listener
app.addEventListener('afterSave', function(theEvent) {
  $.writeln('saving'); // just to see whats going on
  if (!doc.saved) {
    // catch those possible mistakes
    alert('doc was never saved');
    exit();
  }
  var aName = doc.name; // get the name
  var newName = aName.replace("indd", "idml"); // replace the indd to idml
  // crate a new File Object next to the indd
  var theFile = File(File(doc.filePath).fsName + "/" + newName);
  // export
  doc.exportFile(ExportFormat.INDESIGN_MARKUP, theFile, false);
});

あなたはメニューコマンドとしてこれをしたい場合は、上のこのブログの記事に見てみることができindiscripts


5

ありがとう、@ fabiantheblind、見事に動作します。これをスタートアップスクリプトとして機能するように変更しました(ドキュメントが開かれるのを待ちます)。

// Set a targetengine to make this work
#targetengine "session"

function saveIDML() {
    // Exit if no documents are open.
    if(app.layoutWindows.length == 0) {
        return;
    } else {
        // Get the current document
        var doc = app.activeDocument;
        $.writeln('Saving IDML of ' + doc + ' ...');
        // Catch errors
        if (!doc.saved) {
          alert('Sorry, there was a problem and the document was not saved.');
          exit();
        }
        // Create a new .idml file name from the .indd file name
        var inddName = doc.name;
        var idmlName = inddName.replace("indd", "idml");
        // Create the new .idml file next to the .indd file
        var theFile = File(File(doc.filePath).fsName + "/" + idmlName);
        doc.exportFile(ExportFormat.INDESIGN_MARKUP, theFile, false);
    }
}
// Listen for the save event
app.addEventListener('afterSave', saveIDML, false);

1
これは意味がありません-開いているすべてのドキュメントでイベントリスナーを再度追加しています。つまり、たとえば5番目に開いたドキュメントの後で、エクスポートが5回行われます。fabianのスクリプトを使用するだけで大丈夫です
トビアスキエンツラー

ありがとう、@ TobiasKienzler!それを避けるためにバージョンを編集しました。
Arthur

私にはずっと良く見えます:)
トビアス・キエンツラー

0

@Arthurのスクリプトは非常に便利です。しかし、私はそれだけを使用していたafterSaveが、またafterSaveAsして:(ちょうど別のイベントリスナーのコマンドを追加拡張が容易であった)afterSaveACopy(;私はで助けをシークしている私は自分自身で達成できなかったcommunity.adobe.com)。

これで、3つのユースケースすべてで機能するスクリプトが作成されました。以下を参照してください。

// src: https://community.adobe.com/t5/indesign/get-the-name-of-the-document-created-by-save-a-copy/m-p/10997427#M179868 (based on https://graphicdesign.stackexchange.com/a/71770, which is based on https://graphicdesign.stackexchange.com/a/71736)
// author: Fabian Morón Zirfas (fabianmoronzirfas@graphicdesign.stackexchange.com), modified by Arthur (Arthur@graphicdesign.stackexchange.com), modified by Sunil_Yadav1 (Sunil_Yadav1@community.adobe.com)
// date: 24 March 2020

// Set a targetengine to make this work
#targetengine "session"

function saveIdml() {
    if(app.layoutWindows.length == 0) {
        return;
    } else if (! app.activeDocument.saved) {
        alert('Sorry, there was a problem and the document was not saved.');
        return;
        }

    var idmlPath = app.activeDocument.filePath.fsName.replace(/\\/g,'/') + '/' + app.activeDocument.name.replace(/\.indd|\.indt/g, '.idml');
    app.activeDocument.exportFile(ExportFormat.INDESIGN_MARKUP, idmlPath, false);
    }

function saveACopyIdml(e) {
    var idmlPath = File(e.properties.fullName).fsName.toString().replace(/\\/g,'/').replace(/\.indd|\.indt/g, '.idml');
    app.activeDocument.exportFile(ExportFormat.INDESIGN_MARKUP, idmlPath, false);
    }

// Listen for the save event
app.addEventListener('afterSave', saveIdml, false);
app.addEventListener('afterSaveAs', saveIdml, false);
app.addEventListener('afterSaveACopy', saveACopyIdml, false);
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.