Download
(4Kb)
Download
Updated: 11-03-14 09:44 PM
Pictures
File Info
Compatibility:
Warlords of Draenor (6.0.3)
Warlords of Draenor Pre-Patch (6.0.2)
Updated:11-03-14 09:44 PM
Created:09-28-09 03:41 PM
Downloads:14,348
Favorites:45
MD5:

nUI : InfoPanel [Zygor]  Popular! (More than 5000 hits)

Version: r11
by: KanadiaN [More]

This was made at the request of a friend that wanted Zygor Leveling Guild in a InfoPanel. This version locks the frame for you.

In Memory of my late friend Shawn ( R.I.P. Bouda )

This has been updated to WoW v5.4 and the newest version of Zygor..

The Zygor frame is auto locked to keep it in the InfoPanel.

Post A Reply Comment Options
Unread 11-11-14, 10:12 AM  
KanadiaN
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 24
Uploads: 7
this is a issue that has been around since the start of the infopanel, This infopanel was created for a very close friend and since has passed, dealing with this addon pains me greatly, I will put this in for now but I will also look at a better way to address this as the author of Zygor has given some ideas as well
Originally Posted by spyder2k5
Alright well I fixed the issue, Zygor now works in both upside down and rightside up as does hiding the controls. I worked many hours before I found the simple, stupid most obvious fix I cannot believe I failed to see.

It seems this issue has plagued this addon for quite sometime if not forever.

Replace lines 112-115 with the following:

Code:
Z_Frame:ClearAllPoints ();
Z_Frame:SetPoint( "TOPLEFT", plugin.container, "TOPLEFT", 0, 0 );
Z_Frame:SetPoint( "BOTTOMRIGHT", plugin.container, "BOTTOMRIGHT", 0, 0 );
The missing code was of course the "Z_Frame:ClearAllPoints ();" part. You don't need to offset or do anything in terms of moving it otherwise just make sure both corners are set after clearing and it works all the time, everytime. I check relogging, and switching on the fly, and reloading the UI every time it has worked, and will even show the longer steps properly. Unless the step is REALLY long then it might not show the entire step, this is a limitation based on the size of the Infopanel and not an issue with the addons.

I give this fix to the community, and for you to integrate into a future update in hopes those that have had similar issues may now enjoy using Zygor inside the Infopanel.
Report comment to moderator  
Reply With Quote
Unread 11-06-14, 09:27 PM  
spyder2k5
A Murloc Raider

Forum posts: 0
File comments: 2
Uploads: 0
Alright well I fixed the issue, Zygor now works in both upside down and rightside up as does hiding the controls. I worked many hours before I found the simple, stupid most obvious fix I cannot believe I failed to see.

It seems this issue has plagued this addon for quite sometime if not forever.

Replace lines 112-115 with the following:

Code:
Z_Frame:ClearAllPoints ();
Z_Frame:SetPoint( "TOPLEFT", plugin.container, "TOPLEFT", 0, 0 );
Z_Frame:SetPoint( "BOTTOMRIGHT", plugin.container, "BOTTOMRIGHT", 0, 0 );
The missing code was of course the "Z_Frame:ClearAllPoints ();" part. You don't need to offset or do anything in terms of moving it otherwise just make sure both corners are set after clearing and it works all the time, everytime. I check relogging, and switching on the fly, and reloading the UI every time it has worked, and will even show the longer steps properly. Unless the step is REALLY long then it might not show the entire step, this is a limitation based on the size of the Infopanel and not an issue with the addons.

I give this fix to the community, and for you to integrate into a future update in hopes those that have had similar issues may now enjoy using Zygor inside the Infopanel.
Last edited by spyder2k5 : 11-06-14 at 09:29 PM.
Report comment to moderator  
Reply With Quote
Unread 11-06-14, 12:11 AM  
spyder2k5
A Murloc Raider

Forum posts: 0
File comments: 2
Uploads: 0
Been trying to figure this one out all night...

I have the latest Zygor, and nUI, along with the most current version of this addon but for some reason if I tell the guide to display upside down it works great, and better than standard. However if I log out or reload my UI it loads into the upper left corner of my screen and only corrects when I disable upside down and reload the UI. If anyone knows a fix, or if the author would be so kind as to look into this I would really appreciate it!
Report comment to moderator  
Reply With Quote
Unread 11-11-13, 01:22 PM  
KanadiaN
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 24
Uploads: 7
Re: Lost

Originally Posted by Kippereast
I tried following your instructions with the latest Zygor Version and NUI 5.07.19, but either something is different or I am missing something. Does anybody have any suggestions for me to get this working in a frame, rather than on the game screen.

Help would be appreciated.
It was more of a idea to help you out but I will update them as soon a posible.
Report comment to moderator  
Reply With Quote
Unread 11-11-13, 01:20 PM  
KanadiaN
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 24
Uploads: 7
Originally Posted by SinusPi
Some ideas to make it work better:

- pin ZygorGuidesViewerFrameMaster, not ZygorGuidesViewerFrame
- watch out for upside-down mode and border-hiding

Useful lines should be...
local Z_Frame = ZygorGuidesViewerFrameMaster;
... and ...
Z_Frame:SetPoint( "TOPLEFT", plugin.container, "TOPLEFT", 0, 0 );
local mode = ZGV.db.profile.dispmodepri and ZGV.db.profile.dispprimary or ZGV.db.profile.dispsecondary
Z_Frame:SetPoint( "BOTTOMRIGHT", plugin.container, "BOTTOMRIGHT", 0, mode.hideborder and (ZGV.db.profile.resizeup and -45 or 45) or 0 );
... they should go somewhere into the plugin.setEnabled function. The latter bit adjusts the position of the window to put the true contents in the right place, since the border would be gone most of the time.

I'm sorry I don't have the time to fix it for you in full, but maybe it helps a bit. Cheers

Sinus / zygorguides.com
Thanks I will look at getting this in today, sorry I do not check this account as much as I do my zygor account.

EDIT:
I tried ZygorGuidesViewerFrameMaster but it did not work, it just caused the from to be ofset.
Last edited by KanadiaN : 11-13-13 at 08:41 PM.
Report comment to moderator  
Reply With Quote
Unread 07-03-13, 11:34 AM  
SinusPi
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 13
Uploads: 1
Some ideas to make it work better:

- pin ZygorGuidesViewerFrameMaster, not ZygorGuidesViewerFrame
- watch out for upside-down mode and border-hiding

Useful lines should be...
local Z_Frame = ZygorGuidesViewerFrameMaster;
... and ...
Z_Frame:SetPoint( "TOPLEFT", plugin.container, "TOPLEFT", 0, 0 );
local mode = ZGV.db.profile.dispmodepri and ZGV.db.profile.dispprimary or ZGV.db.profile.dispsecondary
Z_Frame:SetPoint( "BOTTOMRIGHT", plugin.container, "BOTTOMRIGHT", 0, mode.hideborder and (ZGV.db.profile.resizeup and -45 or 45) or 0 );
... they should go somewhere into the plugin.setEnabled function. The latter bit adjusts the position of the window to put the true contents in the right place, since the border would be gone most of the time.

I'm sorry I don't have the time to fix it for you in full, but maybe it helps a bit. Cheers

Sinus / zygorguides.com
Report comment to moderator  
Reply With Quote
Unread 06-13-13, 09:07 PM  
KanadiaN
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 24
Uploads: 7
Re: Re: Lost

Originally Posted by Wramphist
Originally Posted by Kippereast
I tried following your instructions with the latest Zygor Version and NUI 5.07.19, but either something is different or I am missing something. Does anybody have any suggestions for me to get this working in a frame, rather than on the game screen.

Help would be appreciated.
Not sure of your exact options setupo in NUI or Zygors, but i use both the infopanel and a recent version of Zygors that is Mists-ready, they both (NUI & Infopanel) behave as normal, havent had any fatal errors, can send you my config files for both NUI and Infopanel if you want and you can try them out, PM me here if you want those
Sorry I was out of the Country I will look to see what is causing the problem and get it fixed
Report comment to moderator  
Reply With Quote
Unread 10-27-12, 01:13 PM  
Wramphist
A Kobold Labourer

Forum posts: 1
File comments: 1
Uploads: 0
Re: Lost

Originally Posted by Kippereast
I tried following your instructions with the latest Zygor Version and NUI 5.07.19, but either something is different or I am missing something. Does anybody have any suggestions for me to get this working in a frame, rather than on the game screen.

Help would be appreciated.
Not sure of your exact options setupo in NUI or Zygors, but i use both the infopanel and a recent version of Zygors that is Mists-ready, they both (NUI & Infopanel) behave as normal, havent had any fatal errors, can send you my config files for both NUI and Infopanel if you want and you can try them out, PM me here if you want those
Report comment to moderator  
Reply With Quote
Unread 10-22-12, 10:12 PM  
Kippereast
A Defias Bandit

Forum posts: 3
File comments: 1
Uploads: 0
Lost

I tried following your instructions with the latest Zygor Version and NUI 5.07.19, but either something is different or I am missing something. Does anybody have any suggestions for me to get this working in a frame, rather than on the game screen.

Help would be appreciated.
Report comment to moderator  
Reply With Quote
Unread 01-27-11, 06:39 PM  
KanadiaN
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 24
Uploads: 7
Re: Zygor 3

Originally posted by Daveo77
Will this work with the latest version of Zygor Guides (v3) ?

EDIT: It does
I do not use nUI but from my testing it should be working ok with it, the addon has been updated
Report comment to moderator  
Reply With Quote
Unread 01-10-11, 08:20 PM  
Daveo77
Premium Member
 
Daveo77's Avatar
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 141
File comments: 58
Uploads: 1
Zygor 3

Will this work with the latest version of Zygor Guides (v3) ?

EDIT: It does
Last edited by Daveo77 : 01-10-11 at 08:36 PM.
Report comment to moderator  
Reply With Quote
Unread 01-05-11, 11:59 PM  
KanadiaN
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 24
Uploads: 7
Re: Opening the Download

Originally posted by Lisu
Hello:

When I download this particular Nui Interface Addon, it is a rar file, rather than a zip file. My Mac does not seem to know what application to use to open it, and none of the available choices seem to work. Any suggestions? Thanks!
I will change the file to a zip
Report comment to moderator  
Reply With Quote
Unread 12-10-10, 07:44 PM  
Lisu
A Deviate Faerie Dragon

Forum posts: 10
File comments: 1
Uploads: 0
Opening the Download

Hello:

When I download this particular Nui Interface Addon, it is a rar file, rather than a zip file. My Mac does not seem to know what application to use to open it, and none of the available choices seem to work. Any suggestions? Thanks!
Report comment to moderator  
Reply With Quote
Unread 10-18-10, 09:28 PM  
KanadiaN
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 24
Uploads: 7
Re: please help

Originally posted by demonadark
Can u explain in detail how to fix this? I'm confused.. thanks.
I am working on updating the addon
Report comment to moderator  
Reply With Quote
Unread 10-13-10, 07:20 PM  
demonadark
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
please help

Can u explain in detail how to fix this? I'm confused.. thanks.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: