I'd like to display a window with a text inside it. Here is my code (inside the mouse click hook handler)
But that ONLY creates the windows itself, no texet is printed.
What I'm doing wrong?
Code:
...
create_win_flag("inven_loot_weight", 0, 0, 120, 60, WIN_FLAG_DONTMOVE);
selectWin("inven_loot_weight");
sfall_func0("win_fill_color");
SetTextColor(1.0, 0.1, 0.0); // red color
Format("Hello", 0, 5, 60, 10, justifycenter);
ShowWin;
...
But that ONLY creates the windows itself, no texet is printed.
What I'm doing wrong?