WoW:UIHANDLER OnTooltipAddMoney: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Rewrite to better describe what actually happens - it's a script handler, not a function!)
m (Move page script moved page UIHANDLER OnTooltipAddMoney to UIHANDLER OnTooltipAddMoney without leaving a redirect)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{widgetmethod}}
{{widgethandler}}
 
Invoked when money information needs to be added to a tooltip.
Invoked when money information needs to be added to a tooltip.


== Arguments ==
== Arguments ==
:;arg1: Number - amount of money to add, in copper pieces.
:;arg1: Number - amount of money to add, in copper pieces.


== Example ==
== Example ==
  -- overload the base function with a custom routine
  -- overload the base function with a custom routine
  Saved_OnTooltipAddMoney = MyTooltip:GetScript("OnTooltipAddMoney");
  Saved_OnTooltipAddMoney = MyTooltip:GetScript("OnTooltipAddMoney");

Latest revision as of 04:49, 15 August 2023

Widget handlers < OnTooltipAddMoney

Invoked when money information needs to be added to a tooltip.

Arguments[edit]

arg1
Number - amount of money to add, in copper pieces.

Example[edit]

-- overload the base function with a custom routine
Saved_OnTooltipAddMoney = MyTooltip:GetScript("OnTooltipAddMoney");
MyTooltip:SetScript("OnTooltipAddMoney", My_OnTooltipAddMoney);
-- my custom routine
function My_OnTooltipAddMoney ()
  Saved_OnTooltipAddMoney();
  -- do something extra with the money amount in arg1
end


Details[edit]

This function was added in v1.7 and replaces the functionality that used to be provided by trapping the TOOLTIP_ADD_MONEY event. It is most commonly used to get merchant sell values when you scan the items in the inventory.