I know this is a stupid question but, i can't seem to get the nokia toolkit to load up the sprites for my game.
Image homeImage = Image.createImage("/home.png");
homeSprite= new Sprite (homeImage);
Image backgroundImage = Image.createImage("/bg.png");
backgroundSprite = new Sprite (backgroundImage);
layerManager = new LayerManager();
layerManager.append(homeSprite);
layerManager.append(backgroundSprite);
and they are in the main directory. Am i doing something wrong?
I tryed adding the files into resources tab of the aplication creator, but the files do not apear.

Reply With Quote

