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,636
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 01-10-09, 05:22 AM  
MrCru
A Kobold Labourer

Forum posts: 0
File comments: 2
Uploads: 0
<3 !
Report comment to moderator  
Reply With Quote
Unread 01-10-09, 07:52 AM  
Tydor
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 16
Uploads: 1
Nice One Rothar.

Mit welcher Bar wechselt sich denn die Vehicle Bar ab ?


Gruss
Report comment to moderator  
Reply With Quote
Unread 01-10-09, 04:52 PM  
Taroven
A Cyclonian
AddOn Author - Click to view AddOns

Forum posts: 49
File comments: 837
Uploads: 11
Hey, I can finally get rid of Bartender.
Report comment to moderator  
Reply With Quote
Unread 01-10-09, 08:25 PM  
stako
A Deviate Faerie Dragon
 
stako's Avatar
AddOn Author - Click to view AddOns

Forum posts: 11
File comments: 19
Uploads: 2
Hello.

I love this addon because it is so simple. But I have one small problem with it. hide_shapeshift is 1 but when I exit/enter stealth sometimes the shapeshift bar will show up from no where.

Edit: I fixed it like this
Code:
  -- hide the shapeshift 
  if hide_shapeshift == 1 then
	ShapeshiftBarFrame:Hide()
	ShapeshiftBarFrame:UnregisterAllEvents(); 
	ShapeshiftBarFrame.Show = ShapeshiftBarFrame.Hide
  end
Last edited by stako : 01-11-09 at 01:58 PM.
Report comment to moderator  
Reply With Quote
Unread 01-11-09, 02:13 PM  
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1740
File comments: 3728
Uploads: 77
Please update to 002. This version is working properly. 001 is causing errors so please update.
__________________
| 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 01-11-09, 05:46 PM  
Wimpface
A Molten Giant
 
Wimpface's Avatar
AddOn Author - Click to view AddOns

Forum posts: 648
File comments: 204
Uploads: 4
Did this replace rBars2?
__________________
All I see is strobe lights blinding me in my hindsight.
Report comment to moderator  
Reply With Quote
Unread 01-12-09, 01:59 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 Wimpface
Did this replace rBars2?
If you check the rBars2 page...yes it does. A combination of 3 mods does replace rbars2 completly. (RedRange, rActionBarStyler, rActionButtonStyler)

It's modular and works in combat aswell without tainting anymore. rActionBarStyler does moving/scaling. rActionButtonStyler does the textures, fonts and names of the buttons and RedRange does the range/mana coloring.
__________________
| 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 01-13-09, 01:52 AM  
salish
A Kobold Labourer
 
salish's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 6
Uploads: 1
Hey Rothar,
I've got a question. How do I enable the griphons at the side of the actionbar?

regards
Report comment to moderator  
Reply With Quote
Unread 01-13-09, 02:08 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 salish
I've got a question. How do I enable the griphons at the side of the actionbar?
Gryphons are still sticky to the MainMenuBar. You need to reanchor every frame you want to see to f. Otherwise the frame will be scaled to tiny little pixel aswell as becoming transparent.

Framenames for gryphons are: "MainMenuBarLeftEndCap" and "MainMenuBarRightEndCap", check http://wowcompares.com/3039183/FrameXML/MainMenuBar.xml for more names.

Example:
Code:
MainMenuBarLeftEndCap:SetParent(f);
MainMenuBarLeftEndCap:ClearAllPoints();
MainMenuBarLeftEndCap:SetPoint("BOTTOM",UIParent,"BOTTOM",-200,0);
MainMenuBarLeftEndCap:SetScale(1);

MainMenuBarRightEndCap:SetParent(f);
MainMenuBarRightEndCap:ClearAllPoints();
MainMenuBarRightEndCap:SetPoint("BOTTOM",UIParent,"BOTTOM",200,0);
MainMenuBarRightEndCap:SetScale(1);
So 3 steps: Reanchor frame to f, move the frame, scale the frame. btw scaling will affect the setpoint. Mostly you can divive the setpoint value through the scaling value to fix this.

Example:
myscale = 0.8
mysetpoint = 200
MyFrame:SetPoint("BOTTOM",UIParent,"BOTTOM",mysetpoint/myscale,0);

Don't know how to move stuff? Read: http://www.wowwiki.com/API_Region_SetPoint

More...
http://www.wowwiki.com/World_of_Warcraft_API
http://www.wowwiki.com/Widget_API
__________________
| 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 : 01-13-09 at 02:14 AM.
Report comment to moderator  
Reply With Quote
Unread 01-13-09, 02:18 AM  
salish
A Kobold Labourer
 
salish's Avatar
AddOn Compiler - Click to view compilations

Forum posts: 0
File comments: 6
Uploads: 1
Thank you for your reply.
Report comment to moderator  
Reply With Quote
Unread 01-15-09, 04:53 PM  
MoonWitch
A Firelord
AddOn Author - Click to view AddOns

Forum posts: 455
File comments: 162
Uploads: 9
Is there a way to make the bars on the right be transparent more and go to full opaque on hover over?

If you have that as option, I want your babies.
Report comment to moderator  
Reply With Quote
Unread 01-15-09, 09:25 PM  
Meebsy
A Murloc Raider
 
Meebsy's Avatar

Forum posts: 6
File comments: 53
Uploads: 0
Updated to newest version of RothUI and tried out your new actionbars.
Very nice on first load but the Aura bar for my paladin is hidden.

I went into the lua and changed "local hide_shapeshift = 1" to 0 which I assumed would show up the Auras.

Well it did but now they don't seem to be skinned properly.

Image of problem:
__________________
Report comment to moderator  
Reply With Quote
Unread 01-16-09, 11:05 PM  
Wimpface
A Molten Giant
 
Wimpface's Avatar
AddOn Author - Click to view AddOns

Forum posts: 648
File comments: 204
Uploads: 4
Originally posted by zork
If you check the rBars2 page...yes it does. A combination of 3 mods does replace rbars2 completly. (RedRange, rActionBarStyler, rActionButtonStyler)

It's modular and works in combat aswell without tainting anymore. rActionBarStyler does moving/scaling. rActionButtonStyler does the textures, fonts and names of the buttons and RedRange does the range/mana coloring.
Very nice mate, 3 thumbs up!
__________________
All I see is strobe lights blinding me in my hindsight.
Report comment to moderator  
Reply With Quote
Unread 01-17-09, 06:37 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 Meebsy
I went into the lua and changed "local hide_shapeshift = 1" to 0 which I assumed would show up the Auras.
[/url]
... *edit*

Found the bug. New rActionButtonStyler version will be up in some hours.
__________________
| 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 : 01-17-09 at 07:06 AM.
Report comment to moderator  
Reply With Quote
Unread 01-17-09, 01:25 PM  
sush
A Kobold Labourer

Forum posts: 0
File comments: 10
Uploads: 0
nice addon - great job zork

but one question how can i change the spacing of the petbar?
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: