If you could post your bar images, I could perhaps tell what the problem is. Bars have been a pain in the butt for a lot of people. Sorry they're so ... fragile! I usually have to babysit them myself, too.
When you edited the graphics from the sample game, did you adjust their length or height? If so, that should be reflected in the code. Find:
Code:
style.pref_slider.ymaximum = 29
style.pref_slider.xmaximum = 197
And set those numbers to the actual height and width of your new images.
Also, if I've completely misunderstood you, you have taken
this exact image and cropped/exported the bars in there? If so, that was totally unnecessary and actually kinda funny. xD That was just a screencap of my project folder. Those images, in their full size, already exist in the game folder. Here they are if you can't find them:
Attachment:
bar_full.png [ 1.24 KiB | Viewed 638 times ]
Attachment:
bar_hover.png [ 1.24 KiB | Viewed 638 times ]
Attachment:
bar_empty.png [ 611 Bytes | Viewed 638 times ]
2nd question: The final screen that you see is the combination of two types: imagemap and style. The preference screen (the upper part) is
styling, the navigation bar (Return, Save, Load, etc) was an
imagemap. Yes, each state of an imagemap must be its own image. That is why there are 5 image versions of the navigation. How did I get the navigation to be at the bottom? You're going to kick yourself: They're on the bottom of the image.
Attachment:
navigation_idle.png [ 13.85 KiB | Viewed 638 times ]
See how I have huge open spaces of nothing and then the buttons on the bottom? That's the easy way to do imagemaps. Make every image the fullsize of the screen and then place the items exactly where you want in your photo editor. I'm sure you could make smaller imagemaps and then place them manually, but why? Just use styling if you're going to go through that trouble. xD
The navigation is a separate screen all together, so I was allowed to mix imagemap and styles in one screen, since they're technically two screens, overlapped.
Am I making sense? Have you downloaded the sample game in the first post? All of the images in
this picture are in the "menu" folder inside of it.