lnbSetPicture: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "[[Category:Scripting_Commands_Take_On_Helicopters" to "[[Category:Scripting Commands Take On Helicopters") |
m (example) |
||
Line 44: | Line 44: | ||
|x1= <code>[[lnbSetPicture]] [1, [0, 0], "Picture"];</code>|EXAMPLE1= | |x1= <code>[[lnbSetPicture]] [1, [0, 0], "Picture"];</code>|EXAMPLE1= | ||
|x2= <code>_ctrl [[lnbSetPicture]] [ [0, 0], "\A3\Ui_f\data\GUI\Cfg\Ranks\lieutenant_gs.paa"];</code>|EXAMPLE2= | |x2= <code>_ctrl [[lnbSetPicture]] [<nowiki>[</nowiki>0, 0], "\A3\Ui_f\data\GUI\Cfg\Ranks\lieutenant_gs.paa"];</code>|EXAMPLE2= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 22:07, 19 July 2020
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:
- Uncategorised
Syntax
- Syntax:
- lnbSetPicture [IDC, [Row, Column], PicturePathOrPictureName]
- Parameters:
- [IDC, [Row, Column], PicturePathOrPictureName]: Array
- IDC: Number
- Row: Number
- Column: Number
- PicturePathOrPictureName: String
- Return Value:
- Nothing
Alternative Syntax
- Syntax:
- _ctrl lnbSetPicture [ [Row(Number), Column(Number)], PicturePathOrPictureName(String)]
- Parameters:
- _ctrl: Control
- [ [Row, Column], PicturePathOrPictureName]: Array
- Row: Number
- Column: Number
- PicturePathOrPictureName: 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
Notes
- Posted on Sep 9 2014
- ffur2007slx2_5
- (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:
//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
For a direct visible control over CT_LISTNBOX:0 = [_CT_LISTNBOX] spawn { private ["_CT_LISTNBOX","_color","_current","_pic"]; disableSerialization; _CT_LISTNBOX = _this select 0; { _CT_LISTNBOX lnbAddRow [ getText (_x >> "displayNameShort"),getText (_x >> "displayName")]; _CT_LISTNBOX lnbSetPicture [ [_foreachIndex,0],getText (_x >> "texture")]; } forEach ("isClass _x" configClasses (configFile >> "CfgRanks")); _CT_LISTNBOX lnbSetCurSelRow 0; _current = lnbCurSelRow _CT_LISTNBOX; _color = _CT_LISTNBOX lnbColor [_current,0]; _CT_LISTNBOX lnbSetColor [ [_current,1], [(_color select 0)/2,0,0,1] ]; _CT_LISTNBOX lnbDeleteColumn 0; _CT_LISTNBOX lnbDeleteRow 1; sleep 1; lnbClear _CT_LISTNBOX;//Clear all items but control still remains just invisible. };
A combined use of both invisible and visible data processing commands alive the Control.