View Single Post
  #1  
Unread 11-12-2007, 05:45 PM
FloridaFringe FloridaFringe is offline
A Griffon
 
Join Date: Sep 2005
Server: Lucan DLere
Posts: 459
Default Click-to-Cure Icons

Sorry if this has already been asked and answered but I'm trying to wrap up some changes to my group window prior to the release of RoK.

What I've been doing is to make minor modifications to an existing window in hopes of learning a bit along the way. The current problem that I'm having is with where the negative effect icons appear. I can get them to display properly when they aren't actively on a group member but once they actually show up they are out of place. Meaning that I have Arcane - Elemental - Noxious - Trauma but when someone has an effect on them they display as Trauma - Arcane - Noxious - Elemental (which won't allow the actual click-to-cure to work properly).

Any insight would be highly appreciated. Thank you kindly.

Here is the code that I have so far:


Code:
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.effect" Location="21,36" MouseOverColor="#FFFF00" Name="Effect1" PackLocation="left,top" PackLocationProp="0021/0001,0036/0001" ScrollExtent="14,14" Size="14,14" TreatAsButton="true"/>
<Page Location="21,36" Name="Arcane" OnHoverIn="Opacity=1.000" ScrollExtent="14,14" Size="14,14">
<Button BackgroundOpacity="0.000" LocalTooltip="Arcane" Name="Arcane" OnPress="useability Ardent Resolve ; useability Devoted Flagellant ; useability Catechize Arcana ; useability Retaliate Arcana ; useability Arcane Aid ; useability Cure Arcane ; target_previous" PackLocation="left,top" PackLocationProp="0000/0001,0000/0001" ScrollExtent="14,14" Size="14,14"></Button>
</Page>
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.effect" Location="46,36" MouseOverColor="#FFFF00" Name="Effect2" PackLocation="left,top" PackLocationProp="0046/0001,0036/0001" ScrollExtent="14,14" Size="14,14" TreatAsButton="true"/>
<Page Location="46,36" Name="Elemental" OnHoverIn="Opacity=1.000" ScrollExtent="14,14" Size="14,14">
<Button BackgroundOpacity="0.000" LocalTooltip="Elemental" Name="Elemental" OnPress="useability Verdant Whisper ; useability Lethal Abolishment ; useability Devoted Flagelland ; useability Expunge Elements ; useability Elemental Amending ; useability Elemental Aid ; useability Cure Elemental ; target_previous" PackLocation="left,top" PackLocationProp="0000/0001,0000/0001" ScrollExtent="14,14" Size="14,14"></Button>
</Page>
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.effect" Location="71,36" MouseOverColor="#FFFF00" Name="Effect3" PackLocation="left,top" PackLocationProp="0071/0001,0036/0001" ScrollExtent="14,14" Size="14,14" TreatAsButton="true"/>
<Page Location="71,36" Name="Noxious" OnHoverIn="Opacity=1.000" ScrollExtent="14,14" Size="14,14">
<Button BackgroundOpacity="0.000" LocalTooltip="Noxious" Name="Noxious" OnPress="useability Grasping Spirit ; useability Mail of Spirits ; useability Greater Restoration ; useability Cure Noxious ; target_previous" PackLocation="left,top" PackLocationProp="0000/0001,0000/0001" ScrollExtent="14,14" Size="14,14"></Button>
</Page>
<Icon BackgroundTint="#000000" IconStyle="/IconStyles.effect" Location="96,36" MouseOverColor="#FFFF00" Name="Effect4" PackLocation="left,top" PackLocationProp="0096/0001,0036/0001" ScrollExtent="14,14" Size="14,14" TreatAsButton="true"/>
<Page Location="96,36" Name="Trauma" OnHoverIn="Opacity=1.000" ScrollExtent="14,14" Size="14,14">
<Button BackgroundOpacity="0.000" LocalTooltip="Trauma" Name="Trauma" OnPress="useability Gasping Spirit ; useability Verdant Whisper ; useability Ardent Resolve ; useability Mending Spirit ; useability Mossy Balm ; useability Cure Trauma ; target_previous" PackLocation="left,top" PackLocationProp="0000/0001,0000/0001" ScrollExtent="14,14" Size="14,14"></Button>
</Page>
Reply With Quote