Thread Tools Display Modes
11-04-10, 04:13 AM   #61
Gaidinward
A Wyrmkin Dreamwalker
 
Gaidinward's Avatar
Join Date: Oct 2008
Posts: 58
I am on Windows 7, but the files I am using where emailed to me by Xrystal since I couldnt open the file attached to this thread.

Xrystal, could you send me the files again, just in case the wrong file got attached?

Again thanks for making up this temp fix for the bars. I have toons of each class and I was missing these bars.

Added screenshot of my /nui movers screen, just to verify that I really am not insane, well not about this anyways :P
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_110410_061751.jpg
Views:	591
Size:	319.2 KB
ID:	5173  

Last edited by Gaidinward : 11-04-10 at 04:20 AM. Reason: Adding SS
 
11-04-10, 05:55 AM   #62
schmitty
A Cliff Giant
 
schmitty's Avatar
Join Date: May 2010
Posts: 75
I believe the idea of the fix is to anchor the bar to the bottom of the class bar, you can't move it independantly with /nuimovers. Correct me if I'm wrong though Xrystal.
 
11-04-10, 08:36 AM   #63
whereswaldo
A Chromatic Dragonspawn
 
whereswaldo's Avatar
Join Date: May 2008
Posts: 167
Actually, the intent of the fix is to be able to move the Eclipse Bar (as well as the new bars for the other classes) anywhere on the screen that you want. As you see in my sceenshot, I have moved the Eclipse Bar to the bottom of the screen just above the Stance Bar.
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_110410_103357.jpg
Views:	588
Size:	289.9 KB
ID:	5174  
__________________

[SIGPIC][/SIGPIC]

Last edited by whereswaldo : 11-04-10 at 08:38 AM.
 
11-04-10, 09:20 AM   #64
Gaidinward
A Wyrmkin Dreamwalker
 
Gaidinward's Avatar
Join Date: Oct 2008
Posts: 58
Yeah that was my understanding, and on my LOCK and Pally this works as it should and is movable by the /nui movers command.

The druid is the only bar that I cant move. Xrystal emailed me the files, I am hoping that maybe she just attached the wrong lua file or something very simple. As I said, I can live with it, at least it is there now!
 
11-04-10, 10:58 AM   #65
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
Hmm very weird, it should have been the same file that I attached to the message that I sent you .

This is what should be in that lua file.

Code:
local addonName,addonData = ...

local PTM_Frame = CreateFrame("Frame","PTM_Frame",UIParent);
PTM_Frame:SetParent(UIParent);
PTM_Frame:SetPoint("CENTER");

local function PTM_WSSInit()	
	if ShardBarFrame then
		ShardBarFrame:SetParent(nil);
		ShardBarFrame:SetParent(PTM_Frame);
		ShardBarFrame:SetPoint("CENTER");
		nUI_Movers:lockFrame( ShardBarFrame, false, "nUI_XShardBarFrame" );
		ShardBar_OnLoad (ShardBarFrame);
		ShardBar_Update();
	end
end

local function PTM_STBInit()
	if TotemFrame then
		TotemFrame:SetParent(nil);
		TotemFrame:SetParent(MultiCastActionBarFrame);
		TotemFrameTotem1:SetPoint("TOPLEFT",MultiCastActionButton1,"BOTTOMLEFT");
		TotemFrameTotem2:SetPoint("TOPLEFT",MultiCastActionButton2,"BOTTOMLEFT");
		TotemFrameTotem3:SetPoint("TOPLEFT",MultiCastActionButton3,"BOTTOMLEFT");
		TotemFrameTotem4:SetPoint("TOPLEFT",MultiCastActionButton4,"BOTTOMLEFT");
	end
end

local function PTM_PPBInit()
	if PaladinPowerBar then 
		PaladinPowerBar:SetParent(nil);
		PaladinPowerBar:SetParent(PTM_Frame);
		PaladinPowerBar:SetPoint("CENTER");
		nUI_Movers:lockFrame( PaladinPowerBar, true, "nUI_XPaladinPowerBar" ); 		
		PaladinPowerBar_OnLoad(PaladinPowerBar);
		PaladinPowerBar_Update(PaladinPowerBar);
	end	
end

local function PTM_DEBInit()
	if EclipseBarFrame then
		EclipseBarFrame:Hide();
		EclipseBarFrame:SetParent(nil);
		EclipseBarFrame:ClearAllPoints();
		EclipseBarFrame:SetParent(PTM_Frame);
		EclipseBarFrame:SetPoint("CENTER");
		nUI_Movers:lockFrame( EclipseBarFrame, true, "nUI_XDruidEclipseBar" ); 
		EclipseBar_OnLoad(EclipseBarFrame);
		EclipseBar_UpdateShown(EclipseBarFrame);		
	end
end

local function PTM_Events(self,event,...)
	local arg1,arg2,arg3,arg4,arg5,arg6 = ...;
	if ( event == "ADDON_LOADED" and arg1 == addonName ) then
		self.unit = PlayerFrame.unit;		
	elseif ( event == "PLAYER_ENTERING_WORLD" ) then		
		local _, class = UnitClass("player");
		self.unit = PlayerFrame.unit;		
		if class == "PALADIN" then PTM_PPBInit(); end
		if class == "WARLOCK" then PTM_WSSInit(); end
		if class == "SHAMAN" then PTM_STBInit(); end
		if class == "DRUID" then PTM_DEBInit(); end
		self:UnregisterEvent(event);
	elseif ( event == "PLAYER_TARGET_CHANGED" ) then
		self.unit = PlayerFrame.unit;
	end
end

--[[ Register the events we want to watch ]]--
PTM_Frame:SetScript( "OnEvent", PTM_Events );
PTM_Frame:RegisterEvent( "ADDON_LOADED" );
PTM_Frame:RegisterEvent( "PLAYER_ENTERING_WORLD" );
PTM_Frame:RegisterEvent( "PLAYER_TARGET_CHANGED" );
__________________


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 : 11-04-10 at 11:00 AM.
 
11-04-10, 11:27 AM   #66
Gaidinward
A Wyrmkin Dreamwalker
 
Gaidinward's Avatar
Join Date: Oct 2008
Posts: 58
Will copy the code and make it into an lua file when I get home and give it a try.
 
11-05-10, 08:28 AM   #67
Gaidinward
A Wyrmkin Dreamwalker
 
Gaidinward's Avatar
Join Date: Oct 2008
Posts: 58
Xrystal,

I verified the code was the same, I am still unable to move the druid bar. I even tried starting with a fresh WTF/Interface folders with just nUI and the temp plugin and was still unable to do it.

As I said before though, I can deal with this and will while Scott works to get the next version ready. I appreciate you creating this as a temp fix.
 
11-17-10, 04:50 PM   #68
Belechannas
A Warpwood Thunder Caller
Join Date: May 2010
Posts: 86
Edit...disregard...the bar was in fact moved behind something else.

Last edited by Belechannas : 11-17-10 at 04:55 PM.
 
11-17-10, 06:03 PM   #69
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
Originally Posted by Gaidinward View Post
Xrystal,

I verified the code was the same, I am still unable to move the druid bar. I even tried starting with a fresh WTF/Interface folders with just nUI and the temp plugin and was still unable to do it.

As I said before though, I can deal with this and will while Scott works to get the next version ready. I appreciate you creating this as a temp fix.
Hmm, it doesn't make sense why it isn't working .. any other druids not having this problem or can confirm ? But anyway, just in case it is a factor I just looked at the code again and noticed an extra line that may be stopping the move.

EclipseBarFrame:ClearAllPoints();

Put -- in front of that line and see if that resolves it for you.
__________________


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
 
11-17-10, 06:42 PM   #70
Gaidinward
A Wyrmkin Dreamwalker
 
Gaidinward's Avatar
Join Date: Oct 2008
Posts: 58
That did it! Thanks!
 
11-17-10, 09:18 PM   #71
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
Cool, ok for those that don't want to track down the link for the download rofl. Here's a fresh update including the last confirmed druid buglet fixed

But mainly so that my guild master that is missing the holy power stuff can get hold of this himself rofl.
Attached Files
File Type: zip nUI_Plugin_TempMovers_v1_07_00.zip (1.7 KB, 580 views)
__________________


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
 
11-18-10, 11:14 AM   #72
Blanckaert
A Flamescale Wyrmkin
Join Date: May 2010
Posts: 121
Xrystal....

I downloaded it, and tried to unzip, and it comes up, invalid zip file.

Also, ummm where do I put the file, just in the addons dir, or in a specific nUI directory.... (I got the lost in the nether of addons...)
__________________
Have fun, and remember WOW is just a game, for us to enjoy, and all the Addons we use.... remember the programmer is a human too, and MOST times, is doing this as a hobby, so give them time to have their life, so they can fix the addons, so we can have our WOW life.
 
11-18-10, 11:25 AM   #73
schmitty
A Cliff Giant
 
schmitty's Avatar
Join Date: May 2010
Posts: 75
Originally Posted by Blanckaert View Post
Xrystal....

I downloaded it, and tried to unzip, and it comes up, invalid zip file.

Also, ummm where do I put the file, just in the addons dir, or in a specific nUI directory.... (I got the lost in the nether of addons...)
When you unzip the file, you need to add the .zip extension to the name of the file that is extracted, then unzip that file too, that's the actual main archive. For some reason when Xrystal zips her files it zips the actual zip file inside the zip file, if that makees sense.
 
11-18-10, 11:43 AM   #74
Blanckaert
A Flamescale Wyrmkin
Join Date: May 2010
Posts: 121
the file has the .zip extension, when I click on it to open it, Windows says
"Windows cannot open the folder.

The Compressed (zipped) Folder
'cblah blah)\nUI_plugin_TempMovers_v1_07_00.zip' is invalid. "
__________________
Have fun, and remember WOW is just a game, for us to enjoy, and all the Addons we use.... remember the programmer is a human too, and MOST times, is doing this as a hobby, so give them time to have their life, so they can fix the addons, so we can have our WOW life.
 
11-18-10, 12:33 PM   #75
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
See if this one unzips correctly...

.
Attached Files
File Type: zip nUI_Plugin_TempMovers.zip (1.9 KB, 553 views)
__________________

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/
 
11-18-10, 12:42 PM   #76
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
Hmm, this must be a Windows 7 thing then as I am right clicking on the folder and telling it to add the folder to an archive giving it a new name and thus creating a compressed folder ( zip file ) containing one folder. I never see a zip file inside it ever so I apologise to all you guys/gals having this problem as it seem Windows is doing that stuff behind my back and not letting me see it.

Edit: Wow, I stand corrected. I just tried to download this stuff myself and it didn't work. This concerns me then as I now worry that all my addons will be affected by this as this is the way I have always done this with my addons and it has only been in this instance that problems occur.
__________________


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
 
11-18-10, 12:51 PM   #77
whereswaldo
A Chromatic Dragonspawn
 
whereswaldo's Avatar
Join Date: May 2008
Posts: 167
Not sure what problem you are having with the attachment. I downloaded it from this thread with no problems. Double clicked the zip file and dragged the folder inside into my Interface folder without any issues (just like I always have). Must be an issue with Windows 7 on the receivers end not yours.
__________________

[SIGPIC][/SIGPIC]

Last edited by whereswaldo : 11-18-10 at 12:55 PM.
 
11-18-10, 01:05 PM   #78
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
I'm actually getting the problem myself. But only when I try to open from this forum. Perhaps a security related item within Windows 7 itself that is disallowing it. Trying Firefox.

Edit: Yes, seems to be an internet explorer/windows 7 related problem. If I use firefox and tell it to use either Internet Explorer or explorer.exe to open the zip file it will do what I expect and show the folder I want in there on its own.
__________________


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 : 11-18-10 at 01:08 PM.
 
11-18-10, 05:24 PM   #79
whereswaldo
A Chromatic Dragonspawn
 
whereswaldo's Avatar
Join Date: May 2008
Posts: 167
I use Opera, myself. Too many issues with IE.....
__________________

[SIGPIC][/SIGPIC]
 
11-18-10, 06:35 PM   #80
Blanckaert
A Flamescale Wyrmkin
Join Date: May 2010
Posts: 121
ok... with window 7, I 'saved' to a directory, then had to right click, and 'extract here', then click and rename the extracted file to .zip, then was able to right click, to extract file.

* windows 7 said it cant, and also then said it was an empty file, had to 'force' it to unzip. *

But still my other question, as I didnt see where it said to put the file, just in the interface\addons or in \nui\ directory ?

I got the file though....
__________________
Have fun, and remember WOW is just a game, for us to enjoy, and all the Addons we use.... remember the programmer is a human too, and MOST times, is doing this as a hobby, so give them time to have their life, so they can fix the addons, so we can have our WOW life.
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Bug Reports » Temporary Fix to new class bars


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