Command:/notify

From the wonderful RedGuides Wiki

This command is added by MacroQuest

Syntax Key
Notation Description
Text without brackets or braces Required items
<Text inside angle brackets> Placeholder for which you must supply a value
[Text inside square brackets] Optional items
Vertical bar (|) Separator for mutually exclusive items; choose one
{Text | inside | braces} Set of required items; choose one
Ellipsis () Items that can be repeated
Syntax /notify <windowname> 0|<controlname> [ <notification> [<data>] ]
Description This is used to interact with UI windows instead of using the mouse (/notify cannot be used to interact with objects).

Options

Examples

/notify hotbuttonwnd HB_Button1 leftmouseup Activates the first hotkey
/notify somewindow SomeSlider newvalue 100 Moves the referenced slider in the window to 100
/notify trackingwnd 0 close Closes the tracking window
/notify TradeskillWnd RecipeList listselect 1 Selects the first item in the RecipeList listbox
/notify BuffWindow Buff${Math.Calc[${Me.Buff[BuffName].ID}-1].Int} leftmouseup Cancels the buff called "BuffName"
/notify InventoryWindow IW_Subwindows tabselect 4 Select 4th tab in the Inventory window
/notify AuraWindow Remove_Aura leftmouseup Removes aura through the aura window
/notify QuantityWnd QTYW_slider newvalue # Adjust the value of the slider in Quantity Window.

Put the item name in the bazaar search dialog box

/echo ${SelectedItem.Name}
/notify BazaarSearchWnd ${SelectedItem.Name}

Select and click an item in a list

/notify TaskWnd TASK_TaskList listselect 1
/delay 4
/notify TaskWnd TASK_TaskList leftmouse 1
/delay 4

Select Parcel tab on Parcel Merchant and click Receive All button

/notify MerchantWnd MW_MerchantSubWindows tabselect 3
/delay 1s
/notify MerchantWnd MW_Retrieve_All_Button leftmouseup

See also