lbSetPictureRight: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:Scripting Commands OFP 1.[4-9]{2}(\|(\{\{uc:\{\{PAGENAME\}\}\}\}|#|[A-Z]+))?\]\] " to "") |
Lou Montana (talk | contribs) m (Text replacement - "{{Feature|Informative|" to "{{Feature|informative|") |
||
(22 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{RV|type=command | {{RV|type=command | ||
| ofp | |game1= ofp | ||
|version1= | |||
| | |game2= ofpe | ||
|version2= 1.00 | |||
|game3= arma1 | |||
|version3= 1.00 | |||
|game4= arma2 | |||
|version4= 1.00 | |||
|game5= arma2oa | |||
|version5= 1.50 | |||
|game6= tkoh | |||
|version6= 1.00 | |||
|game7= arma3 | |||
|version7= 0.50 | |||
|arg= local | |arg= local | ||
Line 11: | Line 28: | ||
|gr1= GUI Control - ListBox | |gr1= GUI Control - ListBox | ||
| 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> | |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. | ||
In | 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. | |||
{{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]] | |||
|p2 | |||
|s2= control | |p3= path: [[String]] | ||
|r1= [[Nothing]] | |||
|s2= control [[lbSetPictureRight]] [index, path] | |||
|p21= control: [[Control]] | |p21= control: [[Control]] | ||
| | |p22= index: [[Number]] | ||
|p23= path: [[String]] | |||
|r2= [[Nothing]] | |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]] | |||
}} | }} | ||
{{Note | |||
|user= Ffur2007slx2_5 | |||
|timestamp= 20140910163100 | |||
|text= More information on the [[CT_LISTBOX]] command family can be found [[CT_LISTBOX#Scripting_Example|here]]. | |||
}} | |||
{{Note | |||
{{ | |user= R3vo | ||
|timestamp= 20210406073400 | |||
{ | |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. | ||
One drawback of that method is, that sorting the entries is not easily possible. | |||
<sqf> | |||
private _path = _ctrlTV tvAdd [[], "Some Entry"]; | |||
[_ctrlTV, _path] spawn { | |||
(_this select 0) tvSetPictureRight [[_this select 1], "someImage.paa"]; | |||
}; | |||
</sqf> | |||
}} |
Latest revision as of 00:24, 2 February 2024
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. - 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
- Posted on Sep 10, 2014 - 16:31 (UTC)
- More information on the CT_LISTBOX command family can be found here.
- 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.
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: GUI Control - ListBox
- Scripting Commands: Local Effect