View Single Post
01-31-12, 11:29 AM   #5
Waky
A Cobalt Mageweaver
 
Waky's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2010
Posts: 200
I'm pretty sure you can do something along the lines of:

Code:
if frameName then
-- Code to be executed if it exists
end
If I'm not mistaken

If that does nothing you could just to the nil check

Code:
if (frameName~=nil) then
-- Code to be executed if it exists
end
  Reply With Quote