Also ich habe folgendes aus dem WDL Tutorial genommen, reicht das nicht?
Text screen_txt // text object for displaying our strings
{
font = _a4font; // standard font
pos_x = 5; // text begins at (5,40) screen position (in pixels)
pos_y = 40;
}
function print(str) // display a string parameter on the screen
{
screen_txt.string = str;
screen_txt.visible = on;
}