1. Is there anyway to add to a quest link's popup, so if you click on a quest that someone sends you the addon could add some text to the bottom of the popup? I took a look at OnTooltipSetQuest but that doesn't seem to work. I took a look at OnTooltipSetItem, but that only works for the item tooltip and not item links (even though they show identical information). Any help would be most appreciated.

    Thanks in advance Breen

  2. That's the right script to use, you just need to set it on ItemRefTooltip (the static one) instead of GameTooltip.

    /run ItemRefTooltip:SetScript("OnTooltipSetQuest", function(self) print("Got a quest") end)

  3. That worked perfectly.

    Thank you for your help