Subscribes to the specified event and calls the callback function when the event fires.
Name | Type | Description |
eventName | string | The event name. |
callback | function | Function to be called when the event fires. |
builder.CreateFile("pptx"); Api.attachEvent("asc_onHyperlinkClick", function() { console.log("HYPERLINK!!!"); }); var oPresentation = Api.GetPresentation(); var oSlide = oPresentation.GetSlideByIndex(0); var oFill = Api.CreateSolidFill(Api.CreateRGBColor(51, 51, 51)); var oStroke = Api.CreateStroke(0, Api.CreateNoFill()); var oShape = Api.CreateShape("flowChartMagneticTape", 200 * 36000, 130 * 36000, oFill, oStroke); oShape.SetPosition(608400, 1267200); oShape.SetSize(300 * 36000, 130 * 36000); var oDocContent = oShape.GetDocContent(); var oParagraph = oDocContent.GetElement(0); oParagraph.AddText("When you click on a hyperlink from this slide, the 'HYPERLINK!!!' message appears in the console log."); oSlide.AddObject(oShape); builder.SaveFile("pptx", "attachEvent.pptx"); builder.CloseFile();