If you are looking for the decompiler itself, visit https://github.com/jindrapetrik/jpexs-decompiler
NEW : We have got a new blog where we post some interesting SWF internals info.

#871 Show the needed character ids
Author:
honfika

Date created:
Type: feature
Visibility: Everybody
Assigned to:
Labels: GUI
State: closed 

When you select a tag in the tagtree, it would be nice to see somewhere on the UI the IDs
of the needed characters.
The code which gets them is very simple, I already added it to mainPanel.valueCahnged, it
needs only a UI componenet to show it.
if (treeItem instanceof Tag) {
Tag tag = (Tag) treeItem;
Set<Integer> needed = new HashSet<>();
tag.getNeededCharactersDeep(needed);
String neededStr = Helper.joinStrings(needed, ", ");
....
}
It is done (Basic tag info)
State: new→closed