momar5700 Posted December 9, 2015 Share Posted December 9, 2015 (edited) addEventHandler ( "onClientMouseEnter", GUIEditor.staticimage[3], function ( ) guiSetAlpha(source, 1) end , false ) addEventHandler ( "onClientMouseLeave", GUIEditor.staticimage[3], function ( ) guiSetAlpha(source, 0.76) end , false ) addEventHandler ( "onClientMouseEnter", GUIEditor.staticimage[2], function ( ) guiSetAlpha(source, 1) end , false ) addEventHandler ( "onClientMouseLeave", GUIEditor.staticimage[2], function ( ) guiSetAlpha(source, 0.76) end , false ) addEventHandler ( "onClientMouseEnter", GUIEditor.staticimage[1], function ( ) guiSetAlpha(source, 1) end , false ) addEventHandler ( "onClientMouseLeave", GUIEditor.staticimage[1], function ( ) guiSetAlpha(source, 0.76) end , false ) addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == GUIEditor.staticimage[3] ) then guiSetVisible(window23,false) showCursor(false) end -- نهاية end -- .. ) -- اقفال الحدث addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == GUIEditor.staticimage[2] ) then guiSetVisible(window23,false) showCursor(false) end -- نهاية end -- .. ) -- اقفال الحدث addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == GUIEditor.staticimage[1] ) then guiSetVisible(window23,false) showCursor(false) end -- نهاية end -- .. ) -- اقفال الحدث ايش مشكلتها اضغط علي زر مايشتغل Edited December 11, 2015 by Guest Link to comment
Mr.Ronaldo Posted December 10, 2015 Share Posted December 10, 2015 guiSetAlpha(source, 1) Link to comment
Rockyz Posted December 11, 2015 Share Posted December 11, 2015 addEventHandler ( "onClientMouseEnter", root, function ( ) if (source == GUIEditor.staticimage[3]) then guiSetAlpha(source, 1) end end ) addEventHandler ( "onClientMouseLeave", root, function ( ) if (source == GUIEditor.staticimage[3]) then guiSetAlpha(source, 0.76) end end ) addEventHandler ( "onClientMouseEnter", GUIEditor.staticimage[2], function ( ) if (source == GUIEditor.staticimage[2]) then guiSetAlpha(source, 1) end end ) addEventHandler ( "onClientMouseLeave", root, function ( ) if (source == GUIEditor.staticimage[2]) then guiSetAlpha(source, 0.76) end end ) addEventHandler ( "onClientMouseEnter", root, function ( ) if (source == GUIEditor.staticimage[1]) then guiSetAlpha(source, 1) end end ) addEventHandler ( "onClientMouseLeave", root, function ( ) if (source == GUIEditor.staticimage[1]) then guiSetAlpha(source, 0.76) end end ) addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == GUIEditor.staticimage[3] ) then guiSetVisible(window23,false) showCursor(false) end -- نهاية end -- .. ) -- اقفال الحدث addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == GUIEditor.staticimage[2] ) then guiSetVisible(window23,false) showCursor(false) end -- نهاية end -- .. ) -- اقفال الحدث addEventHandler ( "onClientGUIClick", resourceRoot, function ( ) if ( source == GUIEditor.staticimage[1] ) then guiSetVisible(window23,false) showCursor(false) end -- نهاية end -- .. ) -- اقفال الحدث تقدر تسوي كذا Link to comment
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