http://rmrk.net/index.php/topic,8907.0.htmlThere is an add-on that will ask the player at the beginning if he wants to switch to fullscreen. If you want it to go automatically fullscreen, just put this code under "begin" in your "Main" script. Note that it won't go fullscreen in test play mode.
unless $DEBUG
unless $keybd
$keybd = Win32API.new 'user32.dll', 'keybd_event', ['i', 'i', 'l', 'l'], 'v'
$keybd.call 0xA4, 0, 0, 0
$keybd.call 13, 0, 0, 0
$keybd.call 13, 0, 2, 0
$keybd.call 0xA4, 0, 2, 0
end
end