View Single Post
06-24-05, 09:10 PM   #7
Gello
A Molten Giant
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 521
<Anchor point="TOPLEFT" relativeTo="RecapPanelOutgoingLabel" relativePoint="BOTTOMLEFT">
That relativeTo isn't defined likely. Sorry I didn't make a more generic example to copy/paste hehe

</Layers>

<Button name = "RecapPanelDetailTemplate" virtual="true">
...
<Frames>
I would also move this virtual button outside the frame entirely. I stick these at the very start. So an xml looks like:

<Button name="SomeTemplate" virtual="true">
etc
</Button>

<Frame name="MyFrame">
<Layers>
etc
</Layers>
<Frames>
</Frames>
<Scripts>
</Scripts>
</Frame>

I'll look at it more in depth later.

Last edited by Gello : 06-24-05 at 09:14 PM.
  Reply With Quote