Forgot the key handler :(
params["_ctrl","_dikCode","_shift","_ctrlKey","_alt","_adjust",["_handled",false]];
switch(_dikCode) do
{
case 57: // SPACE
{
if (APX_placing) then
{
[] call APX_fnc_dropObject;
["FOB System","You have placed that object"] call APX_fnc_showNotification;
_handled = true;
};
};
case 15: // tab
{
createDialog "FOBMenu";
_handled = true;
};
case 201: //Page UP
{
[] call APX_fnc_Objectup;
_handled = true;
};
case 209: //Page DOWN
{
[] call APX_fnc_Objectdown;
_handled = true;
};
};
_handled;