Download
(14Kb)
Download
Updated: 08-16-18 01:18 PM
Pictures
File Info
Compatibility:
Battle for Azeroth (8.0.1)
Updated:08-16-18 01:18 PM
Created:01-09-09 09:43 PM
Downloads:129,651
Favorites:284
MD5:

rActionBar  Popular! (More than 5000 hits)

Version: 800.20180816
by: zork [More]


Intro

rActionBar is a framework for Blizzard actionbars. It does nothing on its own, needs a layout like rActionBar_Zork.
API documentation
rActionBar API documentation
Quick-Links
rActionBar, rActionBar_Zork, rBuffFrame, rBuffFrame_Zork, rButtonTemplate, rButtonTemplate_Zork
Requires
rLib
Git
https://github.com/zorker/rothui/tre...8.0/rActionBar

Optional Files (3)
File Name
Version
Size
Author
Date
Type
800.20180901
2kB
09-02-18 03:34 AM
Addon
801-2018081101
2kB
08-11-18 04:38 AM
Addon
700.20161004
1kB
10-04-16 06:07 AM
Addon


Post A Reply Comment Options
Unread 02-02-09, 11:35 AM  
pererikk
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 8
Uploads: 1
fix for warlocks

Here is a tip for some warlocks.

If you like me get the Metamorphosis button over the pet attack button, due to speccing that way.

here is what i did.

at line 93

change it to say

Code:
if myengclass == "DEATHKNIGHT" or myengclass == "WARLOCK" then
that makes the button appear right next to the pet bar instead of ontop.

/Cheerz
Report comment to moderator  
Reply With Quote
Unread 02-03-09, 02:06 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Re: fix for warlocks

Originally posted by pererikk
Here is a tip for some warlocks.

If you like me get the Metamorphosis button over the pet attack button, due to speccing that way.

here is what i did.

at line 93

change it to say

Code:
if myengclass == "DEATHKNIGHT" or myengclass == "WARLOCK" then
that makes the button appear right next to the pet bar instead of ontop.

/Cheerz
Ah thanks, didn't knew that Warlocks got a stance aswell.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 02-04-09, 04:59 PM  
iGREASE
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Re: Re: fix for warlocks

How do I change the size of the bottom left buttons when I turn to Shadow form on my Priest? Cause it works fine when I'm normal but once I transform it make the bottom left buttons small.
Last edited by iGREASE : 02-04-09 at 05:04 PM.
Report comment to moderator  
Reply With Quote
Unread 02-05-09, 05:04 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Re: Re: Re: fix for warlocks

Originally posted by iGREASE
How do I change the size of the bottom left buttons when I turn to Shadow form on my Priest? Cause it works fine when I'm normal but once I transform it make the bottom left buttons small.
Do my a favor and disable all other addons and test it with only rActionBarStyler active. Just to make sure its a rActionBarStyler problem.

Sound wierd since all the other stance classes don't have this issue. Maybe the priest "stance" is "special"
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 02-11-09, 07:44 PM  
ogu
A Defias Bandit

Forum posts: 3
File comments: 27
Uploads: 0
Re: Re: Re: Re: fix for warlocks

Hi. Nice addon! I was wondering if someone could please tell me how to show the menu bar that has the icons for the character pane, opening a ticket with a GM, talent points, LFG, etc?

Thank you for any assistance!

Edit: Sorry, I figured it out. Don't know anything about LUA but trying to figure out things logically.
Last edited by ogu : 02-11-09 at 08:13 PM.
Report comment to moderator  
Reply With Quote
Unread 02-13-09, 10:32 AM  
ogu
A Defias Bandit

Forum posts: 3
File comments: 27
Uploads: 0
Re: Re: Re: Re: Re: fix for warlocks

Hi. I added something like:
Code:
HelpRequestMicroButton:SetParent(f)
HelpRequestMicroButton:ClearAllPoints()
HelpRequestMicroButton:SetPoint("CENTER",UIParent,"CENTER",0, 0)
to get the help request question mark icon showing. It shows but will disappear (seems like it's random). Reloading the UI will bring it back. Did I add that incorrectly?

Thank you for any assistance.
Report comment to moderator  
Reply With Quote
Unread 02-25-09, 12:03 AM  
stako
A Deviate Faerie Dragon
 
stako's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 19
Uploads: 2
Hello zork. Nice addon!

I see that you did this to position the ShapeshiftBar:
Code:
ShapeshiftButton1:SetPoint("BOTTOMLEFT", MultiBarBottomRightButton10, "TOPLEFT", 0, 5);
But unfortunately, this will make the shapeshift bar position in an awkward place if the player has the bottom right bar disabled. You can check which bars the player has enabled/disabled and adjust the ShapeshiftBar like this:

Code:
  local bottomLeftState, bottomRightState, _, _ = GetActionBarToggles()
  ShapeshiftButton1:ClearAllPoints()
  
  if bottomRightState then
	if myengclass == "DEATHKNIGHT" then
		ShapeshiftButton1:SetPoint("BOTTOMLEFT", MultiBarBottomRightButton10, "TOPLEFT", 0, 5);
	else
		ShapeshiftButton1:SetPoint("BOTTOMLEFT", MultiBarBottomRightButton1, "TOPLEFT", 0, 5);
	end
  elseif bottomLeftState then
	if myengclass == "DEATHKNIGHT" then
		ShapeshiftButton1:SetPoint("BOTTOMLEFT", MultiBarBottomLeftButton10, "TOPLEFT", 0, 5);
	else
		ShapeshiftButton1:SetPoint("BOTTOMLEFT", MultiBarBottomLeftButton1, "TOPLEFT", 0, 5);
	end
  else
	if myengclass == "DEATHKNIGHT" then
		ShapeshiftButton1:SetPoint("BOTTOMLEFT", ActionButton10, "TOPLEFT", 0, 5);
	else
		ShapeshiftButton1:SetPoint("BOTTOMLEFT", ActionButton1, "TOPLEFT", 0, 5);
	end
  end
  
  ShapeshiftButton1.SetPoint = function() end
Unfortunately if the player enables/disables one of the extra action bars then the ShapeshiftBar will again be in an awkward place. Maybe you can fix that, I can't.
Report comment to moderator  
Reply With Quote
Unread 02-26-09, 08:41 AM  
MoonWitch
A Firelord
AddOn Author - Click to view AddOns

Forum posts: 455
File comments: 162
Uploads: 9
I'd like to report a small issue.

When I open my spellbook and have the right bars enabled, I will see the button frames (as if I am showing empty buttons as well). This occurs with other mods enabled and without as well
Report comment to moderator  
Reply With Quote
Unread 02-26-09, 11:31 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Originally posted by MoonWitch
I'd like to report a small issue.

When I open my spellbook and have the right bars enabled, I will see the button frames (as if I am showing empty buttons as well). This occurs with other mods enabled and without as well
This is no bug. Opening the spellbook acitvated the grid, thus you can drag'n'drop your icons onto your actionbars.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Report comment to moderator  
Reply With Quote
Unread 02-26-09, 12:09 PM  
MoonWitch
A Firelord
AddOn Author - Click to view AddOns

Forum posts: 455
File comments: 162
Uploads: 9
Originally posted by zork
This is no bug. Opening the spellbook acitvated the grid, thus you can drag'n'drop your icons onto your actionbars.
Ok, I phrased it wrong. Yes, it's a feature. But when I then close the spellbook, the grid remains until I reload the UI.
Report comment to moderator  
Reply With Quote
Unread 03-01-09, 03:12 PM  
nidraj
A Deviate Faerie Dragon

Forum posts: 10
File comments: 8
Uploads: 0
hi

it would have means to add a line For right Clic -> self Cast ?

thx
Last edited by nidraj : 03-01-09 at 03:17 PM.
Report comment to moderator  
Reply With Quote
Unread 03-02-09, 01:43 PM  
nin
A Cobalt Mageweaver
AddOn Author - Click to view AddOns

Forum posts: 213
File comments: 83
Uploads: 1
Heya!

I've been trying to make MultiBarLeftButton1 to be 2x6.. but no success with the codes ive been trying so far very limited in lua unfortunately :/

Any hints on how to achieve this would be appreciated

thanks for a great addon.
Report comment to moderator  
Reply With Quote
Unread 03-06-09, 07:55 AM  
neuling
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
bei mir haben die buttons nen abstand von ca. 3mm nach oben und zum button rechts daneben, woran liegt das bzw wie kann ich das ändern?
Report comment to moderator  
Reply With Quote
Unread 03-09-09, 06:04 AM  
Biertank
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
My 2x right actionbars are gone. How do I get these back?
Also, how do I pop up the actionbar menu to change some things? As my stance bar is messed up too
Report comment to moderator  
Reply With Quote
Unread 03-09-09, 07:00 AM  
MoonWitch
A Firelord
AddOn Author - Click to view AddOns

Forum posts: 455
File comments: 162
Uploads: 9
Originally posted by Biertank
My 2x right actionbars are gone. How do I get these back?
Also, how do I pop up the actionbar menu to change some things? As my stance bar is messed up too
For the actionbars on the right : You have to enable them in the wow options.
Press Esc -> Interface -> Actionbars -> enable the right ones.

For changes in the actionbars not related to enabling/disabling, you'll have to edit the lua code as is noted on the Description of the addon
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: