Hi, I am using the config.lua from this link: https://coronalabs.com/blog/2013/09/10/modernizing-the-config-lua/
I have created my background image to be the size of 900x1425, width and height respectively. And then used this code to display the background image:
local group = self.view -- I'm using storyboard local background = display.newImageRect(group, “background.png”, 900, 1425) background.x = display.contentCenterX background.y = display.contentCenterY
The background seemed to load fine on different devices (i.e., iPhone 4, 5, S3). The problem I’m having is with putting other images. I’ve uploaded a sample picture to describe what I’m talking about. I’m using a grid as a background image, so suppose when I put an image at a certain point (red X) on top of the grid background for iPhone 5…if I load it on a different device, the image shown is not at the same position on the grid (yellow X) as it was in iPhone 5. I need the image to stay at the same position respectively to the grid as it helps people to solve the game.
Help please.