If I use (on a text frame):
b.selection().fit(FitOptions.frameToContent);
Then it works as expected, this means that the selected object has a fit method.
If I use:
for (var property in b.selection()) {
b.println(property);
}
On the same selection then it doesn't print a fit method.
If I use this:
function getMethods(obj) {
var result = [];
for (var id in obj) {
try {
if (typeof(obj[id]) == "function") {
result.push(id + ": " + obj[id].toString());
}
} catch (err) {
result.push(id + ": inaccessible");
}
}
return result;
}
b.println(getMethods(b.selection()));
Then I don't get the fit method either. And I would really like to know all methods and properties of the selected object. So how do i get them?
When method
fit()
exists and doesn't shine up in thefor-in-loop
it is a non-enumerable property.There are different ways to access the properties of an object:
If you don't find
.fit()
on one of this ways its not enumerable AND not OWN property of obj, but sits somewhere in the prototype of obj. Then you can do:Often objects have a bit longer prototype-chain and the property sits somewhere deeper on it. Then you just repeat the last snippet as often as needed:
To make it complete: Let's say you have found
.fit
on the obj's prototypeprot
. Then you can inspect it:That outputs an object which shows the value of
prot.fit
and whether it's enumerable, writable, and configurable or not. The Object.methods and some more FIND HERE.