Mr.T9 Posted February 1, 2014 Share Posted February 1, 2014 يالغلا ابيه لما يظغط الزر وتفتح له النافذة ولما يخلص منها ويظغط اف 2 الي هو يقفل تنقفل النافذة الثانية الي تنفتح بالزر مع النافذة الاولى وابيه لما يفتح نافذة وكمان يفتح نافذة ثانية النافذة السابقة تنقفل والله لحست مخي طيب جرب هذا اللي فهمته منك GUIEditor = { window = {}, button = {} } GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) guiSetVisible ( GUIEditor.window[1], false ) guiSetAlpha(GUIEditor.window[1], 0.76) GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) GUIEditor.window[5] = guiCreateWindow(495, 206, 328, 265, "T", false) guiSetVisible ( GUIEditor.window[5], false ) bindKey ( "F2" , "down" , function () if guiGetVisible ( GUIEditor.window[1] , true ) then guiSetVisible ( GUIEditor.window[1] , false ) guiSetVisible ( GUIEditor.window[5] , false ) showCursor ( false ) outputChatBox ( "Closed" , 255 , 0 , 0 , true ) else guiSetVisible ( GUIEditor.window[1] , true ) showCursor ( true ) outputChatBox ( "Opened" , 0 , 255 , 0 , true ) end end ) addEventHandler( "onClientGUIClick", resourceRoot, function() if ( source == GUIEditor.button[1] ) then guiSetVisible ( GUIEditor.window[5],true) showCursor(true) end end) addEventHandler( "onClientGUIClick", resourceRoot, function() if ( source == GUIEditor.button[1] ) then guiSetVisible ( GUIEditor.window[5], false ) guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) end end) Link to comment
#Rmad~> Posted February 1, 2014 Author Share Posted February 1, 2014 هاذا شغال يالغالي بس مو هنا الي اقصده انا اقصد مثلا انا فتحت النافذة الرئيسية وظعطت الزر وفتحت لي نافذة فرعية حلو؟؟ وخلصت منها ابغاا اقفلها طبعا الزر الي يقفل النافذة الرئيسية اف 2 انا ابيه لما يظغط اف 2 تنغلق النافذة الفرعية مع النافذة الرئيسية وايضا ابيه لما يفتح نافذة فرعية اولى ويفتح نافذة فرعية ثانية اخرى ابي النافذة الفرعية الاولى تنقفل وتفتح له الثاني Link to comment
Mr.T9 Posted February 1, 2014 Share Posted February 1, 2014 هاذا شغال يالغالي بس مو هنا الي اقصده انا اقصد مثلا انا فتحت النافذة الرئيسية وظعطت الزر وفتحت لي نافذة فرعية حلو؟؟ وخلصت منها ابغاا اقفلها طبعا الزر الي يقفل النافذة الرئيسية اف 2 انا ابيه لما يظغط اف 2 تنغلق النافذة الفرعية مع النافذة الرئيسية وايضا ابيه لما يفتح نافذة فرعية اولى ويفتح نافذة فرعية ثانية اخرى ابي النافذة الفرعية الاولى تنقفل وتفتح له الثاني جرب GUIEditor = { window = {}, button = {} } GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) guiSetVisible ( GUIEditor.window[1], false ) guiSetAlpha(GUIEditor.window[1], 0.76) GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) GUIEditor.window[5] = guiCreateWindow(495, 206, 328, 265, "T", false) guiSetVisible ( GUIEditor.window[5], false ) bindKey ( "F2" , "down" , function () if guiGetVisible ( GUIEditor.window[1] , true ) then guiSetVisible ( GUIEditor.window[1] , false ) guiSetVisible ( GUIEditor.window[5] , false ) showCursor ( false ) outputChatBox ( "Closed" , 255 , 0 , 0 , true ) else guiSetVisible ( GUIEditor.window[1] , true ) showCursor ( true ) outputChatBox ( "Opened" , 0 , 255 , 0 , true ) end end ) addEventHandler( "onClientGUIClick", resourceRoot, function() if ( source == GUIEditor.button[1] ) then guiSetVisible ( GUIEditor.window[1],false) guiSetVisible ( GUIEditor.window[5],true) showCursor(true) end end) Link to comment
فاّرس Posted February 1, 2014 Share Posted February 1, 2014 guiGetVisible guiSetVisible Link to comment
#Rmad~> Posted February 1, 2014 Author Share Posted February 1, 2014 تماام مستر يعطيك العافية اما لطلب الثاني ذا بيست الي احتاجه هو guiGetVisible guiSetVisible ولا لاني مافهمت عليك Link to comment
shwaeki Posted February 1, 2014 Share Posted February 1, 2014 طلبك الاول التاني ما فهمتو GUIEditor = { window = {}, button = {} } GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) guiSetVisible ( GUIEditor.window[1], false ) guiSetAlpha(GUIEditor.window[1], 0.76) GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) GUIEditor.window[5] = guiCreateWindow(495, 206, 328, 265, "T", false) guiSetVisible ( GUIEditor.window[5], false ) bindKey ( "F2" , "down" , function () if guiGetVisible ( GUIEditor.window[1] , true ) then guiSetVisible ( GUIEditor.window[1] , false ) guiSetVisible ( GUIEditor.window[5] , false ) showCursor ( false ) outputChatBox ( "Closed" , 255 , 0 , 0 , true ) else guiSetVisible ( GUIEditor.window[1] , true ) guiSetVisible ( GUIEditor.window[5] , true ) showCursor ( true ) outputChatBox ( "Opened" , 0 , 255 , 0 , true ) end end ) addEventHandler( "onClientGUIClick", resourceRoot, function() if ( source == GUIEditor.button[1] ) then guiSetVisible ( GUIEditor.window[5],true) showCursor(true) end end) addEventHandler( "onClientGUIClick", resourceRoot, function() if ( source == GUIEditor.button[1] ) then guiSetVisible ( GUIEditor.window[5], false ) guiSetVisible ( GUIEditor.window[1], false ) showCursor(false) end end) Link to comment
فاّرس Posted February 1, 2014 Share Posted February 1, 2014 اقصد انك تتحقق اذا النافذه مفتوحه تغلقها , if guiGetVisible(window2) then guiSetVisible(window2,false) end Link to comment
#Rmad~> Posted February 1, 2014 Author Share Posted February 1, 2014 فيها غلط يالغلا بس خلاص تمام حقت مستر بس لسا ياخوان محد جاوبني اني ابيها تنغلق مع النافذة الرئيسيه Link to comment
Mr.T9 Posted February 1, 2014 Share Posted February 1, 2014 فيها غلط يالغلابس خلاص تمام حقت مستر بس لسا ياخوان محد جاوبني اني ابيها تنغلق مع النافذة الرئيسيه مستر تي9 ^ ض1 تبي تتغلق مع النافذه الرئيسيه لما وش يسوي يضغط زر ولا ضغط اف 2 ؟ Link to comment
#Rmad~> Posted February 1, 2014 Author Share Posted February 1, 2014 لما يظغط اف 2 يالغلا ومعليش حسيت اني بهدلتكم شباب *__* Link to comment
Mr.T9 Posted February 1, 2014 Share Posted February 1, 2014 لما يظغط اف 2 يالغلاومعليش حسيت اني بهدلتكم شباب *__* جرب GUIEditor = { window = {}, button = {} } GUIEditor.window[1] = guiCreateWindow(495, 206, 335, 363, "Test", false) guiSetVisible ( GUIEditor.window[1], false ) guiSetAlpha(GUIEditor.window[1], 0.76) GUIEditor.button[1] = guiCreateButton(872, 269, 329, 216, "open wind", false,GUIEditor.window[1]) GUIEditor.window[5] = guiCreateWindow(495, 206, 328, 265, "T", false) guiSetVisible ( GUIEditor.window[5], false ) Window = GUIEditor.window[1],GUIEditor.window[5] bindKey ( "F2" , "down" , function () if guiGetVisible ( Window , true ) then guiSetVisible ( GUIEditor.window[1] , false ) guiSetVisible ( GUIEditor.window[5] , false ) showCursor ( false ) outputChatBox ( "Closed" , 255 , 0 , 0 , true ) else guiSetVisible ( GUIEditor.window[1] , true ) showCursor ( true ) outputChatBox ( "Opened" , 0 , 255 , 0 , true ) end end ) addEventHandler( "onClientGUIClick", resourceRoot, function() if ( source == GUIEditor.button[1] ) then guiSetVisible ( GUIEditor.window[1],false) guiSetVisible ( GUIEditor.window[5],true) showCursor(true) end end) Link to comment
#Rmad~> Posted February 1, 2014 Author Share Posted February 1, 2014 الله يعطيك الف عافية ياذذيب فكيت ازمة وقسم ولايهونو الي معك تمت الافادة, Link to comment
Mr.T9 Posted February 1, 2014 Share Posted February 1, 2014 الله يعطيك الف عافية ياذذيبفكيت ازمة وقسم ولايهونو الي معك تمت الافادة, الله يعافيك Link to comment
#STZ Posted June 8, 2016 Share Posted June 8, 2016 اذا تبي زر داخل لوحة تظغط عليه يفتح لوحة اخري تفضل addEventHandler ( "onClientGUIClick", root, function () if source == الزر then guiSetVisible ( اللوحة الولي,false ) guiSetVisible ( اللوحة الثانية,true ) end end ) Link to comment
!#NssoR_) Posted June 8, 2016 Share Posted June 8, 2016 اذا تبي زر داخل لوحة تظغط عليه يفتح لوحة اخري تفضل addEventHandler ( "onClientGUIClick", root, function () if source == الزر then guiSetVisible ( اللوحة الولي,false ) guiSetVisible ( اللوحة الثانية,true ) end end ) ترا الموضوع من سنة 2014 -___- Link to comment
#STZ Posted June 8, 2016 Share Posted June 8, 2016 ما شفته اسااسا انا شفت اول صفحة قلت اساعد 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