Help about asc_onHyperlinkClick event

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?

Hello @langziyang

To make it work you need to specify any link in the document and click it, then check out the console for specified message.