Recent changes Random page
GAMING
Gaming
 
StarCraft Wiki
Super Smash Wiki
Halopedia
Diablo Wiki
FFXIclopedia
Grand Theft Wiki
See more...

Talk:Using Earth to create a QuestLog

From WoWWiki

Jump to: navigation, search

Can anyone tell me where to download Earth from? I checked "watch this page", so I should be informed if you answer here. Thanks! - Gnomechomsky , 2005 June 4

I finally found Earth as an Addon in the CaladarUI compilation from http://www.wowguru.com/ui/caladarui/ No idea if anything's been changed from the original, so use at your own risk - --Astral, 2005 June 25 (17:40 EDT)

The latest version of Earth can always be found in the Cosmos Alpha distribution - --Gryphon, 2005 July 7

Needs Update? (Aug 2005)

I just recently tried this tutorial with the latest Earth from Cosmos. I get an error at the beginning of the tutorial. In the code below the third line causes and error saying ebf is nil. Has anyone tried this tutorial lately? Does it need to be updated? Can anyone tell me another place that has some tutorials.


function PartyQuests_Frame_OnLoad()

   local ebf = getglobal(this:GetName().."PartyQuestsFrame".."ExpandButtonFrame");
   ebf:SetPoint("TOPLEFT", ebf:GetParent():GetName(), "TOPLEFT", 50, 1);

end

- User:Repent, 2005 August 29

Update (Oct 2005)

The correct way to add the PartyQuest_Frame_OnLoad functions is as follows

 function PartyQuests_Frame_OnLoad()
   local ebf = getglobal(this:GetName().."Tree".."Expand");
   ebf:SetPoint("TOPLEFT", ebf:GetParent():GetName(), "TOPLEFT", 50, 1);
 
   ...
 
 end

- User:afj666, 2005 October 30