ok, played around with target and got it working, basically switched so that DX hat is now a small hat in lower left part of the stick rather then large gray one on top right. That one i can reach easier with my thumb and it works in 45deg directions ( gray one in the middle of the stick is a 4 way not an 8 way unfortunatelly)
FOllowing code added to the script will switch those hats. Make sure not to include the throttle in the profile as to retain two devices and all those lovely DX buttons.
This script also turns old hat ( gray one ) into 4 DX buttons ( from 20 to 23 ) so that they can be mapped for trimmers and such.
script as follows:
MapKeyIOUMD(&Joystick, H2U, DXHATUP, DXHATUP, DXHATUP, DXHATUP, DXHATUP, DXHATUP);
MapKeyIOUMD(&Joystick, H2R, DXHATRIGHT, DXHATRIGHT, DXHATRIGHT, DXHATRIGHT, DXHATRIGHT, DXHATRIGHT);
MapKeyIOUMD(&Joystick, H2D, DXHATDOWN, DXHATDOWN, DXHATDOWN, DXHATDOWN, DXHATDOWN, DXHATDOWN);
MapKeyIOUMD(&Joystick, H2L, DXHATLEFT, DXHATLEFT, DXHATLEFT, DXHATLEFT, DXHATLEFT, DXHATLEFT);
MapKeyIOUMD(&Joystick, H1U, DX20, DX20, DX20, DX20, DX20, DX20);
MapKeyIOUMD(&Joystick, H1D, DX22, DX22, DX22, DX22, DX22, DX22);
MapKeyIOUMD(&Joystick, H1L, DX23, DX23, DX23, DX23, DX23, DX23);
MapKeyIOUMD(&Joystick, H1R, DX21, DX21, DX21, DX21, DX21, DX21);