May be it is not published because the control you're using can't handle triple click properly.
You can try publishing it by yourself. For example:
TYPE
(* Extends TButton to publish the triple click event. *)
TButtonTripleClick = CLASS (TButton)
PUBLISHED
PROPERTY OnTripleClick;
END
You'll need to create the control "by hand" to test it.