lbSetPictureColor: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Command|= Comments ____________________________________________________________________________________________ | Arma 3|= Game name |1.22|= Game version ________________...")
 
m (template:command argument fix)
(5 intermediate revisions by 4 users not shown)
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Sets the color of item's picture with the given index of the listbox with id idc of the topmost user dialog to the given color. Color is in format [[Color]]. Color which consists from only zeros means disable this override. |= Description
| Sets the color of item's picture (left) with the given index of the listbox with id idc of the topmost user dialog to the given color. Color is in format [[Color]]. Color which consists from only zeros means disable this override. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''lbSetPictureColor''' [idc, index, color] |= Syntax
| '''lbSetPictureColor''' [idc, index, color] |SYNTAX=
|p1= [idc, index, name]: [[Array]] |= Parameter 1
|p1= [idc, index, name]: [[Array]] |PARAMETER1=
|p2= idc: [[Number]] of control |= Parameter 2
|p2= idc: [[Number]] of control |PARAMETER2=
|p3= index: [[Number]] |= Parameter 3
|p3= index: [[Number]] |PARAMETER3=
|p4= color: [[Array]] |= Parameter 4
|p4= color: [[Array]] |PARAMETER4=
| [[Nothing]] |= Return value
| [[Nothing]] |RETURNVALUE=


|s2= control '''lbSetPictureColor''' [index, color] |= Syntax
|s2= control '''lbSetPictureColor''' [index, color] |SYNTAX=
|p21= control: [[Control]] |= Parameter 1
|p21= control: [[Control]] |PARAMETER1=
|p22= [index, name]: [[Array]] |= Parameter 2
|p22= [index, name]: [[Array]] |PARAMETER2=
|p23= index: [[Number]] |= Parameter 3
|p23= index: [[Number]] |PARAMETER3=
|p24= color: [[Array]] |= Parameter 4
|p24= color: [[Array]] |PARAMETER4=
|r2= [[Nothing]] |= Return value
|r2= [[Nothing]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________




|x1=<code>[[lbSetPictureColor]] [101, 0, [0, 1, 0, 0.5]];</code> |= Example 1    
|x1=<code>[[lbSetPictureColor]] [101, 0, [0, 1, 0, 0.5]];</code> |EXAMPLE1=    
|x2= <code>_ctrl [[lbSetPictureColor]] [0, [1, 1, 1, 1]];</code> |= Example 2
|x2= <code>_ctrl [[lbSetPictureColor]] [0, [1, 1, 1, 1]];</code> |EXAMPLE2=


____________________________________________________________________________________________
____________________________________________________________________________________________


| [[lbAdd]], [[lbClear]], [[lbColor]], [[lbCurSel]], [[lbData]], [[lbDelete]], [[lbIsSelected]], [[lbPicture]], [[lbSelection]], [[lbSetColor]], [[lbSetCurSel]], [[lbSetData]], [[lbSetSelected]], [[lbSetTooltip]], [[lbSetValue]], [[lbSize]], [[lbSort]], [[lbSortByValue]], [[lbText]], [[lbValue]] |= See also
| [[lbAdd]], [[lbClear]], [[lbColor]], [[lbSetPictureColorSelected]], [[lbCurSel]], [[lbData]], [[lbDelete]], [[lbIsSelected]], [[lbPicture]], [[lbSelection]], [[lbSetColor]], [[lbSetCurSel]], [[lbSetData]], [[lbSetSelected]], [[lbSetTooltip]], [[lbSetValue]], [[lbSize]], [[lbSort]], [[lbSortByValue]], [[lbText]], [[lbValue]], [[lbSetPicture]]|SEEALSO=


}}
}}
Line 47: Line 47:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|LBSETPICTURE]]
[[Category:Scripting Commands|LBSETPICTURE]]
[[Category:Scripting Commands OFP 1.99|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands OFP 1.96|LBSETPICTURE]]
[[Category:Scripting Commands ArmA|LBSETPICTURE]]
[[Category:Scripting Commands ArmA|LBSETPICTURE]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_GUI_Control|{{uc:{{PAGENAME}}}}]]
Line 54: Line 52:
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on August 18, 2015 - 09:55 (UTC)</dd>
<dt class="note">[[User:IT07|IT07]]</dt>
<dd class="note">
(ArmA 3 1.48) To give an image on the right side of a listbox item:
<code>_ctrl lbSetPictureRightColor [_index, [1,1,1,0.7]];</code>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Revision as of 15:42, 7 April 2019

Hover & click on the images for description

Description

Description:
Sets the color of item's picture (left) with the given index of the listbox with id idc of the topmost user dialog to the given color. Color is in format Color. Color which consists from only zeros means disable this override.
Groups:
Uncategorised

Syntax

Syntax:
lbSetPictureColor [idc, index, color]
Parameters:
[idc, index, name]: Array
idc: Number of control
index: Number
color: Array
Return Value:
Nothing

Alternative Syntax

Syntax:
control lbSetPictureColor [index, color]
Parameters:
control: Control
[index, name]: Array
index: Number
color: Array
Return Value:
Nothing

Examples

Example 1:
lbSetPictureColor [101, 0, [0, 1, 0, 0.5]];
Example 2:
_ctrl lbSetPictureColor [0, [1, 1, 1, 1]];

Additional Information

See also:
lbAddlbClearlbColorlbSetPictureColorSelectedlbCurSellbDatalbDeletelbIsSelectedlbPicturelbSelectionlbSetColorlbSetCurSellbSetDatalbSetSelectedlbSetTooltiplbSetValuelbSizelbSortlbSortByValuelbTextlbValuelbSetPicture

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

Notes

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

Bottom Section

Posted on August 18, 2015 - 09:55 (UTC)
IT07
(ArmA 3 1.48) To give an image on the right side of a listbox item: _ctrl lbSetPictureRightColor [_index, [1,1,1,0.7]];