#Paper Posted November 4, 2010 Share Posted November 4, 2010 why don't show the window? bindKey ("u", "down", setvis) function setvis () if ( guiGetVisible ( GUIEditor_Window[1] ) == true ) then guiSetVisible ( GUIEditor_Window[1], false ) showCursor ( false ) else guiSetVisible ( GUIEditor_Window[1], true ) showCursor ( true ) end end Link to comment
dzek (varez) Posted November 4, 2010 Share Posted November 4, 2010 any errors in debug script? are you sure GUIEditor_Window[1] is valid element? Link to comment
Deltanic Posted November 4, 2010 Share Posted November 4, 2010 Where did you placed "bindKey ("u", "down", setvis)"? If you place it just global, I suppose that was the problem. I Suggest you place that in onClientResourceStart. addEventHandler ( "onClientResourceStart", getThisResource ( ), function ( ) bindKey ("u", "down", setvis) end ) Link to comment
DiSaMe Posted November 4, 2010 Share Posted November 4, 2010 Placing bindKey where the function has already been created is enough. Link to comment
dzek (varez) Posted November 4, 2010 Share Posted November 4, 2010 oh right - just move your bind "under" function Link to comment
#Paper Posted November 4, 2010 Author Share Posted November 4, 2010 oh right - just move your bind "under" function don't work T_T Link to comment
Castillo Posted November 4, 2010 Share Posted November 4, 2010 post the code so we can check if you understand us. Link to comment
#Paper Posted November 4, 2010 Author Share Posted November 4, 2010 post the code so we can check if you understand us. nothing solved ty all! 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