@MelGohan
Hello!
Thanks for the reply.
I debugged the part when loading images and all the paths of the images i wanted to load were correct.
The emulator didn't displayed the images correctly. And they're in black and white.
My images are 64x64 in size and the'yre colored.
Here is my code:
try{
characters[0] = Image.createImage("/mPackage/res/pics/menu/amazon.png");
characters[1] = Image.createImage("/mPackage/res/pics/menu/fatass.png");
characters[2] = Image.createImage("/mPackage/res/pics/menu/priestess.png");
characters[3] = Image.createImage("/mPackage/res/pics/menu/cyborg.png");
names[0] = "Amazon";
names[1] = "Fatass";
names[2] = "Priestess";
names[3] = "Cyborg";
}catch (Exception ex){
}
cGNewUser_CharacID = new ChoiceGroup("Choose character: ", Choice.EXCLUSIVE, names, characters);
Thanks again!
Message was edited by:
tee.pee
well, on the emulator the images must be on the res folder but the code understand it like the root. so you dont have to put the mPackage/res only the image /pics/menu/amazon.png. and hope this solves yor problem.
ON the emulator you should see the exception of FileNotFound if you catch it.