1. I am having trouble creating a new frame using a template. I have the following template but I am unable to create a frame using it.

    <Frame name="GrimoireBaseFrameTemplate" virtual="true">
        <Size x="500" y="400" />
        <Anchors>
            <Anchor point="CENTER" />
        </Anchors>
        <Backdrop bgFile="Interface\Tooltips\UI-Tooltip-Background" edgeFile="Interface\Tooltips\UI-Tooltip-Border" tile="true">
            <BackgroundInsets>
                <AbsInset left="5" right="5" top="5" bottom="5" />
            </BackgroundInsets>
            <TileSize>
                <AbsValue val="16" />
            </TileSize>
            <EdgeSize>
                <AbsValue val="16" />
            </EdgeSize>
        </Backdrop>
    </Frame>
    

    I have tried following it with:

    <Frame name="GrimoireBaseFrame1" inherits="GrimoireBaseFrameTemplate" />
    

    but it doesn't seem to create the new frame. Any help would be greatly appreciated.

  2. Are there any errors in your FrameXML.log?

  3. No there aren't that is why i am confused.