Computer Science Canada

How do I make these pictures fit the whole screen?

Author:  rbb [ Wed May 28, 2003 1:56 pm ]
Post subject:  How do I make these pictures fit the whole screen?

I know the code to insert pics but how would you insert these pictures for the whole screen? Also with this GUI Could I make it where if they click on a button that they are directed somewhere else?

Author:  Tony [ Wed May 28, 2003 3:36 pm ]
Post subject: 

you mean like tile set for the whole screen? then you can use this
code:

for y:1..maxy by pictureHeight
for x:1.. maxx by pictureWidth
Pic.Draw(x,y,picID,picCopy)
end for
end for


: