12-13-2009, 05:36 PM
He may be looking for the old RMXP script code that makes it run automatically in full screen at startup.
Now I do not advocate (recommend) editing the default scripts, but all you have to do is paste this directly in the Main on the Script Editor. This works for both XP and VX systems.
There are other similar variants out there of this. It's been around since '05.
Code:
unless $keybd
$keybd = Win32API.new 'user32.dll', 'keybd_event', ['i', 'i', 'l', 'l'], 'v' #Recognizes keyboard
$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
Now I do not advocate (recommend) editing the default scripts, but all you have to do is paste this directly in the Main on the Script Editor. This works for both XP and VX systems.
There are other similar variants out there of this. It's been around since '05.