Okay, a recreation of the problem, make an object named "Input1",
make it multiline and paste the next code in the On Show event of
the page.
Code:local function cp(s,v) local p = Input.GetProperties("Input1"); for i, nv in p do if(tostring(i)==tostring(s))then p[i]=v; end end Input.SetProperties("Input1", p); end Input1 = Object:Create("Input1"); cp("FontColor", Val("FFFFFF")); cp("BackgroundColor", 0); cp("X", 10); cp("Y", 10); cp("Width", Input1:GetSize().Width-20); cp("Height", Input1:GetSize().Height-20); Input1:SetAppendDelimiter("\r\n"); Input1:SetText("What the ****!"); Input1:Append("is wrong,"); Input1:Append("with me!"); Input1:Append(""); Input1:Append("http://test.com/backslash_not_behind_this_but_first_character/");
This is what I see: (See attached)
Oh, and change **** to h.e.l.l without dots in above code
I even tested other ways, like modifying each key seperately by statements like
but it still failed... what the, did I find an unfindable bug or is it me?Code:if(tostring(i)=="FontColor")then p.FontColor = v; end
Not happening here.




Reply With Quote
