bombino icon indicating copy to clipboard operation
bombino copied to clipboard

How to debug?

Open kartik1225 opened this issue 3 years ago • 0 comments

For of all thank you so much for making this!

So, I just want print/see all the object members from the jsx file. for example

(function test() {
    // alert("from jsxx");
    var active = app.project.activeItem;
    if(active instanceof CompItem){
        for (var i = 1; i <= active.layers.length; i++) {
            console.log(active.layer(i));
        }
    }
}())

so how do I print this?

kartik1225 avatar Apr 12 '21 13:04 kartik1225