toolTipCreate is an event, so when using AS, you have to use the addEventListener function. The following should help:
img.addEventListener(ToolTipEvent.TOOL_TIP_CREATE, myHandlerFunction); Just remember that you have to import ToolTipEvent, and myHandlerFunction has to be a function that takes one argument which is a ToolTipEvent. ~Nate