lnbSetPicture: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " [ [[" to " [<nowiki/>[[")
mNo edit summary
Line 10: Line 10:
|eff= local |Multiplayer Effects=
|eff= local |Multiplayer Effects=


|gr1= GUI Control |GROUP1=
|gr1= GUI Control - ListNBox |GROUP1=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 55: Line 55:
____________________________________________________________________________________________
____________________________________________________________________________________________
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on Sep 9 2014</dd>
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
<dd class="note">(A3 1.28)As for invisible data processing, [[lnbAddArray]], [[lnbAddColumn]], [[lnbData]], [[lnbGetColumnsPosition]], [[lnbSetColumnsPos]], [[lnbSetData]], [[lnbSetText]], [[lnbSetValue]], [[lnbText]] and [[lnbValue]] store data types into exact position of the listNbox with different spaces. Accessing data with coordinate command at nearly the same syntax:
<code>
//Set same value to one position of a [[Control]]
_ctrl [[lnbSetData]] [ [0,0],"#1"];
[[lnbSetColumnsPos]] [102, [0,1], 1];
_ctrl [[lnbSetText]] [ [0,1], "#1"];
_ctrl [[lnbSetValue]] [ [0,0],1];
//Accessing the value disregard affecting one another.
_ctrl [[lnbData]] [0,0]; //"#1"
[[lnbGetColumnsPosition]] _ctrl //[1];
_ctrl [[lnbText]] [0,0];//"#1"
_ctrl [[lnbValue]] [0,0];//1
</code>
For a direct visible control over CT_LISTNBOX:
<code>
0 = [_CT_LISTNBOX] [[spawn]] { 
  [[private]] ["_CT_LISTNBOX","_color","_current","_pic"];
  [[disableSerialization]];
  _CT_LISTNBOX = _this [[select]] 0;
  {
_CT_LISTNBOX [[lnbAddRow]] [<nowiki/>[[getText]] (_x >> "displayNameShort"),[[getText]] (_x >> "displayName")];
_CT_LISTNBOX [[lnbSetPicture]] [ [_foreachIndex,0],[[getText]] (_x >> "texture")];
  } [[forEach]] ("[[isClass]] _x" [[configClasses]] ([[configFile]] >> "CfgRanks"));
  _CT_LISTNBOX [[lnbSetCurSelRow]] 0;
  [[Image:WuChaoRen_000.png]]
  _current = [[lnbCurSelRow]] _CT_LISTNBOX;
  _color = _CT_LISTNBOX [[lnbColor]] [_current,0];
  _CT_LISTNBOX [[lnbSetColor]] [ [_current,1], [(_color [[select]] 0)/2,0,0,1] ];
  [[Image:WuChaoRen_001.png]]
  _CT_LISTNBOX [[lnbDeleteColumn]] 0;
  [[Image:WuChaoRen_002.png]]
  _CT_LISTNBOX [[lnbDeleteRow]] 1;
  [[Image:WuChaoRen_003.png]]
  [[sleep]] 1;
  [[lnbClear]] _CT_LISTNBOX;//Clear all items but control still remains just invisible.
};
</code>
A combined use of both invisible and visible data processing commands alive the [[Control]].
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>


[[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}}}}]]

Revision as of 14:17, 26 September 2020

Hover & click on the images for description

Description

Description:
  • Sets the picture in the item with the given position of the 2D listbox.
  • Name is the picture name.
  • The picture is searched in the mission, directory, the dtaExt subdirectory of the campaign directory, and the dtaExt directory and the data bank (or directory).
Groups:
GUI Control - ListNBox

Syntax

Syntax:
lnbSetPicture [idc, [row, column], picturePathOrName]
Parameters:
idc: Number
row: Number
column: Number
picturePathOrName: String
Return Value:
Nothing

Alternative Syntax

Syntax:
ctrl lnbSetPicture [[row, column], picturePathOrName]
Parameters:
ctrl: Control
Row: Number
Column: Number
picturePathOrName: String
Return Value:
Nothing

Examples

Example 1:
lnbSetPicture [1, [0, 0], "Picture"];
Example 2:
_ctrl lnbSetPicture [[0, 0], "\A3\Ui_f\data\GUI\Cfg\Ranks\lieutenant_gs.paa"];

Additional Information

See also:
lnbAddArraylnbAddColumnlnbAddRowlnbClearlnbColorlnbCurSelRowlnbDatalnbDeleteColumnlnbDeleteRowlnbGetColumnsPositionlnbPicturelnbSetColorlnbSetColumnsPoslnbSetCurSelRowlnbSetDatalnbSetTextlnbSetValuelnbSizelnbTextlnbValue

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