default resolution

2005-01-23 Thread Paul Salyers

How do I make a stack open up to the default resolution?
EX: 640X480, 800X600, 1200X1600 ect
Paul Salyers
PS1 - Senior Rep.
[EMAIL PROTECTED]
Http://ps1.SoftSeven.org
___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: default resolution

2005-01-23 Thread D.Rothe
Here is one example I use alot, this is suited for win xp.

on preOpenStack
-- get users screen size

put the screenrect into tScreenSize

set itemDel to ,

put item 3 of tScreenSize into tWidth

put item 4 of tScreenSize into tHeight

set the rect of this stack to 2,28,tWidth,tHeight

end preOpenStack


the line (set the rect of this stack to 2,28,tWidth,tHeight) allows for
window border size.
e.g
2 = from left
28 = from top
tWidth = width of screen size
tHeight = height of screen size
You could also use tWidth-2 , tHeight-4 to show more border
Play around with it to suit your needs

Cheers Dwayne.
 --
 How do I make a stack open up to the default resolution?

 EX: 640X480, 800X600, 1200X1600 ect


 Paul Salyers
 PS1 - Senior Rep.
 [EMAIL PROTECTED]
 Http://ps1.SoftSeven.org


 --

___
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution