WoW:API AuctionFrameAuctions duration: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
({{framexml}})
m (catfix, Replaced: {{framexml → <br>{{framexml)
Line 1: Line 1:
{{framexml}}
<br>{{framexml}}


   AuctionFrameAuctions.duration = ''time in minutes''
   AuctionFrameAuctions.duration = ''time in minutes''

Revision as of 00:44, 15 July 2008


WoW API < AuctionFrameAuctions duration

 AuctionFrameAuctions.duration = time in minutes


 //set the short duration button to be checked and set the time
 AuctionsShortAuctionButton:SetChecked(1);
 AuctionFrameAuctions.duration = 120;
 
 //set the medium duration button to be checked and set the time
 AuctionsMediumAuctionButton:SetChecked(1);
 AuctionFrameAuctions.duration = 480;
 
 //set the long duration button to be checked and set the time
 AuctionsLongAuctionButton:SetChecked(1);
 AuctionFrameAuctions.duration = 1440;