Problem with object's screen position on samsung device

Hello Masters,

 I have a problem displaying the correct result on the image that i want to display with the samsung devices. iPhone screen default position of (0,0) is okay however on samsung it is displaying differently i have attached my screenshot.

I can’t figure it out how to put my image object on the edge of the screen in samsung devices. I can’t find the right answer on the docs either,  I am still new to corona please enlighten me what is going on… I also pasted my code:

local ruler = {} local text = {} local counter = 0; for i = 1, 40 do counter = counter + 20 ruler[i] = display.newImage("assets/pin.png",0,0) ruler[i].achorX = 0 ruler[i].x = ruler[i].x + counter ruler[i].y = 0 text[i]= display.newText("",0,0, "Helvetica", 12 ) text[i].text = ruler[i].x .. "|" text[i].x = ruler[i].x text[i].y = 20 end

Thanks,

Andy

Hi Andy,

This is related to the “content area” in Corona. Since it’s a very fundamental thing you should understand before proceeding too much further, I encourage you to read the guide and watch the video to learn about how the content area is handled:

https://docs.coronalabs.com/guide/basics/configSettings/index.html

http://youtu.be/RwVlzJtQWd8

Take care,

Brent

Hi Andy,

This is related to the “content area” in Corona. Since it’s a very fundamental thing you should understand before proceeding too much further, I encourage you to read the guide and watch the video to learn about how the content area is handled:

https://docs.coronalabs.com/guide/basics/configSettings/index.html

http://youtu.be/RwVlzJtQWd8

Take care,

Brent