View Single Post
10-07-13, 01:17 PM   #12
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,930
I tried that Scott just before I posted but maybe I did something wrong.

I'll try it again before I log in tonight.

edit: Well tried the following and no mover came up for either of them. Am I doing something wrong where they are not properly named frames ?

Lua Code:
  1. nUI_PetBattleFrameTop = PetBattleFrame.TopFrame
  2. nUI_PetBattleFrameBottom = PetBattleFrame.BottomFrame
  3.  
  4. nUI_Movers.managedFrames =
  5. {
  6.  
  7.  
  8.  
  9.     -- 5.0.3 Change Start Adding PetBattleFrame to Mover System
  10.     {
  11.         frameName = nUI_PetBattleFrameTop, --"PetBattleFrame",
  12.         labelText = "Top PetBattle Frame",
  13.         parent = "UIParent",
  14.         addOn = "Blizzard_PetBattleUI",
  15.         exclusionFrames = nil,
  16.         requiredFrames = nil,
  17.         defaultPosition =
  18.         {
  19.             anchorPt = "TOPLEFT",
  20.             relativeTo = "nUI_TopBars",
  21.             relativePt = "BOTTOMLEFT",
  22.             xOfs = -5,
  23.             yOfs = 15,
  24.         },
  25.     },
  26.  
  27.     {
  28.         frameName = nUI_PetBattleFrameBottom,--"PetBattleFrame",
  29.         labelText = "Bottom PetBattle Frame",
  30.         parent = "UIParent",
  31.         addOn = "Blizzard_PetBattleUI",
  32.         exclusionFrames = nil,
  33.         requiredFrames = nil,
  34.         defaultPosition =
  35.         {
  36.             anchorPt = "BOTTOM",
  37.             relativeTo = "nUI_Dashboard",
  38.             relativePt = "TOP",
  39.             xOfs = 0,
  40.             yOfs = 0,
  41.         },
  42.     },
__________________


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 : 10-07-13 at 01:29 PM.