Hi,
I have an app in development which takes text from a database, this text could consist of 2 or more paragraphs of text of varying sizes.
I am using a wrap text function I found to wrap the text on the page, however I dont know how to get the 2nd paragraph to start underneath the first paragraph it is just overwriting, this is the code I have:
[lua]for item in db:nrows(sql) do
– Build the text
local description = wrappedText(item.description, 41, 23, native.systemFontNormal, {255,255,255});
description.x=25;
description.y=120;
scrollView:insert(description);
end[/lua]
Any help on this would be great. Also… is it possible to store images in blobs and call them out in corona? I haven’t seen any examples of this.
Thanks
Kevin [import]uid: 72726 topic_id: 13380 reply_id: 313380[/import]
