Inventsable / bombino

Supercharged Adobe CEP panel generator for Vue with dynamic template support for Vue-CLI and Quasar-CLI
MIT License
98 stars 16 forks source link

How to debug? #15

Open kartik1225 opened 3 years ago

kartik1225 commented 3 years ago

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?