Page 1 of 1

Multiple alignments in geyser label?

Posted: Fri Aug 12, 2016 12:13 am
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