TextBox on Android

This should work?

local tb = native.newTextBox( 0, 0, 300, 100 )
tb.text = “This is a test”
tb.setTextColor( 0, 0, 255 )
tb.hasBackground = true
tb.size = 24

I have only this code in a test-app im doind to understand UI native. The text doesnt not visible, only a blank white box, without text.

Im using Andorid 2.2. Is this right ? [import]uid: 9133 topic_id: 6378 reply_id: 306378[/import]

try colon not dot?

tb:setTextColor( 0, 0, 255 )
[import]uid: 23949 topic_id: 6378 reply_id: 22071[/import]