View Single Post
  #1  
Unread 11-03-2008, 10:01 PM
Draakthor's Avatar
Draakthor Draakthor is offline
A Crazed Gnoll
Interface Author - Click to view interfaces
 
Join Date: Mar 2005
Server: Permafrost
Posts: 22
Default Randomly missing tooltips

I added text objects to the experience bar to show attack, avoidance, and mitigation but their tooltips are not appearing. Oddly enough, texts that I copy/pasted from these three to create runspeed and haste labels DO have tooltips. Is there any common mistake I might be making that'll cause dynamic tooltips to not show? As far as I can tell, there's nothing else obstructing them, the tooltips just aren't there. I can post the entire file if needed.

Here's the code for one of the broken texts:
Code:
<Text DynamicData="/GameData.Stats.Defense_Avoidance" 
Font="/Fonts.FontZapf15" 
LocalText="10000" 
Location="126,39" 
MaxLines="1" 
Name="AVDValue" 
ScrollExtent="38,17" 
ShadowStyle="/ShadowStyles.Outline1" 
Size="38,17" 
TruncateElipsis="false">10000</Text>
And for a working text:
Code:
<Text DynamicData="/GameData.Stats.Run_Speed" 
Font="/Fonts.FontZapf15" 
LocalText="100%" 
Location="92,73" 
MaxLines="1" 
Name="RunValue" 
ScrollExtent="38,17" 
ShadowStyle="/ShadowStyles.Outline1" 
Size="38,17" 
TruncateElipsis="false">100%</Text>
Reply With Quote