Hi,
I am creating a text object and inserting that in to a scroll view, but instead of text i could see white rectangle .
If i doesn’t insert in the scroll view the text is appearing properly.
I read in this blog ,
https://coronalabs.com/blog/2013/06/26/wednesday-faqs-display-text-objects/
its because of exceeding the texture memory limit , but i am not using many display objects. What could be the possible problem, how can i over come it.
My code ,
chatScroll = widget.newScrollView{ width = chatBg.width - 50, height = chatBg.height - 280, hideBackground = true, horizontalScrollDisabled = true, } chatScroll.x = chatBg.x chatScroll.y = chatBg.y - 20
local myText=display.newText(displayTextGroup, "yuuu", myChatRect.x - 50,textY ,self.fontNormal, 35 ) myText:setFillColor(0,0,0) myText:toFront(); chatScroll :insert(myText)
Thanks,
Kumar KS.