lbSetPictureRight: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "[[Category:Scripting Commands ArmA|" to "[[Category:Scripting Commands Armed Assault|")
m (Text replacement - "{{Feature|Informative|" to "{{Feature|informative|")
 
(46 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| ofp |Game name=
|game1= ofp
|version1=


|1.5|Game version=
|game2= ofpe
|version2= 1.00


|arg= local |Multiplayer Arguments=
|game3= arma1
|version3= 1.00


|eff= local |Multiplayer Effects=
|game4= arma2
____________________________________________________________________________________________
|version4= 1.00


| Sets the second (right aligned) picture in the item with the given index of the listbox or combobox with id idc of the topmost user [[dialog]]. Name is the picture name. The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).<br>
|game5= arma2oa
In Arma 3 it might be necessary to set the color of the picture as well with [[lbSetPictureRightColor]] as default [0,0,0,0] color makes picture invisible.  
|version5= 1.50


{{Informative|When trying to select a listBox entry by clicking at the right picture, the control in the background is focused. It seems the width of the control is not extended by adding a right picture.}}|DESCRIPTION=
|game6= tkoh
____________________________________________________________________________________________
|version6= 1.00


| '''lbSetPictureRight''' [idc, index, name] |SYNTAX=
|game7= arma3
|p1= [idc, index, name]: [[Array]] |PARAMETER1=
|version7= 0.50
|p2= idc: [[Number]] of control |PARAMETER2=
|p3= index: [[Number]] |PARAMETER3=
|p4= name: [[String]] |PARAMETER4=
| [[Nothing]] |RETURNVALUE=


|s2= control '''lbSetPictureRight''' [index, name] |SYNTAX2=
|arg= local


|p21= control: [[Control]] |PARAMETER21=
|eff= local
|p22= [index, name]: [[Array]] |PARAMETER22=
|p23= index: [[Number]] |PARAMETER23=


|p24= name: [[String]] |PARAMETER4=
|gr1= GUI Control - ListBox
|r2= [[Nothing]] |RETURNVALUE2=
____________________________________________________________________________________________
 
|x1= <code>[[lbSetPictureRight]] [101, 0, "iskoda"];</code> |EXAMPLE1=


|x2= <code>_control [[lbSetPictureRight]] [0, "iskoda"];</code> |EXAMPLE2=
|descr= Sets the second (right aligned) picture in the item with the given index of the listbox or combobox with id idc of the topmost user [[dialog]]. Name is the picture name.
____________________________________________________________________________________________
The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).<br>
In {{arma3}} it might be necessary to set the color of the picture as well with [[lbSetPictureRightColor]] as default [0,0,0,0] color makes the picture invisible.


| [[lbAdd]], [[lbClear]], [[lbColor]], [[lbCurSel]], [[lbData]], [[lbDelete]], [[lbIsSelected]], [[lbPicture]], [[lbSelection]], [[lbSetColor]], [[lbSetCurSel]], [[lbSetData]], [[lbSetPicture]], [[lbSetSelected]], [[lbSetTooltip]], [[lbSetValue]], [[lbSize]], [[lbSort]], [[lbSortByValue]], [[lbText]], [[lbValue]], [[lbSetPictureColor]] |SEEALSO=
{{Feature|informative|When trying to select a listBox entry by clicking at the right picture, the control in the background is focused. It seems the width of the control is not extended by adding a right picture.}}


|s1= [[lbSetPictureRight]] [idc, index, path]
|p1= idc: [[Number]] of control
|p2= index: [[Number]]
|p3= path: [[String]]
|r1= [[Nothing]]
|s2= control [[lbSetPictureRight]] [index, path]
|p21= control: [[Control]]
|p22= index: [[Number]]
|p23= path: [[String]]
|r2= [[Nothing]]
|x1= <sqf>lbSetPictureRight [101, 0, "a3\3den\data\cfg3den\history\createcomment_ca.paa"];</sqf>
|x2= <sqf>_control lbSetPictureRight [0, "a3\3den\data\cfg3den\history\createcomment_ca.paa"];</sqf>
|seealso= [[lbPicture]] [[lbSetPicture]] [[lbSetPictureColor]]
}}
}}


<h3 style="display:none">Notes</h3>
{{Note
<dl class="command_description">
|user= Ffur2007slx2_5
<!-- Note Section BEGIN -->
|timestamp= 20140910163100
<dd class="notedate">Posted: Sep 10 2014</dd>
|text= More information on the [[CT_LISTBOX]] command family can be found [[CT_LISTBOX#Scripting_Example|here]].
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
}}
<dd class="note">More information on the LB command family can be found [[List Box|here]]
<!-- Note Section END -->
</dl>


<h3 style="display:none">Bottom Section</h3>
{{Note
[[Category:Scripting Commands|LBSETPICTURE]]
|user= R3vo
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
|timestamp= 20210406073400
[[Category:Scripting Commands OFP 1.96|LBSETPICTURE]]
|text= Adding pictures to lists is very slow. In order to prevent the filling of the list to be slowed down, add the pictures in the '''scheduled''' environment.
[[Category:Scripting Commands Armed Assault|LBSETPICTURE]]
One drawback of that method is, that sorting the entries is not easily possible.
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
<sqf>
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
private _path = _ctrlTV tvAdd [[], "Some Entry"];
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[_ctrlTV, _path] spawn {
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
(_this select 0) tvSetPictureRight [[_this select 1], "someImage.paa"];
};
</sqf>
}}

Latest revision as of 01:24, 2 February 2024

Hover & click on the images for description

Description

Description:
Sets the second (right aligned) picture in the item with the given index of the listbox or combobox with id idc of the topmost user dialog. Name is the picture name. The picture is searched for in the mission directory, the dtaExt subdirectory of the campaign directory and the dtaExt directory and the data bank (or directory).
In Arma 3 it might be necessary to set the color of the picture as well with lbSetPictureRightColor as default [0,0,0,0] color makes the picture invisible.
When trying to select a listBox entry by clicking at the right picture, the control in the background is focused. It seems the width of the control is not extended by adding a right picture.
Groups:
GUI Control - ListBox

Syntax

Syntax:
lbSetPictureRight [idc, index, path]
Parameters:
idc: Number of control
index: Number
path: String
Return Value:
Nothing

Alternative Syntax

Syntax:
control lbSetPictureRight [index, path]
Parameters:
control: Control
index: Number
path: String
Return Value:
Nothing

Examples

Example 1:
lbSetPictureRight [101, 0, "a3\3den\data\cfg3den\history\createcomment_ca.paa"];
Example 2:
_control lbSetPictureRight [0, "a3\3den\data\cfg3den\history\createcomment_ca.paa"];

Additional Information

See also:
lbPicture lbSetPicture lbSetPictureColor

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Ffur2007slx2_5 - c
Posted on Sep 10, 2014 - 16:31 (UTC)
More information on the CT_LISTBOX command family can be found here.
R3vo - c
Posted on Apr 06, 2021 - 07:34 (UTC)
Adding pictures to lists is very slow. In order to prevent the filling of the list to be slowed down, add the pictures in the scheduled environment. One drawback of that method is, that sorting the entries is not easily possible.
private _path = _ctrlTV tvAdd [[], "Some Entry"]; [_ctrlTV, _path] spawn { (_this select 0) tvSetPictureRight [[_this select 1], "someImage.paa"]; };