WoW:API AuctionFrameAuctions duration: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
({{framexml}})
Line 1: Line 1:
AuctionFrameAuctions.duration = TimeInMinutes
{{framexml}}


//set the short duration button to be checked and set the time
  AuctionFrameAuctions.duration = ''time in minutes''
AuctionsShortAuctionButton:SetChecked(1);
AuctionFrameAuctions.duration = 120;




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

Revision as of 13:42, 10 June 2006

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;