赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 7440 |
最后登录 | 2017-2-7 |
在线时间 | 1 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1 小时
- 注册时间
- 2008-7-28
- 帖子
- 432
|
以下引用liaoliao0896于2008-9-10 11:13:11的发言:
设置滚动条的长度是 记录总数/页 滚动条上面是 然后判断点击的地方 来判断到底是翻到第几页 # 按下方向键左或者 L 的情况下
if Input.repeat?(Input::LEFT) or Input.trigger?(Input::L)
# 演奏光标 SE
$game_system.se_play($data_system.cursor_se)
# 前翻一页
@savefile_windows[@file_index].selected = false
@file_index = (@file_index + @slots - 4) % @slots
for index in @file_index / 4 * 4..@file_index / 4 * 4 + 3
@savefile_windows[(index + 4) % @slots].visible = false
load_window(index)
@savefile_windows[index].visible = true
end
@savefile_windows[@file_index].selected = true
return
end
改下这个代码
按箭头的话就是执行和光标上下一样的代码,拖动就不要去实现了,比较麻烦
好象也只能这样了。。。。。那么请问怎么设置箭头呢?
|
|