Latest A32NX v7.1 Custom Event problems

I can bind the new Custom Events to both Buttons and Keypresses with FSUIPC.

In my own WASM, I can send HVars e.g.

command = “(>H:A32NX_RMP_L_VHF2_BUTTON_PRESSED)”;
execute_calculator_code(command.c_str(), nullptr, nullptr, nullptr);

and it will trigger the VHF2 Button in the airplane

But, when I try to use the same code for one of the new Autopilot Custom Events ,

e.g. A32NX.FCU_AP_1_PUSH

command = “(>H:A32NX.FCU_AP_1_PUSH)”;
execute_calculator_code(command.c_str(), nullptr, nullptr, nullptr);

it will not trigger the FCU button

I must miss something? Are these A320NX flybywire Custom Events not H Vars?

Those events are K events. Place a K instead of H and it should work.

Thanks a lot. All Custom Events now work.