<Page Activated="true" eq2usescomwndcontrols="true" Name="Frame" OnShow="parent.parent.GroupMembers.visible=true parent.parent.GroupMembers.visible=true" ScrollExtent="111,224" Size="111,224">
There isn't any need to set the GroupMembers.visible property because GroupMembers is the main window and should already be visible.
Being you made GroupMember1-GroupMember5 a child of Frame and not GroupMembers you need to add DynamicData to the Objects nested in GroupMember1-GroupMember5 that don't already have DynamicData assigned to them
example for members 1 name:
you have
<Text AbsorbsInput="false" BackgroundColor="#FF0000" BackgroundOpacity="0.275" Font="/Fetish.Fonts.FontArial14T" LocalText="GroupMember" Margin="12,-1,0,0" Name="Name" PackLocation="top,left" PackLocationProp="0000/0001,0000/0001" ScrollExtent="107,15" ShadowStyle="/ShadowStyles.Outline1" Size="107,15" TextAlignment="Center" TextAlignmentVertical="Center">GroupMember</Text>
should look like
<Text AbsorbsInput="false" BackgroundColor="#FF0000" BackgroundOpacity="0.275" DynamicData="/GameData.Group.Group_1.Name" Font="/Fetish.Fonts.FontArial14T" LocalText="GroupMember" Margin="12,-1,0,0" Name="Name" PackLocation="top,left" PackLocationProp="0000/0001,0000/0001" ScrollExtent="107,15" ShadowStyle="/ShadowStyles.Outline1" Size="107,15" TextAlignment="Center" TextAlignmentVertical="Center">GroupMember</Text>
Last edited by Landiin : 05-21-2006 at 03:35 PM.
|