WoW:API StaticPopup Hide: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(Seeding with boilerplate)
 
m (Move page script moved page API StaticPopup Hide to API StaticPopup Hide without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 36: Line 36:
* DUEL_REQUESTED
* DUEL_REQUESTED
* PARTY_INVITE
* PARTY_INVITE
* ARENA_TEAM_INVITE
* QUEST_ACCEPT
* QUEST_ACCEPT
* CONFIRM_LOOT_ROLL
* LOOT_BIND_CONFIRM


Currently looking for more common dialogs that can be hidden using this feature
Currently looking for more common dialogs that can be hidden using this feature

Latest revision as of 04:47, 15 August 2023

WoW API < StaticPopup Hide

Used to hide popup dialogs like those for confirm/denying group invites, battle ground accept, summons accept and so on.

void StaticPopup_Hide("arg1");


Arguments

("arg1")
arg1
String - Name of Dialog to hide


Returns

none

Triggers Events

none


Example

StaticPopup_Hide("PARTY_INVITE");

Result

Party invite dialog disappears


Details

Common Dialog Names

  • CONFIRM_SUMMON
  • DUEL_REQUESTED
  • PARTY_INVITE
  • ARENA_TEAM_INVITE
  • QUEST_ACCEPT
  • CONFIRM_LOOT_ROLL
  • LOOT_BIND_CONFIRM

Currently looking for more common dialogs that can be hidden using this feature