1. #1
    Pandaren Monk
    15+ Year Old Account
    Join Date
    Dec 2008
    Location
    Somewhere over the rainbow.
    Posts
    1,940

    UIErrors frame macro.

    So up until recently this macro has been working perfectly.

    #showtooltip Arcane Blast
    /script UIErrorsFrame:Hide()
    /use Sanctified Bloodmage Gloves
    /cast Arcane Blast
    /script UIErrorsFrame:Clear()
    /script UIErorrsFrame:Show()

    However now it wont show my error frame at all after I use it. Something must have gone wrong somewhere, I just might be to sleepy to figure it out.

  2. #2

    Re: UIErrors frame macro.

    You spelled ErrorFrame wrong on the last line
    You want this:

    #showtooltip Arcane Blast
    /script UIErrorsFrame:Hide()
    /use Sanctified Bloodmage Gloves
    /cast Arcane Blast
    /script UIErrorsFrame:Clear()
    /script UIErrorsFrame:Show()

  3. #3
    Deleted

    Re: UIErrors frame macro.

    Code:
    #showtooltip Arcane Blast
    /run UIErrorsFrame:UnregisterEvent("UI_ERROR_MESSAGE");
    /use Sanctified Bloodmage Gloves
    /run UIErrorsFrame:RegisterEvent("UI_ERROR_MESSAGE");
    /cast Arcane Blast
    I generally recommend this macro. It does not remove any error messages present before pressing the macro.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •