Ho un altro piccolo problema.
Devo inserire un bel pezzo di testo che inizi in cima allo schermo. Quando lo testo su corona è perfetto. Tuttavia quando lo provo su qualsiasi cellulare il testo viene visualizzato con due righe oltre la cima del cellulare. Come posso riaolvere? Vi inserisco il codice qua sotto. --TEXT
local options =
{text = “Spiders (order Araneae) are air-breathing arthropods that have eight legs and chelicerae with fangs that inject venom. They are the largest order of arachnids and rank seventh in total species diversity among all other orders of organisms.[1] Spiders are found worldwide on every continent except for Antarctica, and have become established in nearly every habitat with the exceptions of air and sea colonization.”,
x = 0,
y = 220,
width = 298,
font = Helvetica,
fontSize =14,
align = “left”
}
local textObject = display.newText (options)
textObject:setFillColor (0)
textObject.x = display.contentCenterX
scrollView:insert (textObject)