...
Panel | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
ON THIS PAGE
|
Insert excerpt
...
Code Block | ||
---|---|---|
| ||
meta = CreateObject("roAssociativeArray") meta.AddReplace("CharWidth", 20) meta.AddReplace("CharLength", 32) meta.AddReplace("BackgroundColor", &H101010) ' Dark grey meta.AddReplace("TextColor", &Hffff00) ' Yellow vm = CreateObject("roVideoMode") tf = CreateObject("roTextField", vm.GetSafeX(), vm.GetSafeY(), 20, 20, meta) print #tf, "Hello World" tf.SetCursorPos(4, 10) print #tf, "World Hello" |
...