赞 | 123 |
VIP | 13 |
好人卡 | 16 |
积分 | 198 |
经验 | 38692 |
最后登录 | 2024-12-18 |
在线时间 | 3118 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 19819
- 在线时间
- 3118 小时
- 注册时间
- 2013-1-11
- 帖子
- 1292
|
本帖最后由 张咚咚 于 2013-1-13 12:13 编辑
把下面的脚本插入到Main前面
#-----------------------------------------------------------------------------
# ● 只是用来窗口大小变更的
# ○ 来源秀秀Win32API教程之一(基础篇)
#-----------------------------------------------------------------------------
class Win32API
GAME_INI_FILE = ".\\Game.ini"
def Win32API.GetPrivateProfileString(section, key)
# 初始化
val = "\0"*256
gps = Win32API.new('kernel32', 'GetPrivateProfileString',%w(p p p p l p), 'l')
gps.call(section, key, "", val, 256, GAME_INI_FILE)
val.delete!("\0")
return val
end
def Win32API.FindWindow(class_name, title)
fw = Win32API.new('user32', 'FindWindow', %(p, p), 'i')
hWnd = fw.call(class_name, title)
return hWnd
end
HWND_TOP = 0
HWND_TOPMOST = -1
SWP_NOMOVE = 2
def Win32API.SetWindowPos(hWnd, w, h)
swp = Win32API.new('user32', 'SetWindowPos', %(l, l, i, i, i, i, i), 'i')
ok = swp.call(hWnd, HWND_TOP, 200, 200, w, h, SWP_NOMOVE)
return ok
end
end
title = Win32API.GetPrivateProfileString("Game", "Title")
hWnd = Win32API.FindWindow("RGSS Player", title)
ok = Win32API.SetWindowPos(hWnd,800,640)
if(ok == 0)
p "変更失敗"
end |
|