/* hello World Version: 1.0 Gregor Fellenz http://www.indesignblog.com/ Blogeintrag: http://www.indesignblog.com/?p=3 */ // Neues Dokument erstellen var _dokument = app.documents.add(); // Textframe mit Text Hallo Welt befüllen var tf = _dokument.pages[0].textFrames.add(); tf.geometricBounds = [10,10,100,100]; tf.insertionPoints[0].contents = "Hallo Welt!";