Multiple alignments in geyser label?

Post Reply
EulersIdentity
Posts: 27
Joined: Fri Jun 26, 2015 8:52 am

Multiple alignments in geyser label?

Post by EulersIdentity »

I'm concatenating a bunch of strings, then echoing to a label. I want part of each line on the left, part on the right. I've tried <font align='left/right'> as well as <left>/<right> and neither are working. What do I do?

Here's the kind of thing I'm attempting:
Code: [show] | [select all] lua
-- update ih window
function gui.ih_update()
	local cat = ""
	for i,v in ipairs(room_ih) do	
		cat = cat.."<font color='white' align='left'>"..v[1]..v[2].."</font><font color='Gainsboro' align='right'>"..v[3].."</font><br>"
	end
	gui.l_ih:echo(cat)
end

Post Reply