View Single Post
12-08-06, 07:00 AM   #107
kritzi
A Kobold Labourer
Join Date: May 2006
Posts: 1
Originally Posted by Tuller
BActionBar - These functions only work on action bars.
  • BActionBar.SetStanceOffset(barID, offset)
    • Switches a bar's page to barID + offset
    • It will not switch pages if you're manually paged (shift + number)
    • So, BActionBar.SetStanceOffset(2, 1) would change the second actionbar to have the same buttons as the third actionbar.
Code:
BActionBar = {
	...
	SetStanceOffset = function(barID, stance, offset)
		local stances = BActionSets[barID].stances
		...
  Reply With Quote