2015-04-11 21:40:46 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Updates all input fields based on the currently selected target
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Nothing
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_atragmx_fnc_update_target_selection
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
2015-04-06 13:51:59 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-04-16 17:52:20 +00:00
|
|
|
((uiNamespace getVariable "ATragMX_Display") displayCtrl 500) ctrlEnable true;
|
|
|
|
((uiNamespace getVariable "ATragMX_Display") displayCtrl 501) ctrlEnable true;
|
|
|
|
((uiNamespace getVariable "ATragMX_Display") displayCtrl 502) ctrlEnable true;
|
|
|
|
((uiNamespace getVariable "ATragMX_Display") displayCtrl 503) ctrlEnable true;
|
2015-04-06 13:51:59 +00:00
|
|
|
|
2015-04-16 17:52:20 +00:00
|
|
|
((uiNamespace getVariable "ATragMX_Display") displayCtrl 500 + GVAR(currentTarget)) ctrlEnable false;
|
2015-04-06 13:51:59 +00:00
|
|
|
|
2015-04-16 17:52:20 +00:00
|
|
|
ctrlSetFocus ((uiNamespace getVariable "ATragMX_Display") displayCtrl 3000);
|
2015-04-06 13:51:59 +00:00
|
|
|
|
2015-04-06 18:46:33 +00:00
|
|
|
[] call FUNC(update_unit_selection);
|