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,666
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-19-09, 05:30 PM  
Balkeep
A Cyclonian
 
Balkeep's Avatar
AddOn Author - Click to view AddOns

Forum posts: 43
File comments: 58
Uploads: 2
Sorry, seems it was noob comment from me =P Great mod thou!
Report comment to moderator  
Reply With Quote
Unread 01-19-09, 05:03 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 Balkeep
Cool mod. 1 question thou, how do u supposed to exit tanks on WG/BGs if u do this
Code:
VehicleMenuBar:SetScale(0.001)
VehicleMenuBar:SetAlpha(0)
Right click unitframe -> Exit vehicle.
__________________
| 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-19-09, 03:18 PM  
Balkeep
A Cyclonian
 
Balkeep's Avatar
AddOn Author - Click to view AddOns

Forum posts: 43
File comments: 58
Uploads: 2
Cool mod. 1 question thou, how are u supposed to exit tanks on WG/BGs if u do this
Code:
VehicleMenuBar:SetScale(0.001)
VehicleMenuBar:SetAlpha(0)
Last edited by Balkeep : 01-19-09 at 05:30 PM.
Report comment to moderator  
Reply With Quote
Unread 01-17-09, 06:17 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 sush
but one question how can i change the spacing of the petbar?
You need to readjust the setpoints of every petbarbutton to do that, its not that hard. But I would advise you to do that inside the rActionButtonStyler since you want to adjust the setpoints of the buttons in this case.

Something like this could do it:
Code:
  for i=1, NUM_PET_ACTION_SLOTS do
    if i > 1 then
      local name = "PetActionButton"..i;
      local name2 = "PetActionButton"..(i-1);
      local bu  = _G[name]
      local bu2  = _G[name2]
      bu:ClearAllPoints()
      bu:SetPoint("LEFT", bu2, "RIGHT", 20, 0)
    end
  end
Add this to the petstyle function. Adjust the "20" to adjust your spacing and read http://www.wowwiki.com/API_Region_SetPoint

Could this be done with your actionbuttons aswell? Yes I think so.
__________________
| 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 06:25 PM.
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
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-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-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-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-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-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, 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-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-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-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
Post A Reply



Category Jump: