Jump to content

طلب طريقة آخلي الزر بملف ثاني


i,xAhmed

Recommended Posts

سوي مثلا كذا

bindKey(TheKey,'down', 

وبالملف

TheKey = 'F2'

مآفهمتك TheKey

بالميتتا

ولآ آلكلنت

ذا الزر

bindKey ( "F9" , "down" , function() 
if ( guiGetVisible (Wnd) == true) then 
guiSetVisible (Wnd, false) 
showCursor (false ) 
guiSetInputEnabled(false) 
elseif (guiSetVisible (Wnd) == false) then 
guiSetVisible (Wnd, true) 
showCursor (false ) 
guiSetInputEnabled(true) 
end 
end) 

لو فيه طريقة آخلي الزر بالميتا آحسن

Link to comment
سوي مثلا كذا

bindKey(TheKey,'down', 

وبالملف

TheKey = 'F2'

مآفهمتك TheKey

بالميتتا

ولآ آلكلنت

ذا الزر

bindKey ( "F9" , "down" , function() 
if ( guiGetVisible (Wnd) == true) then 
guiSetVisible (Wnd, false) 
showCursor (false ) 
guiSetInputEnabled(false) 
elseif (guiSetVisible (Wnd) == false) then 
guiSetVisible (Wnd, true) 
showCursor (false ) 
guiSetInputEnabled(true) 
end 
end) 

لو فيه طريقة آخلي الزر بالميتا آحسن

# سوي , get

# واضيف الستنج بـ الميتا , وتقدر تعدل عليها من السيرفر من لوحة الأادمنية من السستنج حق المود ذذ

Link to comment
خلي الكود كذا,

bindKey ( Key , 'down' , function() 
    guiSetVisible(Wnd,not guiGetVisible(Wnd)) 
    showCursor(not isCursorShowing()) 
    guiSetInputEnabled(not guiGetInputEnabled()) 
    end 
) 

وسوي ملف كلنت جديد وحط فيه

Key = 'F9'

مآضبطط

سويت الكود بملف الكلنت

واذا تبي الكود كآمل

خذ

-- Client.lua 
GUIEditor_Tab = {} 
  
GUIEditor_Label = {} 
  
GUIEditor_Edit = {} 
  
GUIEditor_Image = {} 
--------- 
-- صنع النافذة 
--------- 
Wnd = guiCreateWindow(159,186,546,334,"مود آلكمبيوتر المركزي",false) 
  
guiSetVisible(Wnd, false) 
  
guiWindowSetMovable(Wnd,false) 
  
guiWindowSetSizable(Wnd,false) 
  
Tap1 = guiCreateTabPanel(9,21,528,304,false,Wnd) 
  
Tab2 = guiCreateTab("قوآنين السيرفر",Tap1) 
  
GUIEditor_Label[1] = guiCreateLabel(5,259,122,17,"CreaTeD By Ahmed<3",false,Tab2) 
  
guiLabelSetColor(GUIEditor_Label[1],211,32,1) 
  
GUIEditor_Label[2] = guiCreateLabel(398,259,122,17,"آغلآق النافذة ( F9 )",false,Tab2) 
  
guiLabelSetColor(GUIEditor_Label[2],211,32,1) 
  
GUIEditor_Image[1] = guiCreateStaticImage(1,2,524,246,"Qserver.png",false,Tab2) 
  
Tab3 = guiCreateTab("قوآنين الشات",Tap1) 
  
GUIEditor_Image[2] = guiCreateStaticImage(1,2,524,246,"Qchat.png",false,Tab3) 
  
GUIEditor_Label[3] = guiCreateLabel(5,259,122,17,"CreaTeD By Ahmed<3",false,Tab3) 
  
guiLabelSetColor(GUIEditor_Label[3],211,32,1) 
  
GUIEditor_Label[4] = guiCreateLabel(398,259,122,17,"آغلآق النافذة ( F9 )",false,Tab3) 
--------- 
-- فتح النافذة 
--------- 
    bindKey ( Key , 'down' , function() 
        guiSetVisible(Wnd,not guiGetVisible(Wnd)) 
        showCursor(not isCursorShowing()) 
        guiSetInputEnabled(not guiGetInputEnabled()) 
        end 
    ) 
  

----

-- Key.lua 
Key = 'F9' 

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...