With the new auction house I’ve tried to create a macro for clicking the “create auction” button, but I can’t get it to work.
This is what I’ve tried, using fstack to find the button name. /click AuctionHouseFrame.CommoditiesSellFrame.PostButton
I had a similar macro before that worked, and saves me a lot of mouse travel
/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