2008-10-30, 07:42 AM
Not sure if you'll get time to answer this.
But I have a class that has GBPVRX2.Popups.PopupBase as it's superclass.
The skin contains the following:
In GetRenderList I call
hoping that it will return a HashTable with "@updateMessage" in it.
It this how it should work?
But I have a class that has GBPVRX2.Popups.PopupBase as it's superclass.
The skin contains the following:
Code:
<CompositeImage name="PopupBackground" size="50,50">
<DrawRoundedRect loc="2,2" size="96,96" fillColor="PopupBackground" borderColor="PopupBorder" radius="@PopupCornerRadius" borderWidth="@PopupBorderWidth"/>
<DrawText text="Select Option" loc="0,5" size="100,20" textStyle="GeneralTextStyle" align="Center"/>
<DrawText text="@updateMessage" loc="30,50" size="70,20" textStyle="GeneralTextStyle" align="Left"/>
</CompositeImage>
In GetRenderList I call
Code:
System.Collections.Hashtable args = this.getBackgroundArgs();
hoping that it will return a HashTable with "@updateMessage" in it.
It this how it should work?