View Single Post
  #8  
Unread 12-01-2010, 09:43 PM
D.H1cks's Avatar
D.H1cks D.H1cks is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Apr 2007
Posts: 162
Ah, try changing them to self.MouseEnter = function(sender,args) and self.MouseLeave = function(sender,args) ?

This is what I have in my plugin:
Code:
	self.MouseEnter = function(sender, args)
		self:SetBackColor(self.bgColor);
	end

	self.MouseLeave = function(sender, args)
		self:SetBackColor(Turbine.UI.Color(0,0,0,0));
	end

Last edited by D.H1cks : 12-01-2010 at 09:46 PM.
Reply With Quote