Jump to content

ممكن مساعده


Recommended Posts

  
  
button = guiCreateButton(124, 221, 93, 34, "تسجيل", false, GUIEditor.window[4]) 
guiSetAlpha(0.50) 
  
addEventHandler ("onClientGUIClick", getRootElement(), 
function() 
if ( source == button ) then 
guiCreateStaticImage(wnd,"1.png") 
end 
) 
  
  
addEventHandler ("onClientMouseEnter", getRootElement(), 
function() 
if ( source == button ) then 
guiCreateStaticImage(wnd,"2.png") 
end 
) 
  
  
addEventHandler ("onClientMouseLeave", getRootElement(), 
function() 
if ( source == button ) then 
guiCreateStaticImage(wnd,"3.png") 
end 
) 

كذا صح

او لا

Link to comment

--سم مجرب وشغال 
-- بس عليك انك تحدد الصورة على احداثيات الزر 
-- يعني تسوي تقريبا كبر الزر بس صورة فهمت علي ؟؟ 
  
GUI = { 
    button = {}, 
    staticimage = {}, 
} 
  
GUI.button[1] = guiCreateButton(39, 44, 162, 33, "مثال", false, GUI.window[1]) 
GUI.staticimage[1] = guiCreateStaticImage(459, 343, 73, 26, "NameOfPng.png", false) -- هنا نسوي صورة 
  
guiSetVisible ( GUI.staticimage[1],false ) -- نخفي الصورة عشان ماتطلع على طول 
  
function enterleavecursor ( ) 
    if source == GUI.button[1] then -- اذا لمس الزر 
        guiSetVisible ( GUI.staticimage[1],true ) -- نظهر الصورة 
    else 
        guiSetVisible ( GUI.staticimage[1],false ) -- اذا راح عن الزر نخفي الصورة 
    end -- انهاء if 
end -- انهاء فنكشن 
  
addEventHandler ( 'onClientMouseEnter', root, enterleavecursor ) -- اذا لمس الزر 
addEventHandler ( 'onClientMouseLeave', root, enterleavecursor ) -- اذا ابعد عن الزر 
Link to comment
جعل مايمر عليك عدو بس انا ضبطت كل شيء بس باقي الصوره 3 اذا ضغط الزر

طيب تبغيه اذا ضغط الزر حق الصوره 3 تطلع واذا ضغطت الزر مره ثانيه تختفي ؟ ولا يغير الصوره ؟

وعلى فكره الصور ماتطلع الا اذا ضفتها في الميتا وملف المود

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