Normal
[USER=99368]vrm[/USER],By the way, did you ever set up your two icons on the home page? I was thinking about this the other night, and it would be very simple to impliment. You would need two image controls. The first would be the path to the READ image, which would only be visible if the UNREAD image is not visible.Like this...[CODE] <control> <description>Read Email</description> <type>image</type> <id>0</id> <posX>1140</posX> <posY>15</posY> <width>30</width> <height>30</height> <texture>Read_Image_File.png</texture> <visible>!Control.IsVisible(70)</visible> </control> <control> <description>New Email</description> <type>image</type> <id>70</id> <posX>1140</posX> <posY>15</posY> <width>30</width> <height>30</height> <texture>#new_mail</texture> </control>[/CODE]So when the New Email image goes visible, the Read Email image will hide. And vise-versa when you read the new messages...
[USER=99368]vrm[/USER],
By the way, did you ever set up your two icons on the home page? I was thinking about this the other night, and it would be very simple to impliment. You would need two image controls. The first would be the path to the READ image, which would only be visible if the UNREAD image is not visible.Like this...
[CODE]
<control>
<description>Read Email</description>
<type>image</type>
<id>0</id>
<posX>1140</posX>
<posY>15</posY>
<width>30</width>
<height>30</height>
<texture>Read_Image_File.png</texture>
<visible>!Control.IsVisible(70)</visible>
</control>
<description>New Email</description>
<id>70</id>
<texture>#new_mail</texture>
[/CODE]
So when the New Email image goes visible, the Read Email image will hide. And vise-versa when you read the new messages...