Jump to content

Recommended Posts

سو صورهـ بدال الزر

guiCreateStaticImage 

  
  
function Wnd() 
           
   guiSetVisible(Window, false) 
             
    showCursor(false) 
        
 end 
        
 addEventHandler("onClientGUIClick", Button , Wnd, false) 

^ كود يغلق نافذتكـ

Edited by Guest
Link to comment

تسوي الصورهـ

+

  
-------- 
--- client side 
-------- 
  
  
function onGuiClick (button, state, absoluteX, absoluteY) 
if ( source ==  اسم الصورهـ ) then  
guiSetVisible(اسم النافذهـ, not guiGetVisible(اسم النافذهـ)) 
showCursor(guiGetVisible(اسم النافذهـ)) 
 end 
end  
addEventHandler ("onClientGUIClick", getRootElement(), onGuiClick) 
  

Link to comment

ياشباب انا ابي اخلي الزر يتحرك

addEventHandler( "onClientMouseEnter", getRootElement(),  
    function() 
        if source == Button then  
            anim = Animation.createAndPlay( source, Animation.presets.guiPulse(1000) ) 
        end 
    end 
) 
  
addEventHandler("onClientMouseLeave", root,  
    function() 
        if source == Button then 
            anim:Pause() 
        end 
    end 
) 

جربت هاذا بس ظبط بس المشكله انه يخلي الزر كل ماضغطه يصغر

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...