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,615
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 04-21-09, 03:54 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Originally posted by grimgaw
Is there any way to change spacing between individual buttons on the bars?
Yes there is a way. I am going to add a new function.
__________________
| 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 04-21-09, 03:44 PM  
grimgaw
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 5
File comments: 12
Uploads: 1
Is there any way to change spacing between individual buttons on the bars?
Report comment to moderator  
Reply With Quote
Unread 04-21-09, 09:43 AM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Yeah, you are not allowed to do this while in combat. You cause tainting.
rActionBarStyler are just the default blizzard bars, just moved and scaled. Nothing more.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 04-21-09 at 09:44 AM.
Report comment to moderator  
Reply With Quote
Unread 04-21-09, 08:28 AM  
kewlbear77
A Kobold Labourer

Forum posts: 1
File comments: 16
Uploads: 0
Hello~~!! First of all many thanks for great UI..

I have two questions regarding rActionBarStyler..
First question is :
Right now I changed the code a little bit so that the shape shift bar and pet action bar willl move down when MultiBarBottomRight is not shown or when PetActionBar is not shown.

It works fine when player is out of combat. However, when ActionBar is set hidden during the combat (for instance, when pet dies during the battle, then the pet bar disappears.) the shape shift bar does not move down as it suppsed to do...

I think it's because it automatically locks the position in Combat... is there anyway to make the action bar unlocked even in combat situation?

Second question is :
Would it be possible to change the hotkey text on rActionButtonStyler? For instance instead of showing "Button3", show "B3" or such.. Hotkey text gets too long when I assign hotkey as something like shift + button3 that it only shows "..." on the action button...

Please helpe me with these issues.... TT
Report comment to moderator  
Reply With Quote
Unread 04-20-09, 12:04 PM  
ruykeri
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Originally posted by zork
In the Blizzard UI you can define a selfcast button, so if you press that (ALT or whatever) and leftclick the icon it will selfcast it.
Yes, thats the way i do now, but its easier only pushing the rightclick . Anyway, its a good addon, i recommend it.
Report comment to moderator  
Reply With Quote
Unread 04-20-09, 11:40 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 ruykeri
Great addon, best with ractionbuttonstyler. But one thing i like of bartender/dominos is the right button self casting, is it possible to configure like that? thx
In the Blizzard UI you can define a selfcast button, so if you press that (ALT or whatever) and leftclick the icon it will selfcast it.
__________________
| 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 04-20-09, 06:01 AM  
ruykeri
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
Great addon, best with ractionbuttonstyler. But one thing i like of bartender/dominos is the right button self casting, is it possible to configure like that? thx
Report comment to moderator  
Reply With Quote
Unread 04-19-09, 02:13 PM  
Lucar
A Defias Bandit
 
Lucar's Avatar

Forum posts: 2
File comments: 64
Uploads: 0
is compatible with ButtonFacade ?
Report comment to moderator  
Reply With Quote
Unread 04-19-09, 03:45 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 Rintrah
It's probably really simple...
Open rActionBarStyler.lua and add this two lines to the config (under shapeshift and pet would be best).
Code:
hide_shapeshift = 1
hide_pet = 1
Additionally add this to the _end_ of the rActionBarStyler.lua.
Code:
  if hide_shapeshift == 1 then
    fshift:SetScale(0.001)
    fshift:SetAlpha(0)
  end
   
  if hide_pet == 1 then
    fpet:SetScale(0.001)
    fpet:SetAlpha(0)
  end
But remember you will have quests or special pets that will make use of the petbar and the shapeshiftbar. Hiding it permanently can be the wrong decision.
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)
Last edited by zork : 04-19-09 at 03:45 AM.
Report comment to moderator  
Reply With Quote
Unread 04-19-09, 12:00 AM  
Rintrah
A Defias Bandit

Forum posts: 2
File comments: 17
Uploads: 0
It's probably really simple...

How do I hide the shapeshift bar in the 3.1 update? Best I can do so far is make it mouseover via the config in lua.
Report comment to moderator  
Reply With Quote
Unread 04-18-09, 07:17 PM  
Jenack
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Originally posted by zork
Try reading the info page of this mod and look out for buttonstyler.
Oh I though I disabled buttonstyler allready!
This was the one, causing some other problems aswell (issue together with buttonfacade)
Thanks!
Report comment to moderator  
Reply With Quote
Unread 04-18-09, 06:23 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Originally posted by Jenack
Thanks for the fast reply! Then I'll stick with Bartender, since i've gottan use to that now..
Question; I use your UI (mainly), but have Bartender insted. Any elements in your UI, that forces macro text and keybindings to be hidden? Because I can make it show. But If i change bar, reload ui, enter instance and so on..
The macro text and keybindings will disapear again. Any idea why?
Try reading the info page of this mod and look out for buttonstyler.
__________________
| 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 04-18-09, 05:55 PM  
Jenack
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Originally posted by zork
The bars can everything the blizzard bars can do. Nothing more.
Thanks for the fast reply! Then I'll stick with Bartender, since i've gottan use to that now..
Question; I use your UI (mainly), but have Bartender insted. Any elements in your UI, that forces macro text and keybindings to be hidden? Because I can make it show. But If i change bar, reload ui, enter instance and so on..
The macro text and keybindings will disapear again. Any idea why?
Report comment to moderator  
Reply With Quote
Unread 04-18-09, 05:47 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Originally posted by Jenack
Does rActionBarStyler have same fuction as Bartender, where you can shift, alt and control to modify bar, some that I can swap main bar 1 to bar 3 with <ctrl> and to bar 4 with <shift> ?

This is the only I want to know, because if you do, im gonna make the swap!

(btw, I love your complete UI)
The bars can everything the blizzard bars can do. Nothing more.
__________________
| 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 04-18-09, 05:35 PM  
Jenack
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Originally posted by zork
Updated version of rActionButtonStyler will be available this weekend. You need a new function.
Does rActionBarStyler have same fuction as Bartender, where you can shift, alt and control to modify bar, some that I can swap main bar 1 to bar 3 with <ctrl> and to bar 4 with <shift> ?

This is the only I want to know, because if you do, im gonna make the swap!

(btw, I love your complete UI)
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: