sultan1420 Posted June 20, 2015 Share Posted June 20, 2015 الله لايهينكم ابي فانكشتات ابي زر button يحطله صور يعني عند اللمس بالماوس يتغير واذا ضغطت يتغير وشكران على كل من ساعدني مقدما Link to comment
Mr.R Posted June 20, 2015 Share Posted June 20, 2015 يعني اذا حط مؤشر الماوس على الزر يتغير لونه واذا وخر مؤشر الماوس عن الزر يتغير لونه ؟ Link to comment
sultan1420 Posted June 20, 2015 Author Share Posted June 20, 2015 ايوه ابي الفنكشتات وابي اسويها انا وانتم عدلوها Link to comment
Mr.R Posted June 20, 2015 Share Posted June 20, 2015 Events : -- الاحداث "onClientMouseEnter" -- حدث عندما يضع مؤشر الفأره على الزر "onClientMouseLeave" -- حدث عندما يبعد مؤشر الفأره عن الزر Functions -- الفنكشنات guiCreateButton -- نصنع زر guiSetProperty -- نضع له لون guieditor طبعاً سو الزر من مود Link to comment
sultan1420 Posted June 20, 2015 Author Share Posted June 20, 2015 يا الطيب انا قصدي احطله صوره اذا لمس الزر تجي صوره1 واذا بعد الزر تجي صوره2 واذا ضغط تجي صوره3 Link to comment
mouamle Posted June 20, 2015 Share Posted June 20, 2015 حاول -- Events onClientGUIClick onClientMouseEnter onClientMouseLeave -- functions Client side guiCreateStaticImage() guiSetAlpha() Link to comment
i S6O Posted June 20, 2015 Share Posted June 20, 2015 هذا سكربت نفس طلبك هنا شف الاكواد + جرب المود + غير مشفره + فيه اذا لمس الماوس الزر تتغير الصورة يمكن يفيدكك Link to comment
sultan1420 Posted June 22, 2015 Author Share Posted June 22, 2015 مشكورين بس انا ابي اتعليم يا الفائد الله يعطيك العافيه ويرزقك الجنه Link to comment
sultan1420 Posted June 22, 2015 Author Share Posted June 22, 2015 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
i S6O Posted June 22, 2015 Share Posted June 22, 2015 --سم مجرب وشغال -- بس عليك انك تحدد الصورة على احداثيات الزر -- يعني تسوي تقريبا كبر الزر بس صورة فهمت علي ؟؟ 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
TAPL Posted June 22, 2015 Share Posted June 22, 2015 guiCreateStaticImage صورة wnd على افتراض ان المتغير يفترض تستخدم الفنكشن ذا عشان تغير الصورة guiStaticImageLoadImage Link to comment
sultan1420 Posted June 22, 2015 Author Share Posted June 22, 2015 يعني اغيره بدا guiCreateStaticImage اولا Link to comment
sultan1420 Posted June 22, 2015 Author Share Posted June 22, 2015 يا القائد انت كذا تكون صوره وحده مو 3 صور ومشكور على الجهد والله يجعله في ميزان حسناتك Link to comment
sultan1420 Posted June 22, 2015 Author Share Posted June 22, 2015 يا شباب تكفون ساعدوني بس باقي الضغط Link to comment
iMr.Dawix~# Posted June 23, 2015 Share Posted June 23, 2015 يا شباب تكفون ساعدوني بس باقي الضغط آمر وش بغيت ؟ Link to comment
sultan1420 Posted June 23, 2015 Author Share Posted June 23, 2015 جعل مايمر عليك عدو بس انا ضبطت كل شيء بس باقي الصوره 3 اذا ضغط الزر Link to comment
Mr.R Posted June 23, 2015 Share Posted June 23, 2015 جعل مايمر عليك عدو بس انا ضبطت كل شيء بس باقي الصوره 3 اذا ضغط الزر طيب تبغيه اذا ضغط الزر حق الصوره 3 تطلع واذا ضغطت الزر مره ثانيه تختفي ؟ ولا يغير الصوره ؟ وعلى فكره الصور ماتطلع الا اذا ضفتها في الميتا وملف المود Link to comment
sultan1420 Posted June 27, 2015 Author Share Posted June 27, 2015 اسمع انا حاط 3 صور بس انا سويت كود "onClientMouseEnter" "onClientMouseLeave" بس باقي اذا ضغط Link to comment
Professional Posted June 27, 2015 Share Posted June 27, 2015 Element ?? bool guiStaticImageLoadImage ( element theElement, string filename ) Link to comment
</Mr.Tn6eL> Posted June 27, 2015 Share Posted June 27, 2015 Element ?? bool guiStaticImageLoadImage ( element theElement, string filename ) guiيب ال يعتبر من الالمنت او بالعربي العناصر 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