最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to check if a property value is readonly using extendscript? - Stack Overflow

programmeradmin1浏览0评论

I'm writing a script for After Effects that collects all properties from a layer and write them into an XML file. When I retrieve the values from the XML, some values are readOnly and the toolkit throws an error.

Is there any way to check it, like readonly attribute of File object? ie: layer.property().(readonly||readOnly)

If not, someone can tell me wich aproach can I take to go in the right direction?

I'm writing a script for After Effects that collects all properties from a layer and write them into an XML file. When I retrieve the values from the XML, some values are readOnly and the toolkit throws an error.

Is there any way to check it, like readonly attribute of File object? ie: layer.property().(readonly||readOnly)

If not, someone can tell me wich aproach can I take to go in the right direction?

Share Improve this question asked Aug 2, 2015 at 13:01 MiguelMiguel 7878 silver badges22 bronze badges 3
  • I guess I'm a bit confused because if you are writing the values successfully to the XML file, then that should just be a plain text file, and you should be able to read any property there. If you are retrieving the properties, then all you should need to do is read them. – ariestav Commented Aug 3, 2015 at 1:31
  • @ariestav: OP doesn't mention it but it seems he wants to set them on reading. – Jongware Commented Aug 3, 2015 at 6:27
  • Bummer. I was going to suggest Object Reflection and its 'properties' array "ReflectionInfo" (which promised to tell me if it's "one of unknown, readonly, readwrite, createonly, method or parameter"), but testing on InDesign everything except reflect seems to be tagged Read/Write – even for properties clearly marked Read Only in the object's properties! – Jongware Commented Aug 3, 2015 at 19:41
Add a ment  | 

3 Answers 3

Reset to default 4

Given that the first item in the project is a p with a solid in it, this works but it is arguably kludgey, and you'd need to be able to build the (each) string in order to do this -- but maybe you are already set up to do that:

var r;
r = testForReadability("app.project.items[1].layers[1].enabled");
alert(r);
r = testForReadability("app.project.items[1].layers[1].width");//a solid's width is NOT writable
alert(r);

function testForReadability(thisProperty) {
    var x;
    try {
        x = eval(thisProperty);
        eval(thisProperty + " = x;");
        return true;
    } catch(e) {
        return false;
    }
}

However, there is a small can of worms opening up here, in that "false"s will not work if the "Enable Script Debugger" option is set. So you need to do a workaround in order to check for this setting and temporarily reset it (see http://aenhancers./viewtopic.php?f=8&t=189&p=554&hilit=debugger#p554 )

I don't think you can get this information from the ESTK.

You can use the 'After Effects Scripting Guide Book' to check and create an object that contains all the 'readonly' properties, and then to check if the object includes this property.

Here's a link for the scripting guide: After-Effects-CS6-Scripting-Guide

Just try to override it, and revert it back, like this:

function isReadOnly(value, container) {
  var tmp = container[value];
  var tmp2;
  var coolString = "cool";
  try {
    container[value] = "cool";
  } catch (e) {
    return true
  }
  tmp2 = container[value];
  container[value] = tmp;
  return coolString != tmp2;
}

// true, navigator.platform is read only
console.log(isReadOnly("platform", navigator))

// false, window.parent is not read only
console.log(isReadOnly("parent", window))

发布评论

评论列表(0)

  1. 暂无评论