View Single Post
  #12  
Unread 12-01-2010, 10:27 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
LOL, ok. I had to make sure.

Here is what I did. I copied all your code into my own files here. I then tried to run it and it failed. I changed:
Code:
self:MouseEnter = function( sender, args )
sender:SetOpacity( 1.0 );
end

self:MouseLeave = function( sender, args )
sender:SetOpacity( 0.0 );
end
to


Code:
self.MouseEnter = function( sender, args )
sender:SetOpacity( 1.0 );
end

self.MouseLeave = function( sender, args )
sender:SetOpacity( 0.0 );
end
And the plugin works.

I think you will also have to do what DU mentioned earlier, but for now they are not a problem.
Reply With Quote