The channel links module gives me some odd results. It appears the code is going out ok, for instance I can see "{CLINK:item:ffa335ee:13353:0:0:0:0:0:0:0:27:Book of the Dead}" but when it's displayed, it just comes out |citem[Book of the Dead], with no link or anything. This happens with or without GEM checked, and just showed up in the last day or 2. Any ideas?
------------------------------------------------------------------------
r242 | Medalist | 2009-02-12 19:36:12 +0000 (Thu, 12 Feb 2009) | 1 line
Changed paths:
M /trunk/modules/ChatLink.lua
...when I right click on a character's name and select Copy Text, I get: Interface\AddOns\Prat-3.0\modules\CopyChat.lua:317: attempt to index local 'dropdownFrame' (a nil value)
I was getting the same error, I found out how to make it work again...
SOLUTION:
1. Open World of Warcraft\Interface\AddOns\Prat-3.0\modules directory
2. Edit CopyChat.lua file in notepad/editplus etc.
3. Goto line 315
4. Replace
local dropdownFrame = _G[UIDROPDOWNMENU_INIT_MENU]
0
------------------------------------------------------------------------
r242 | Medalist | 2009-02-12 19:36:12 +0000 (Thu, 12 Feb 2009) | 1 line
Changed paths:
M /trunk/modules/ChatLink.lua
Chatlink |citem[Item] fix
0
For details:
http://www.wowace.com/projects/prat-3-0/tickets/83-set-main-drop-down-produces-an-error/
SYMPTOM:
"Set Main drop down produces an error" when you try to use AltNames module
1. Right click on a name in chat or a player in the Social Pane
2. Click on Set Main
3. Get error
SOLUTION:
1. Open World of Warcraft\Interface\AddOns\Prat-3.0\modules directory
2. Edit AltNames.lua file in notepad/editplus etc.
3. Go to line 880
4. Find
local dropdownFrame = getglobal(UIDROPDOWNMENU_INIT_MENU)
Replace with
local dropdownFrame = UIDROPDOWNMENU_INIT_MENU
5. Save file & exit
6. /reloadui or restart WoW
0
You're welcome
0
I was getting the same error, I found out how to make it work again...
SOLUTION:
1. Open World of Warcraft\Interface\AddOns\Prat-3.0\modules directory
2. Edit CopyChat.lua file in notepad/editplus etc.
3. Goto line 315
4. Replace
local dropdownFrame = _G[UIDROPDOWNMENU_INIT_MENU]
with
local dropdownFrame = UIDROPDOWNMENU_INIT_MENU
5. Save file
6. /reloadui or restart game