RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[RESOLVED] Fullscreen?

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 88
Hello there.
I just wonder.. how do I make my game start up as Full Screen?
« Last Edit: December 08, 2006, 04:07:42 PM by Blizzard »
I am on a project.

********
EXA
Rep:
Level 92
Pikachu on a toilet
Project of the Month winner for April 2007
http://rmrk.net/index.php/topic,8907.0.html

There 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.

Code: [Select]
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
Get King of Booze for Android, for iOS, for OUYA or for Windows!
Visit our website.
You can also love/hate us on Facebook or the game itself.


Get DropBox, the best free file syncing service there is!

**
Rep:
Level 88
I am on a project.