View Single Post
04-08-08, 06:55 PM   #13
Tekkub
A Molten Giant
 
Tekkub's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2005
Posts: 960
You can still expose them all without littering up the global namespace.

Code:
local f = CreateFrame("Frame", "MyAddonConfig", UIParent)
f.somecheckbox = CreateFrame(...
  Reply With Quote