iFoReX Posted June 10, 2012 Share Posted June 10, 2012 he cambiado variables ya varias veces pero me sigue el error :c, porque esto ? calGUI = {} E = {} B = {} calGUI[1] = guiCreateWindow(0.3211,0.3222,0.3375,0.2806,"GUI Calculadora",true) guiWindowSetSizable(cGUI,false) E.Numero[1] = guiCreateEdit(9,30,171,32,"",false,calGUI) E.Signo = guiCreateEdit(185,29,58,35,"",false,calGUI) guiEditSetReadOnly(E.Signo,true) E.Numero[2] = guiCreateEdit(250,30,171,32,"",false,calGUI) E.Resultado = guiCreateEdit(9,66,414,35,"",false,calGUI) guiEditSetReadOnly(E.Resultado,true) B = guiCreateButton(326,105,97,41,"Resultado",false,calGUI) B.S = guiCreateButton(9,109,58,36,"+",false,calGUI) B.R = guiCreateButton(70,109,58,36,"-",false,calGUI) B.M = guiCreateButton(70,148,58,36,"X",false,calGUI) B.D = guiCreateButton(9,147,58,36,"/",false,calGUI) guiSetVisible(calGUI,false) showCursor(false) bindKey("c","down", function() if getKeyState("lctrl") then guiSetVisible(calGUI, not guiGetVisible(calGUI)) showCursor(guiGetVisible(calGUI)) end end ) Link to comment
Edikosh998 Posted June 10, 2012 Share Posted June 10, 2012 B es una tabla y vos la asignaste como un boton..Tendrias que poner B.Res = guiCreateButton(326,105,97,41,"Resultado",false,calGUI) Link to comment
Recommended Posts