MatXpl Posted December 27, 2010 Posted December 27, 2010 Hi ! I would like to get info from gui edit, and this text ( from gui edit ) output to other gui, how can i make it ? MTA:SA scripts/gamemodes/misc: http://www.mtasa.xn.pl
MexUK Posted December 27, 2010 Posted December 27, 2010 Not sure if this will work, but you could try something like: local EditBox1 = guiCreateEdit(0, 0, 0.2, 0.2, "text here 1", true) local EditBox2 = guiCreateEdit(0.3, 0.3, 0.2, 0.2, "text here 2", true) local EditBox1Text = guiGetText(EditBox1) guiSetText(EditBox2, EditBox1Text) https://wiki.multitheftauto.com/wiki/GuiGetText https://wiki.multitheftauto.com/wiki/GuiSetText
MatXpl Posted December 28, 2010 Author Posted December 28, 2010 this work, thanks MTA:SA scripts/gamemodes/misc: http://www.mtasa.xn.pl
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now