Download
(3Kb)
Download
Updated: 09-10-19 11:22 AM
Pictures
File Info
Compatibility:
Classic (1.13.2)
Updated:09-10-19 11:22 AM
Created:02-16-11 11:00 AM
Downloads:35,125
Favorites:31
MD5:

obar  Popular! (More than 5000 hits)

Version: v1.13a for classic
by: smaltore [More]

A very tiny and beautiful ActionBar base on blizz's.

Don't use other actionbar addon in the same time, like rActionBarStyler .

Feathers:
1.Main action bars display 3 lines with experience and reputation watch bar
2.Hide the art from blizz.
3.Make the pet/shift bar middle.
4.Fade micro menus, bags and side bars(mouse over showing).

Surport rActionButtonStyler !!

Any suggestions to [email protected]

Optional Files (0)


Post A Reply Comment Options
Unread 02-23-11, 10:11 PM  
mashkin
A Kobold Labourer
 
mashkin's Avatar

Forum posts: 0
File comments: 1
Uploads: 0
What is that casting bar? And what is that in the bottom right corner?
Report comment to moderator  
Reply With Quote
Unread 02-26-11, 01:21 PM  
smaltore
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 11
Uploads: 2
Originally posted by mashkin
What is that casting bar? And what is that in the bottom right corner?
1 .sycastbar;
2. TinyDps as Recount.
Report comment to moderator  
Reply With Quote
Unread 07-14-11, 03:11 PM  
Twidget
An Aku'mai Servant
 
Twidget's Avatar

Forum posts: 33
File comments: 401
Uploads: 0
TOC

Hi,
You updated the mod but not the toc so it shows as out of date in the addon list.

--Twidget
Report comment to moderator  
Reply With Quote
Unread 07-14-11, 03:20 PM  
Twidget
An Aku'mai Servant
 
Twidget's Avatar

Forum posts: 33
File comments: 401
Uploads: 0
Hi again,
Another issue.
The Dungeon Journal and Raid buttons on the Micromenu are not faded and they are larger than the rest of the icons.

Edit:
I fixed this bay adding two lines to your code:
local MicroButtons = {
CharacterMicroButton,
SpellbookMicroButton,
TalentMicroButton,
AchievementMicroButton,
QuestLogMicroButton,
GuildMicroButton,
PVPMicroButton,
EJMicroButton,
RaidMicroButton,
LFDMicroButton,
MainMenuMicroButton,
HelpMicroButton,
}

Added the EJ and Raid lines.

Edit:
You hid the background on the top two bars in the center but not on the main bar itself. Could you hide this bars background as well?

I noticed looking at your code that you list the key ring which is no longer used.

I modified the xp bar lua as well to increase the bars height. My old eyes had a hard time seeing them.

Thanks,
Twidget
Last edited by Twidget : 07-14-11 at 04:05 PM.
Report comment to moderator  
Reply With Quote
Unread 07-16-11, 12:45 AM  
smaltore
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 11
Uploads: 2
Originally posted by Twidget
Hi again,
Another issue.
The Dungeon Journal and Raid buttons on the Micromenu are not faded and they are larger than the rest of the icons.

Edit:
I fixed this bay adding two lines to your code:
local MicroButtons = {
CharacterMicroButton,
SpellbookMicroButton,
TalentMicroButton,
AchievementMicroButton,
QuestLogMicroButton,
GuildMicroButton,
PVPMicroButton,
EJMicroButton,
RaidMicroButton,
LFDMicroButton,
MainMenuMicroButton,
HelpMicroButton,
}

Added the EJ and Raid lines.

Edit:
You hid the background on the top two bars in the center but not on the main bar itself. Could you hide this bars background as well?

I noticed looking at your code that you list the key ring which is no longer used.

I modified the xp bar lua as well to increase the bars height. My old eyes had a hard time seeing them.

Thanks,
Twidget
I updated it for the wow client of china, and can't clearly understant what you said, if there some pictures.
Last edited by smaltore : 07-16-11 at 01:20 AM.
Report comment to moderator  
Reply With Quote
Unread 10-10-11, 05:13 PM  
myggl
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
it's awesome
Look forward to 4.2 version
Report comment to moderator  
Reply With Quote
Unread 05-25-12, 11:56 AM  
byoonie
A Defias Bandit

Forum posts: 2
File comments: 16
Uploads: 0
Thank you so much for this lightweight add-on. It's perfect for me because I like to keep the default Blizzard UI style
Report comment to moderator  
Reply With Quote
Unread 06-13-12, 07:02 PM  
firelines
A Kobold Labourer
 
firelines's Avatar

Forum posts: 0
File comments: 1
Uploads: 0
Action bar bg fix

Hi Everyone i just find out how you can fix the problem with the action bar background.

The code is:

[
---------- Action Bar BG FIX ----------
local button_Backdrop = "Interface\\DialogFrame\\UI-DialogBox-Background"
local button_bg = {
bgFile = button_Backdrop, edgeFile = button_Backdrop,
tile = false, tileSize = 0, edgeSize = 2,
insets = {left = 0, right = 0, top = 0, bottom = 0,},}
for index = 1, 12 do
local button = _G[format("ActionButton%d", index)]
button:SetBackdrop(button_bg);
button:SetBackdropColor(0,0,0,.5)
button:SetBackdropBorderColor(0,0,0,.5)
button:SetAttribute("showgrid", 1)
ActionButton_ShowGrid(button)

end
[/color]

Thank you so much for this lightweight add-on.

Devil
Last edited by firelines : 06-15-12 at 02:15 PM.
Report comment to moderator  
Reply With Quote
Unread 08-22-12, 09:18 AM  
smaltore
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 11
Uploads: 2
Re: Action bar bg fix

Originally Posted by firelines
Hi Everyone i just find out how you can fix the problem with the action bar background.

The code is:

[
---------- Action Bar BG FIX ----------
local button_Backdrop = "Interface\\DialogFrame\\UI-DialogBox-Background"
local button_bg = {
bgFile = button_Backdrop, edgeFile = button_Backdrop,
tile = false, tileSize = 0, edgeSize = 2,
insets = {left = 0, right = 0, top = 0, bottom = 0,},}
for index = 1, 12 do
local button = _G[format("ActionButton%d", index)]
button:SetBackdrop(button_bg);
button:SetBackdropColor(0,0,0,.5)
button:SetBackdropBorderColor(0,0,0,.5)
button:SetAttribute("showgrid", 1)
ActionButton_ShowGrid(button)

end
[/color]

Thank you so much for this lightweight add-on.

Devil

Thanks for your code, I will add it to next vesion.
Report comment to moderator  
Reply With Quote
Unread 01-19-13, 11:16 PM  
Meclol
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Hey!

Please update this addon with that code or help me where to put it, I tried putting that code into the obar.lua and I can still see the action bar background...

Thanks in advance!
Report comment to moderator  
Reply With Quote
Unread 02-10-13, 01:24 PM  
smaltore
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 11
Uploads: 2
Originally Posted by Meclol
Hey!

Please update this addon with that code or help me where to put it, I tried putting that code into the obar.lua and I can still see the action bar background...

Thanks in advance!
what code?

and I can't find any background in my test, is there some picture to show me? If you tell me what you are doing when it make some mistakes, so I can fix it more quickly.

sorry for my delay replay.
Last edited by smaltore : 02-10-13 at 01:25 PM.
Report comment to moderator  
Reply With Quote
Unread 03-09-14, 03:24 PM  
goldman1337
A Murloc Raider

Forum posts: 6
File comments: 39
Uploads: 0
any chance to add an option so it wont scale everything down? it's making my action bar pretty little in comparison to the default size
Report comment to moderator  
Reply With Quote
Unread 07-17-14, 10:07 PM  
Danielps1
Guest

Join Date: Not Yet
Forum posts: 0
File comments: 0
Uploads: 0
Moving the Actionbars

Can you bring in a control of the position of the actionbars. I can rearrange only the third bar in the middle + pet bars or stances.

How do I change positions for other bars?
Report comment to moderator  
Edit/Delete Message Reply With Quote
Unread 02-03-16, 06:54 AM  
V1X0
A Deviate Faerie Dragon

Forum posts: 10
File comments: 14
Uploads: 0
Hello!

I love the addon.

One thing I would like help with:
How can I remove the small gap, when hiding the reputation bar (and max lvl, so no exp bar) above the bottom and middle bar?
I tried editing in the .lua, but I can only make the top bar move. The middle bar stays in place...

Summary: I would like to move the 2 top bars, align with the bottom one. I dont care if it makes the reputation and exp bar not in right place (I dont use em anyway)!

Thanks.
Report comment to moderator  
Reply With Quote
Unread 02-26-16, 11:14 PM  
smaltore
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 11
Uploads: 2
Originally Posted by V1X0
Hello!

I love the addon.

One thing I would like help with:
How can I remove the small gap, when hiding the reputation bar (and max lvl, so no exp bar) above the bottom and middle bar?
I tried editing in the .lua, but I can only make the top bar move. The middle bar stays in place...

Summary: I would like to move the 2 top bars, align with the bottom one. I dont care if it makes the reputation and exp bar not in right place (I dont use em anyway)!

Thanks.



it no code to move bar 2

you have to adding 2 line codes below into the end of function layout() :

MultiBarBottomLeftButton1:ClearAllPoints();
MultiBarBottomLeftButton1:SetPoint("BOTTOMLEFT", MultiBarBottomLeft, "BOTTOMLEFT", X , Y );


adjust X & Y yourselft

and finally ,your codes maybe :

local function layout()
.....
.....

MultiBarBottomLeftButton1:ClearAllPoints();
MultiBarBottomLeftButton1:SetPoint("BOTTOMLEFT", MultiBarBottomLeft, "BOTTOMLEFT", 0 , 45 );

end
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: