TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

attachEvent

attachEvent(eventName, callback)

Subscribes to the specified event and calls the callback function when the event fires.

Parameters:

Name Type Description
eventName string

The event name.

callback function

Function to be called when the event fires.

Returns:

This method doesn't return any data.

Example

Copy code
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();

Resulting document