try {
File json_file = new File(src_base,"common/controls2.json");
String text = new Scanner( json_file ).useDelimiter("\\A").next();
JSONObject rootJSON = new JSONObject(text);
final BufferedImage skinpng = ImageIO.read(new File(src_base,"common/skin.png"));
final Image skin = Image.create(skinpng);
JSONArray root = rootJSON.getJSONArray("controls");
for(int i=0; i<root.length(); i++) {
u.p("control = " + root.getJSONObject(i).getString("name"));
set.addSymbol(createControl(root.getJSONObject(i),skin));