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