1. Greetings

    What im looking to do is to make a addon that displays a button in the middel of the screen that has Hearthstone in it and if Hearthstone is on cooldown display Teleport: Moonglade, you should be able to press the button to cast Hearthstone/Teleport: Moonglade

    i have no experience to do this so if someone could point me in the right direction or help me with the base code ill be greatfull.

  2. Out of combat, this should be fairly easy to do. For example:

     /run CreateFrame("Button", "HearthFrame", UIParent, "SecureActionButtonTemplate")
     /run HearthFrame:SetSize(100, 100)
     /run HearthFrame:SetTexture("Interface/Icons/INV_Misc_Rune_01")
     /run HearthFrame:SetPoint("CENTER", 0, 0)
     /run HearthFrame:SetAttribute("type", "spell")
     /run HearthFrame:SetAttribute("spell", "Hearthstone")
    

    Untested, but may give you an idea.

  3. yes! thanks.