you can also show the console at the top or at the bottom since 1.19pr13 or 14
but you cant show the layer names
depending on the layer structure this wouldn't be easy to read,
where would you put the names? centered, lefttop?
often they are on top of each other, then you cant read it at all
for debugging you could do that yourself though
i'd do a loop going through layers and add a small text layer with the name
something like
|
Source code
|
1
2
3
4
5
6
7
8
9
10
11
12
|
for(i=0,i LT layer.count, inc(i),
txtadd(tl, get(layer[get(i)].name), '_title');
addlayer(get(tl));
copy(layer[get(tl)].parent, layer[get(i)].name);
set(layer[get(tl)].type, 'text');
set(layer[get(tl)].width, '100%');
set(layer[get(tl)].height, '100%');
set(layer[get(tl)].align, 'lefttop');
copy(layer[get(tl)].html, layer[get(i)].name);
set(layer[get(tl)].css, 'text-align:left;font-size:6px;padding:5px;');
... etc, maybe set a border, too...
);
|
note, this is untested, just for the idea
now if you want a christmas project,
you could do a 2nd loop, checking if any titles are overlapping :)