Hamada Gamer Posted August 14, 2018 Posted August 14, 2018 السلام عليكم يا شباب حد يشرحلي كيف اخلي اللوحه تفتح من كلمه في اف 8 مش بزر
Mr.Mostafa Posted August 14, 2018 Posted August 14, 2018 لو تبي آلفكشنآت آلي بتستخدمهآ هي : addCommandHandler -- آمر من آف 8 guiSetVisible -- آظهآر آللوحة showCrusor -- آظهآر آلمآوس لو آلكود كآمل كلنت بيكون كدآ addCommandHandler("openPanel",-- عمل كومآند بآف 8 function ( ) -- عمل وظيفة جديدة guiSetVisible(wnd, true)-- آظهآر آللوحة showCrusor(true)-- آظهآر آلمآوس end-- قفل آلوظيفة )-- قفل آلحدث 1
^iiEcoo'x_) Posted August 14, 2018 Posted August 14, 2018 22 minutes ago, Mr.Mostafa said: لو تبي آلفكشنآت آلي بتستخدمهآ هي : addCommandHandler -- آمر من آف 8 guiSetVisible -- آظهآر آللوحة showCrusor -- آظهآر آلمآوس لو آلكود كآمل كلنت بيكون كدآ addCommandHandler("openPanel",-- عمل كومآند بآف 8 function ( ) -- عمل وظيفة جديدة guiSetVisible(wnd, true)-- آظهآر آللوحة showCrusor(true)-- آظهآر آلمآوس end-- قفل آلوظيفة )-- قفل آلحدث showCursor 1
Hamada Gamer Posted August 14, 2018 Author Posted August 14, 2018 سؤال يا شباب هو ده احطه بدل كود اخفاء اللوحه و فتحه بزر Bind Key?
TOUNSI |, السعأدة Posted August 15, 2018 Posted August 15, 2018 local screenW, screenH = guiGetScreenSize() TOUNSI = guiCreateWindow(screenW - 390) / 2, (screenH - 441) / 2, 390, 441, "Test", false) -- ويندو اللوحة ~ تصميم اللوحة guiSetAlpha(TOUNSI, 1.00) guiSetVisible(TOUNSI,false) addCommandHandler("الكلمة", function() -- كود يفتح لوحة من اف8 guiSetVisible(TOUNSI,not guiGetVisible(TOUNSI)) showCursor(guiGetVisible(TOUNSI)) end ); bindKey( 'F7', 'down', function() --كود زر guiSetVisible(TOUNSI,not guiGetVisible(TOUNSI)) showCursor(guiGetVisible(TOUNSI)) end ); شرح اكثر بالتوفيق 1
Mr.HeRo Posted August 15, 2018 Posted August 15, 2018 addCommandHandler('الكلمة', function() if (guiGetVisible(اسم اللوحة) == true) then guiSetVisible(اسم اللوحة,false) showCursor(false) else guiSetVisible(اسم اللوحة,true) showCursor(true) end end ) 1
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