AboFaisal Posted June 7, 2013 Share Posted June 7, 2013 ابي شرح كيف أغير الحركه هي من اليسار إلى اليمين ابيها من تحت لفوق وتكون صغيره وبعدين تكبر وتكون سريعه وابي بعد كيف أخليها لمن أضغط زر .. isMove = false bindKey("u", "down", function() if isMove then return end if guiGetVisible( GUIEditor.window[1] ) then guiSetVisible(GUIEditor.window[1], false) showCursor(false) else guiSetPosition(GUIEditor.window[1], -580, 450, false) guiSetVisible(GUIEditor.window[1], true) showCursor(true) if isTimer(Time) then return end Time = setTimer(function() local x, y = guiGetPosition(GUIEditor.window[1], false) guiSetPosition(GUIEditor.window[1], x + 13, y, false) end, 50, 50) isWindowMove(true) setTimer(isWindowMove, 100, 1, false) end end ) function isWindowMove(bole) isMove = bole end وتسلمون Link to comment
#DRAGON!FIRE Posted June 7, 2013 Share Posted June 7, 2013 #~ guiSetPosition #~ هذا عشان تحط احداثياتها انت عندك الكود بس انت جيب المقاسات #~ خذ مقاسات الششاشة وعدله بذا الكود الموجود Link to comment
AboFaisal Posted June 7, 2013 Author Share Posted June 7, 2013 guiSetSize تصغير + تكبير طيب أشرح لي كيف أخليه أول مايضغط تكون صغيره وتتكبر بسرعه Link to comment
AhmeD~9MoD Posted June 7, 2013 Share Posted June 7, 2013 guiSetSize تصغير + تكبير طيب أشرح لي كيف أخليه أول مايضغط تكون صغيره وتتكبر بسرعه يضغط ع زر ؟ الحدث : onClientGUIClick الفنكشنات : guiSetSize السرعة اعتقد بالتايمر setTimer Link to comment
iPrestege Posted June 7, 2013 Share Posted June 7, 2013 addEventHandler('onClientGUIClick',MyButton, function ( ) setTimer( function ( ) local x,y = guiGetSize ( Window,false ) guiSetSize ( Window,x+3,y+3,false ) end,50,50 ) end,false ) الاستبدال : MyButton = الزر اللي بتضغطة عشان تكبر النافذهـ ~ والخ Window = النافذه اللي تبيها تكبر false > Size get or set > لو كانت نافذتكـ~ ريلاتف غيرها :] و بـس ~ Link to comment
AboFaisal Posted June 7, 2013 Author Share Posted June 7, 2013 addEventHandler('onClientGUIClick',MyButton, function ( ) setTimer( function ( ) local x,y = guiGetSize ( Window,false ) guiSetSize ( Window,x+3,y+3,false ) end,50,50 ) end,false ) الاستبدال : MyButton = الزر اللي بتضغطة عشان تكبر النافذهـ ~ والخ Window = النافذه اللي تبيها تكبر false > Size get or set > لو كانت نافذتكـ~ ريلاتف غيرها :] و بـس ~ مازبط الزر يعني زر عشان يفتح لوحه و النافذه هي اللوحه اللي تفتح من الزر ^ سويتها ولا صار شي Link to comment
iPrestege Posted June 7, 2013 Share Posted June 7, 2013 لازم تكون النافذه ظاهره و تضغط الزر و تبدا النافذه تكبر 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