diff --git a/rezpy.py b/rezpy.py index 82591cf..c74cf7b 100644 --- a/rezpy.py +++ b/rezpy.py @@ -32,7 +32,24 @@ rSimpleButton(rect(x=10, y=10, height=13, width=90), "Save",default=True) rWindParam1(rect(x = 20, y = 20, height=100, width=100), "hello") rControlList( - rThermometerControl( (5, 5, 10, 55), value = 10, scale=100) + rThermometerControl( (5, 5, 10, 55), value = 10, scale=100), + rStatTextControl( (5, 5, 10, 55), + "this is a test…", + centerJust = True, + fSquishText = True + ) +) + + +rCString( + + "this is a long string with\r\n" + "extra characters and stuff …" +) + +rTextBlock( + "\t\r\a\"\\'", + id = range(10,20) )