I made a kinda notepad that you can change the font properties, i finished coding that when you click save the application save the text on the input as a value and load it even if you closed the app, but i need to save the input props as a value , i tried several codes but didn't work idk how there it is
On Click (Button1)
On Preload
On Click (Button1)
Code:
-- save input props cac = Input.GetProperties("Input1") tProperties = Application.SaveValue("tProperties", "tProps", cac);
Code:
-- load input props props = Application.LoadValue("tProperties", "tProps"); if (Application.GetLastError() == 0) then Input.SetProperties("Input1", props) end
Comment