Computer Science Canada

appear the word in the corner?

Author:  appling [ Tue Nov 04, 2003 5:04 pm ]
Post subject:  appear the word in the corner?

Shocked 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??? Question Question

Author:  Homer_simpson [ Tue Nov 04, 2003 5:50 pm ]
Post subject: 

you can use fonts if u make a graphic window and use maxx and maxy to detect the edges of yer window.

Author:  PaddyLong [ Tue Nov 04, 2003 7:21 pm ]
Post subject: 

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 Evil haha

Author:  Andy [ Tue Nov 04, 2003 8:44 pm ]
Post subject: 

u can always use locatexy

Author:  appling [ Tue Nov 04, 2003 9:28 pm ]
Post subject: 

i see, it's locate, so any other ways?

Author:  poly [ Wed Nov 05, 2003 6:50 pm ]
Post subject: 

could do it like this
code:

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)


: