Hello, I wanted to retrieve and use the checkmark icon used in front of selected menu items. I read many documents about "Embed" metadata and so on, but I found no way to simply get the "default" asset - the one coming with the default theme. The only way I found to do so is to create a dummy Menu object to retrieve the icon :
public var imgChk:Class;
var men:Menu = new Menu();
men.regenerateStyleCache(false);
imgChk = men.getStyle("checkIcon");
Is there a simplier way to get this "checkIcon" ?

