tourra Posted March 13, 2013 Share Posted March 13, 2013 سلام شباب معي مشكلة في كود bind key انا مسوي 5 نافذات و ابي لما تضغط على الزر يفتح بس النافذة الرئيسية ؟؟ ممافهت كيف اعدلها يعني انا عملت مود نافذة رئيسية و نافذة اخرى لما تضغط على الزر تروح ذيك ذا كودي function kbcha() if guiGetVisible(wnd1) == false then guiSetVisible((wnd1,true) showCursor(true) else guiSetVisible((wnd1,false) guiSetVisible((wnd2,false) showCursor(false) end end bindKey("F3", "down", kbcha) ابي شرح كيف اعمل ما يفح اكثر من نافذة و شكرا Link to comment
[S.R]==|>K$hK$h Posted March 13, 2013 Share Posted March 13, 2013 الحين انت مسوي 5 نوافذ اذا كبست زر تنفتح كلها ؟ ولا مسوي اذا كبست زر تنفتح لك نافذه ؟؟؟ Link to comment
tourra Posted March 13, 2013 Author Share Posted March 13, 2013 لا انا مسوي خمسة و ابي يفتح الا وحدة و الاخرى موب مفتحون بس انا مسوي ازرار لفتحها هيك فهمتني .؟؟ Link to comment
TD[M]ER Posted March 13, 2013 Share Posted March 13, 2013 لا انا مسوي خمسة و ابي يفتح الا وحدة و الاخرى موب مفتحون بس انا مسوي ازرار لفتحها هيك فهمتني .؟؟ -- client function showWnd() guiSetVisible(اسم النافذه, not guiGetVisible(اسم النافذه)) showCursor(guiGetVisible(اسم النافذه)) end bindKey ("F3", "down", showWnd) Link to comment
|Mr|-Talal07-| Posted March 13, 2013 Share Posted March 13, 2013 جرب ذاا bindKey("F2","down", function () if guiGetVisible(wnd1) then guiSetVisible(wnd1,false) guiSetVisible(wnd2,false) showCursor(false) else guiSetVisible(wnd1,true) showCursor(true) end end ) -- wnd1 = النافذه الرئيسيه -- wnd2 = النافذه الثانيه Link to comment
tourra Posted March 13, 2013 Author Share Posted March 13, 2013 (شكرا لك اخوي طلال تم حل المشكلة .) Link to comment
|Mr|-Talal07-| Posted March 13, 2013 Share Posted March 13, 2013 (شكرا لك اخوي طلالتم حل المشكلة .) العفوو 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