It seems that once a picture is set it cannot be removed by
ctrl lnbSetPicture [[_row,_column],""];
It seems that once a picture is set it cannot be removed by
ctrl lnbSetPicture [[_row,_column],""];
[] spawn { disableSerialization; _display = findDisplay 313 createDisplay "RscDisplayEmpty"; _ctrlLNB = _display ctrlCreate ["RscListNBox", 645]; _ctrlLNB ctrlSetPosition [0,0,1,0.04]; _ctrlLNB ctrlSetBackgroundColor [0,0,0,1]; _ctrlLNB ctrlCommit 0; _ctrlLNB lnbAddColumn 0.5; _ctrlLNB lnbAddRow ["col1", "col2"]; sleep 1; _ctrlLNB lnbSetPicture [[0, 0], "\a3\ui_f\data\logos\arma3_bundle_icon_ca.paa"]; _ctrlLNB lnbSetPictureRight [ [0, 0], "\a3\ui_f\data\logos\arma3_bundle_icon_ca.paa"]; systemChat "Picture set"; sleep 2; _ctrlLNB lnbSetPicture [[0, 0], ""]; _ctrlLNB lnbSetPictureRight [ [0, 0], ""]; systemChat "Picture should be gone but isn't."; systemChat format ["Picture: %1",_ctrlLNB lnbPicture [0, 0]]; }
v2.01