Jump to content

برمجه


Recommended Posts

لو تبي آلفكشنآت آلي بتستخدمهآ هي :

addCommandHandler -- آمر من آف 8
guiSetVisible -- آظهآر آللوحة
showCrusor -- آظهآر آلمآوس

لو آلكود كآمل كلنت بيكون كدآ

addCommandHandler("openPanel",-- عمل كومآند بآف 8
  function ( ) -- عمل وظيفة جديدة
    guiSetVisible(wnd, true)-- آظهآر آللوحة
    	showCrusor(true)-- آظهآر آلمآوس
  end-- قفل آلوظيفة
 )-- قفل آلحدث

 

  • Thanks 1
Link to comment
22 minutes ago, Mr.Mostafa said:

لو تبي آلفكشنآت آلي بتستخدمهآ هي :


addCommandHandler -- آمر من آف 8
guiSetVisible -- آظهآر آللوحة
showCrusor -- آظهآر آلمآوس

لو آلكود كآمل كلنت بيكون كدآ


addCommandHandler("openPanel",-- عمل كومآند بآف 8
  function ( ) -- عمل وظيفة جديدة
    guiSetVisible(wnd, true)-- آظهآر آللوحة
    	showCrusor(true)-- آظهآر آلمآوس
  end-- قفل آلوظيفة
 )-- قفل آلحدث

 

showCursor

  • Like 1
Link to comment
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 );

شرح اكثر 
بالتوفيق

  • Thanks 1
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...