Simple suggestion for the new Auction House UI

Hello, just real quick before I post my suggestion I want to tell you I enjoy this patch and that I like how you reused Vale and Uldum for the corrupted assault events… It’s nice to go back to those old zones and I hope you create similar optional content like it in the future.

The new Auction House is amazing and thank you for making it so efficent and easy to use… There is one simple suggestion I have for it however, and that’s to be able to keybind the Create Auction button when you’re selling auctions to avoid those large handmovements with the mouse everytime you click a new item to sell. :wink:

Tl;dr: Give us the option to make a keybinding for the create auction button while selling items on the Auction house! I’d be thrilled.

1 Like

Game Menu > Help > Submit Suggestion.

Blizzard doesn’t come to these forums for suggestions.

That said, it’s probably possible to do that already via a macro. Either a /click command or a script.

1 Like

Thank you for your answer Elvenbane. I have submitted it ingame now. If you find a macro for it please let me know. Have a nice day!

1 Like

It doesn’t work for me for some reason. I tried both.

Oh, for non-stackable items you need to use this

/run AuctionHouseFrame.ItemSellFrame.PostButton:Click()

You can also just combine both

/run AuctionHouseFrame.ItemSellFrame.PostButton:Click()
/run AuctionHouseFrame.CommoditiesSellFrame.PostButton:Click()

Edit 2020-11-07 (patch 9.0.1)

Normal items:

/run if not ProxyAHItem then local f = CreateFrame("Button", "ProxyAHItem", nil, "SecureActionButtonTemplate") f:SetAttribute("type", "click") f:SetAttribute("clickbutton", AuctionHouseFrame.ItemSellFrame.PostButton) end
/click ProxyAHItem

Commodity items:

/run if not ProxyAHCom then local f = CreateFrame("Button", "ProxyAHCom", nil, "SecureActionButtonTemplate") f:SetAttribute("type", "click") f:SetAttribute("clickbutton", AuctionHouseFrame.CommoditiesSellFrame.PostButton) end
/click ProxyAHCom
4 Likes

Thank you Ketho! That should fix it. You’re a good lad.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.