#Paper Posted November 4, 2010 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
dzek (varez) Posted November 4, 2010 Posted November 4, 2010 any errors in debug script? are you sure GUIEditor_Window[1] is valid element?
botanist Posted November 4, 2010 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 )
DiSaMe Posted November 4, 2010 Posted November 4, 2010 Placing bindKey where the function has already been created is enough.
dzek (varez) Posted November 4, 2010 Posted November 4, 2010 oh right - just move your bind "under" function
#Paper Posted November 4, 2010 Author Posted November 4, 2010 oh right - just move your bind "under" function don't work T_T
Castillo Posted November 4, 2010 Posted November 4, 2010 post the code so we can check if you understand us.
#Paper Posted November 4, 2010 Author Posted November 4, 2010 post the code so we can check if you understand us. nothing solved ty all!
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