MatXpl Posted December 27, 2010 Share 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 ? Link to comment
MexUK Posted December 27, 2010 Share 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 Link to comment
MatXpl Posted December 28, 2010 Author Share Posted December 28, 2010 this work, thanks Link to comment
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