i find the event on api document:
https://api.onlyoffice.com/docs/plugin-and-macros/macros/writing-macros/#subscribing-to-events
but there is no more information how to use it. so i write like this on macros:
(function()
{
Api.GetActiveSheet().GetRange("B3").SetValue("HELP")
Api.attachEvent("asc_onHyperlinkClick", () => {
console.log("HYPERLINK!!!")
})
})();
now,how to make it working?