0

在 Indesign 中放置/绘制 svg 元素后,我想从部分或全部元素更改样式。在我的示例中,我在绘制 textFrame 时设置它们的样式。我的例子有效。

但是放置 textFrames如何更改样式?

我想使用倾斜角度(应用于TextFrame)和rotationAngle(看我的例子-> forLoop)

我尝试了以下方法:r.textFrames.shearAngle=20;并且doc.textFrames.add({shearAngle:20});......但两者都不起作用。

    #includepath "~/Documents/;%USERPROFILE%Documents";
    #include "basiljs/bundle/basil.js";

    // this script shows how to load data into 
    // basil for further usage. 
    // The document you are working with needs to be saved at least once. 
    // The data needs to be in a folder next to that document 
    // The folder needs to be named "data" 
    // take a look into the output of the JS console of the ESTK
    function draw() {
      var doc = b.doc();
      b.clear(doc); // clear the doc
      b.units(b.MM); // use MM
      var yTextFrame = 195;
      // get the scripts name// get its containing folder// get the name of the script without the extension // add the .indd to the extension
      var fname = File($.fileName).parent.fsName + '/' + ($.fileName.split('/')[$.fileName.split('/').length - 1]).split('.')[0] + '.indd';
      // and save it
      doc.save(fname, false, 'basil', true); //save the file next to the script

      // code goes here -----------
      var filecontent = b.loadString("data.json"); // load the text file
      b.println(filecontent.constructor.name); // take a look at what kind of content we have
      var json = b.JSON.decode(filecontent); // transform it to JSON
      b.println(json.constructor.name); // take a look again what json is
      b.println(json.description); // print something from the file
      // loop all the entries
      for (var i = 0; i < 5; i++) {
        b.println(json.laundry_care_instructions[i].instruction); // take a look at the entry
        b.println(json.laundry_care_instructions[i].instruction.length); // how many characters does the entry have
        var r =b.text(json.laundry_care_instructions[i].instruction, 10 + 7 * i, yTextFrame, b.width - 20, 7).properties={rotationAngle:90, shearAngle:20};// create a text box with the entry // // The skewing angle applied to the TextFrame 
      }
      // end of your code ---------

    }
    b.go();
4

1 回答 1

1

你几乎明白了。在您的代码中,该变量r已经是一个 textFrame 对象。

所以应该是:

r.shearAngle = 20; 

明天课堂见;-)

编辑1:

正如评论中所说。编码

var r = b.text("txt",x,y,width, height).properties = {something:10};

返回properties对象。不是文本框。移除.properties零件,Benedikts 和我的方式应该可以工作。

编辑2:

Benedikts 的方式行不通。我收到以下错误。

Error: Object does not support the property or method 'shearAngle'

@Benedikt:shearAngle 不是文本属性。它适用于 TextFrame、Rectangle、Oval 等 pageItems。Basil.js 中有没有办法设置这样的属性?嵌套属性又如何?我将为此设置一个新问题

于 2016-04-19T10:42:02.757 回答