赞 | 0 |
VIP | 5 |
好人卡 | 14 |
积分 | 15 |
经验 | 110639 |
最后登录 | 2015-10-15 |
在线时间 | 1157 小时 |
Lv3.寻梦者 小柯的徒弟
- 梦石
- 0
- 星屑
- 1515
- 在线时间
- 1157 小时
- 注册时间
- 2008-5-24
- 帖子
- 3085
|
本帖最后由 「旅」 于 2009-7-27 17:56 编辑
II>/////<那个啥,就是改变窗口大小后,(如下),Graphics.freeze还没Graphics.transition时,那个超过640*480的图片却不固定。
不知道你有没有办法改善……- 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 = 0#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, 115, 65, w, h, SWP_NOMOVE)
- return ok
- end
- end
- title = Win32API.GetPrivateProfileString("Game", "Title")
- hWnd = Win32API.FindWindow("RGSS Player", title)
- ok = Win32API.SetWindowPos(hWnd,800,630)
- if(ok == 0)
- p "変更失敗"
- end
复制代码 另,因为和家里人分摸电脑的时间,我再出现时不是上午就是下午,不是下午就是晚上。
编辑下,那个,看到顶楼最下面,已经结束了吗?如果是请无视我>< |
|