----------------------------------- appling Tue Nov 04, 2003 5:04 pm appear the word in the corner? ----------------------------------- :shock: h0w can i make a w0rd appears in the 4 c0rners of the screen. i d0n't want t0 use l0cate.Is there an0ther way??? :?: :?: ----------------------------------- Homer_simpson Tue Nov 04, 2003 5:50 pm ----------------------------------- you can use fonts if u make a graphic window and use maxx and maxy to detect the edges of yer window. ----------------------------------- PaddyLong Tue Nov 04, 2003 7:21 pm ----------------------------------- well l0cate wouldn't work any way because the command I think you meant was locate .. notice the difference, it's a letter 'o' rather than a number zero :twisted: haha ----------------------------------- Andy Tue Nov 04, 2003 8:44 pm ----------------------------------- u can always use locatexy ----------------------------------- appling Tue Nov 04, 2003 9:28 pm ----------------------------------- i see, it's locate, so any other ways? ----------------------------------- poly Wed Nov 05, 2003 6:50 pm ----------------------------------- could do it like this setscreen ("graphics : 800;640 ") var font1 : int := Font.New ("serif:12") Font.Draw ("Bottom Left", 1, 1, font1, red) Font.Draw ("Top Left", 1, maxy-15, font1, red) Font.Draw ("Top Right", maxx-90, maxy-15, font1, red) Font.Draw ("Bottom Right", maxx-90, 1, font1, red)