i need to change the text of the switch application MenuItem to "changer d'application" in French. I think it's not a deafult menu Item. I do searchs and I found a code returning the id and the ordinal of all the menuItems:
for (int i = 0; i < 100; i++) {
try {
MenuItem item = MenuItem.getPrefab(i);
System.out.println("Item found: "+item.toString());
System.out.println("id: "+item.getId()+" index: "+i);
} catch (Exception e) {
System.out.println("No item for "+i);
}
}
It didn't work for switch application! Have someone please any idea about how to change the text of switch application? thanks