Thread Tools Display Modes
05-15-09, 03:26 AM   #1
jabathehutt
A Deviate Faerie Dragon
Join Date: Mar 2009
Posts: 14
Command issue

Im not sure if its a bug or not but when trying to write /nui bagbar mouseover nothing happens if you write /nui bagbar off this works and from off to mouseover it works.

Also settings are not saved when you logout.
What i did what /nui bagbar off then /nui bagbar mouseover which worked then logged out.
Then i logged in again after a couple hours and the bagbar was there again and not fading out.

Regards J
 
05-15-09, 04:13 AM   #2
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
If settings are not saving when you exit then I'm going to bet dollars to donuts that you are playing on a Windows Vista machine and WoW does not have administrative permission in the directory you installed it in.

See if this thread doesn't help you... http://forums.worldofwarcraft.com/th...57867106&sid=1
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
05-16-09, 01:09 AM   #3
jabathehutt
A Deviate Faerie Dragon
Join Date: Mar 2009
Posts: 14
hehe well if that only were the case i am playin on vista 64 but i start the game with full admin rights and also have full rights on the directory in question so that is not the issue.
And the case that i cannot write /nui bagbar mouseover the game does not do anything when i write this that has to be some bug somewhere imo.

I actually have the same problem on different machines with different oses one has windows 7 one vista 64 and one xp.

J

Last edited by jabathehutt : 05-16-09 at 03:29 AM.
 
05-16-09, 06:13 AM   #4
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Okay, just tested this myself and can confirm that bagbar mouseover doesn't keep your changes when you log out.

I have Vista too and the game is in the official public/games folder as the game asks when you install lich king.

console mouseover is doing the same thing.

ah okay... a little more testing and this seems to be happening if it helps you scott.

Log out to character selection screen and then back in game, no problems and setting is correct and working as expected.

Log out to log in screen and relog in then the settings are correct but they are not using the settings but instead using 'on' status.

Scratch that .. console mouseover is working, it just took a little while to work. Retesting bagbar mouseover again.

Nope definitely refuses to work.

I did notice however that the mouseover fading code for console is a lot different to the bag bar code. Could that be the cause or is everyone else not having this problem ?
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 05-16-09 at 06:21 AM.
 
05-16-09, 08:07 AM   #5
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
I'll put this on the bug list and have a look at it this weekend.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
05-16-09, 08:59 AM   #6
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Okay... I found the problem and it's an easy fix for those who don't want to wait for the update Sunday night.

Edit [ Interface > AddOns > nUI > Bars > nUI_BagBar.lua ] and go to line 193 where you'll see this code block...

Code:
        -- set the appropriate bag bar visibility
        
        if nUI_Options.bagbar == "off" then
            frame:SetAlpha( 0 );
            frame.alpha = 0;
        elseif nUI_Options.bagbar ~= "mouseover" then
            frame:SetAlpha( 1 );
            frame.alpha = 1;
            nUI_BagBar:SetScript( "OnUpdate", onBagBarUpdate );
        end 
... and add an "else" statement to it so it looks like this...

Code:
        -- set the appropriate bag bar visibility
        
        if nUI_Options.bagbar == "off" then
            frame:SetAlpha( 0 );
            frame.alpha = 0;
        elseif nUI_Options.bagbar ~= "mouseover" then
            frame:SetAlpha( 1 );
            frame.alpha = 1;
        else
            nUI_BagBar:SetScript( "OnUpdate", onBagBarUpdate );
        end
That should do the trick.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Bug Reports » Command issue

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off