View Single Post
06-01-05, 07:41 AM   #2
Kaelten
Jack's raging bile duct
 
Kaelten's Avatar
Featured
Join Date: May 2005
Posts: 782
Well.. part of the problem that may arise is that many addons need all character data to fire before off and become available before a addon can really use them. So what may work for you is to put a function call in your on update block that looks something like this.

hasran = false;

function diiv_onupdate()
if(not hasran) then
--I'd recommending checking that MoveAnything is installed, and if it is not
--then hide the frame by another method.
Call function here!
hasran = true;
end
end
  Reply With Quote