View Single Post
06-13-09, 05:09 PM   #5
CalciumIRL
A Deviate Faerie Dragon
AddOn Compiler - Click to view compilations
Join Date: Oct 2008
Posts: 15
Currently it's pure Lua, and I'd prefer that if you can.

If you have an IRC client would it be easier to talk through that?

1. Well actually, all I need it to do is put a texture into WoW as a base. I just need it hung to the top of my screen as a backdrop for my SLDT Elements. Currently I have...

Code:
local a = CreateFrame("Frame", nil, UIParent)
a:SetFrameStrata("BACKGROUND")
a:SetTexture("Interface\\AddOns\\rTextures\\SLDT_Frame.tga")
a:SetWidth(1280)
a:SetHeight(200)
a:SetPoint("CENTER", 0, 0)
a:Show()

Last edited by CalciumIRL : 06-13-09 at 05:26 PM.
  Reply With Quote