武装突袭 Wiki
Advertisement
Introduced with Operation Flashpoint version 1.5
  Arguments of this scripting command have to be local to the client the command is executed onEffects of this scripting command are not broadcasted over the network and remain local to the client the command is executed on

点击图片可看到更多讯息

开始使用于

游戏:
Operation Flashpoint
版本:
1.5

描述

描述:
Selects the item with the given index of the listbox or combobox with id idc of the topmost user dialog.
To deselect all, use -1: _ctrl lbSetCurSel -1;

基本句法

句法:
lbSetCurSel [idc, index]
参数:
[idc, index]: Array
idc: Number of control
index: Number
返回值:
Nothing

替代句法

句法:
control lbSetCurSel index
参数:
control: Control
index: Number
返回值:
Nothing

范例

范例1:
lbSetCurSel [101, 0];
范例2:
_control lbSetCurSel 0;

额外资讯

多人游戏:
-
也可以看看:
lbAddlbClearlbColorlbCurSellbDatalbDeletelbIsSelectedlbPicturelbSelectionlbSetColorlbSetDatalbSetPicturelbSetSelectedlbSetTooltiplbSetValuelbSizelbSortlbSortByValuelbTextlbValue

注意事项

此处撰写句法皆为可行用法. 可到官网[1]专页回报错误. 你可以使用讨论页面或是论坛来进行讨论.
新增注意事项 | 如何新增?

Notes

Posted: Sep 10 2014
ffur2007slx2_5
More information on the LB command family can be found here

Bottom Section

Posted on November 29, 2014 - 23:40 (UTC)
DreadedEntity
lbSetCurSel -1 has no effect while the listbox is populated. You should use lbClear first, then lbSetCurSel -1, then re-populate the listbox.
Posted on March 1, 2015 - 18:37 (UTC)
Longbow
Keep in mind that running this command against control will fire attached 'onLBSelChanged' event handler.
Advertisement