Project1
标题:
【求助】真·分辨率
[打印本页]
作者:
Ж纯Ж蓝Ж
时间:
2010-9-18 21:49
标题:
【求助】真·分辨率
很纠结的问题啊。
XP的分辨率一直是1024×768。
用了扩大屏幕的脚本也没用啊- -
要是能有真·XP分辨率就好了。
以上。
帮忙吧囧- -
作者:
fux2
时间:
2010-9-18 22:01
RGE不是很容易实现吗?
作者:
逸豫
时间:
2010-9-19 09:46
http://rpg.blue/upload_program/d ... B8%81_117745798.rar
作者:
李光兆
时间:
2010-9-24 09:33
............
电脑分辨率改改
作者:
嘿咻大侠
时间:
2010-10-8 23:32
这个
宽度=800
高度=600 可以自由改,只要你的图片是那么大的
注意:脚本中还有一些X.Y的值要改,比如标题界面的选框
if $myfirst == nil
$myfirst = 'myGod'
宽度=800
高度=600
游戏ini名=".\\Game.ini"
val = "\0"*256
gps = Win32API.new('kernel32', 'GetPrivateProfileString','pppplp', 'l')
gps.call("Game", "Title", "", val, 256, 游戏ini名)
val.delete!("\0")
title = val
fw = Win32API.new('user32', 'FindWindow', 'pp', 'i')
hWnd = fw.call("RGSS Player", title)
swp = Win32API.new('user32', 'SetWindowPos', 'lliiiii', 'i')
pointwds = [0,0,0,0].pack('llll')
pointcet = [0, 0].pack('ll')
wdsrect = Win32API.new('user32.dll', 'GetWindowRect', 'lp', 'l')
client_screen = Win32API.new("user32", "ClientToScreen", 'ip', 'i')
wdsrect.call(hWnd,pointwds)
client_screen.call(hWnd, pointcet)
wds = pointwds.unpack('llll')
cet = pointcet.unpack('ll')
addw = wds[2] - wds[0] - 640
addh = wds[3] - wds[1] - 480
x = wds[0] - (宽度 - 640) / 2
y = wds[1] - (高度 - 480) / 2
swp.call(hWnd, 0, x, y, 宽度 + addw, 高度 + addh, 0x20)
end
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1