ExAd/mpmissions/Exile.Altis/ExAdClient/XM8/Apps/Journal/onOpen.sqf

14 lines
337 B
Plaintext
Raw Normal View History

2016-07-19 23:17:06 +00:00
private["_display"];
_display = uiNameSpace getVariable ["RscExileXM8", displayNull];
_notes = profileNamespace getVariable ["ExAd_Journal_Notes",[]];
_listCtrl = [_display,"ExAd_Journal","listNotes"] call ExAd_fnc_getAppCtrl;
lbClear _listCtrl;
{
_index = _listCtrl lbAdd _x;
_listCtrl lbSetTooltip [_index, _x];
}forEach _notes;