Hi Gary,
The upcoming 1.1 will make it possible to design taller pages than the device. But until then the TextArea is your next best friend. I confirmed that the Design Center does not provide a backgound color property for the TextArea. But you can modify the background color in the HTML runtime code as follows:
1) Open the <filename>.hml file and find the Id attribute of your <textarea> element.
example: <textarea id=”m1-Untitled1-textArea1” ….
2) Open the <filename>.css file and look for #Id where Id is the id attribute of the textarea
example:
#m1-Untitled1-textArea1{
height: 128px;
left: 40px;
top: 67px;
width: 240px;
background: RGB(255,0,0); /* <– change color red */
}
3) run in Test Center (actually I used the Test Center’s View Source action to open and edit the CSS directly
Wayne
Genuitec Mobile Team