View Single Post
12-06-22, 09:02 PM   #19
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,934
Ah thats the old way .. hold on

Replace this block
Lua Code:
  1. <Backdrop bgFile="Interface\DialogFrame\UI-DialogBox-Background-Dark" edgeFile="Interface\DialogFrame\UI-DialogBox-Border" tile="true">
  2.             <BackgroundInsets>
  3.                 <AbsInset left="11" right="12" top="12" bottom="11" />
  4.             </BackgroundInsets>
  5.             <TileSize>
  6.                 <AbsValue val="32" />
  7.             </TileSize>
  8.             <EdgeSize>
  9.                 <AbsValue val="32" />
  10.             </EdgeSize>
  11.             <Color r="0" g="0" b="0" />
  12.         </Backdrop>

with

Lua Code:
  1. <KeyValues>
  2.         <KeyValue key="backdropInfo" value="BACKDROP_DARK_DIALOG_32_32" type="global"/>
  3.         <KeyValue key="backdropColor" value="BLACK" type="global"/>
  4.         <KeyValue key="backdropBorderColor" value="WHITE" type="global"/>
  5.     </KeyValues>


And if you want to look at alternative backdropInfo options. The top of this file has a bunch of pre-built ones.
https://www.townlong-yak.com/framexml/live/Backdrop.lua
__________________


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 : 12-06-22 at 09:07 PM.
  Reply With Quote