View Single Post
02-20-17, 02:52 PM   #11
wille480
A Wyrmkin Dreamwalker
Join Date: Jan 2017
Posts: 56
Originally Posted by briskman3000 View Post
If all you want is a frame with a border, and not have to worry about Libs, this should create a simple 200x100 frame for you to work with

Lua Code:
  1. local frame = CreateFrame("Frame", nil, UIParent)
  2. frame:SetSize(200, 100)
  3. frame:SetPoint("CENTER")
  4. frame:SetBackdrop({
  5.     bgFile="Interface\\Tooltips\\UI-Tooltip-Background",
  6.     edgeFile="Interface\\Tooltips\\UI-Tooltip-Border",
  7.     tile=false,
  8.     tileSize=0,
  9.     edgeSize=2,})
  10. frame:SetBackdropColor(0,0,0,0.5)
  11. frame:SetBackdropBorderColor(0,0,0,1)
Hello! Dude thank you , I have tried litterly for days trying to just make a fraking window , Those libraries drives me insane , Especially trying to work with sexyinterupter code because everything is mixed in to eachother so hard to sort that code out.

best regards!
  Reply With Quote