Text placement over a solid bitmap color.

In the same script how do I

In the same script how do I go about pasting a string of text over the blue background. Just a simple line of text like "Hello how are you?"

I've been having issues getting that to work right.
Thanks

John

rollout color1 "color"
(
colorpicker theColor "Bar Color: " color:[0,0,255] modal:false

button btnMake "Make" width:140 height:24

on btnMake pressed do
(
curcolor = theColor.color
bm1=bitmap 100 100 color:curcolor
display bm1
)

)
createDialog color1 150 60