赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 28405 |
最后登录 | 2017-12-29 |
在线时间 | 241 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 75
- 在线时间
- 241 小时
- 注册时间
- 2013-3-28
- 帖子
- 67
|
本帖最后由 你欠抽吧 于 2013-8-29 17:40 编辑
- #==============================================================================
- # 本脚本来自www.66RPG.com,使用和转载请保留此信息
- #==============================================================================
- # ————————————————————————————————————
- # 本脚本来自www.66rpg.com,转载请保留此信息
- # ————————————————————————————————————
- #ウィンドウサイズの変更(v1.00)
- 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, 0, 0, w, h, SWP_NOMOVE)
- # 下の行を有効にすると、常に前面に表示されるウィンドウになる。
- #ok = swp.call(hWnd, HWND_TOPMOST, 0, 0, w, h, SWP_NOMOVE)
- return ok
- end
- end
- title = Win32API.GetPrivateProfileString("Game", "Title")
- hWnd = Win32API.FindWindow("RGSS Player", title)
- # 幅320、高さ480に変更
- ok = Win32API.SetWindowPos(hWnd, 320, 480)
- if(ok == 0)
- p "サイズ変更失敗"
- end
- #==============================================================================
- # 本脚本来自www.66RPG.com,使用和转载请保留此信息
- #==============================================================================
复制代码 最后的320和480,自己改
来源http://rpg.blue/forum.php?mod=viewthread&tid=159577
——此回复不可行 |
|