Inrego
New Member
- Joined
- Feb 7, 2010
- Messages
- 2,765
- Reaction score
- 71
Hey, I'm trying to make a PB profile to work with TSM.
I'm running into a brick wall it seems.
They aren't really buttons, when I use the
I get a frame: Random string with numbers and letters.
I also tried highvoltz's
but it did nothing when I replaced the Batch post with the text on this "button".
If you'd like to have a look at the lua code, you can find the addon here: TradeSkillMaster_Auctioning - Auction & Economy - World of Warcraft Addons - Curse
And if you want to give it a whirl in wow, I believe you have to install this also: TradeSkillMaster - Auction & Economy - World of Warcraft Addons - Curse
I'm running into a brick wall it seems.
They aren't really buttons, when I use the
Code:
/run local f=GetMouseFocus();print(f:GetName() or tostring(f))
I also tried highvoltz's
Code:
/run local f=EnumerateFrames(AuctionFrame) while f do if f:GetObjectType() == 'Button' and f:GetText() == 'Batch post' then f:Click('RightButton') end f = EnumerateFrames(f) end if AuctioneerPostPromptYes then AuctioneerPostPromptYes:Click() end
If you'd like to have a look at the lua code, you can find the addon here: TradeSkillMaster_Auctioning - Auction & Economy - World of Warcraft Addons - Curse
And if you want to give it a whirl in wow, I believe you have to install this also: TradeSkillMaster - Auction & Economy - World of Warcraft Addons - Curse