Hi,
Is there a system action that does the same thing as runtime.getAllLayouts();
I just want an array with all the layout-names.
At this moment I do it this way, and it works, but I am just wondering if this can be done without using scripting:
let larray = runtime.getAllLayouts();
let a = runtime.objects.Array.getFirstInstance();
a.setSize(larray.length,1,1,);
for (let i = 0; i < larray.length; i++){
a.setAt(larray.name,i-1);
}
Thanks!
(I posted this topic in 'How do I...? and not in scripting because I have a question about doing something without scripting. )
Wim