View Single Post
  #1  
Unread 06-04-2023, 12:40 AM
WildCard WildCard is offline
The Wary
Interface Author - Click to view interfaces
 
Join Date: Aug 2022
Posts: 3
SetMarkupEnabled and Label Font

So I'm working on a plugin to make custom chat windows. There are two labels with SetMarkupEnabled(true).

Code:
--Not altering incoming message, only adding color
AppendText("<rgb=" .. channelChatColor .. ">" .. msg .. "</rgb>")

--Removing custom tags (character names, item links, etc)
msg = msg:gsub("%b<>", "");
AppendText("<rgb=" .. channelChatColor .. ">" .. msg .. "</rgb>")
But there seems to be no way to specify the font when LOTRO generates the clickable elements from the custom tags.

Has anyone else encountered this?
Am I just missing something?

Reply With Quote