jafar Posted January 25, 2013 Share Posted January 25, 2013 ممكن كود تحريك نافذه من الزاوية اليمين الى الوسط Link to comment
==>ҭᾄlᾄl Posted January 25, 2013 Share Posted January 25, 2013 https://wiki.multitheftauto.com/wiki/InterpolateBetween Link to comment
hassan.k.s.a Posted January 25, 2013 Share Posted January 25, 2013 https://wiki.multitheftauto.com/wiki/InterpolateBetween هذا صعب عليه -- جرب ذا يمكن ينفع local v,y = guiGetPosition(guiElement,true) local v = 400 local y = 100 Label = guiCreateLabel(v,y,500,100,"Test",false) Move = setTimer(function() guiSetPosition(Label,v,y,false) y = y +50 end,1000,0) setTimer(function() if isTimer(Move) then killTimer(Move) end end,3000,1) او local v,y = guiGetPosition(guiElement,true) local v = 400 local y = 100 Label = guiCreateLabel(v,y,500,100,"Test",false) function Move() guiSetPosition(Label,v,y,false) y = y +1 end addEventHandler("onClientRender",getRootElement(),Move) setTimer(function() removeEventHandler("onClientRender",getRootElement(),Move) end,3000,1) هذا من اليسار لليمين وهو ينزل جرب local v,y = guiGetPosition(guiElement,true) local v = 400 local y = 100 Label = guiCreateLabel(v,y,100,100,"Test",false) function Move() guiSetPosition(Label,v,y,false) y = y +1 v = v +1 end addEventHandler("onClientRender",getRootElement(),Move) setTimer(function() removeEventHandler("onClientRender",getRootElement(),Move) end,4000,1) وهذا من اليمين لليسار وهو ينزل بأمكأنك تخليه من اليمين للوسط عدل ألأحداثيات جرب local v,y = guiGetPosition(guiElement,true) local v = 400 local y = 100 Label = guiCreateLabel(v,y,100,100,"Test",false) function Move() guiSetPosition(Label,v,y,false) y = y +1 v = v -1 end addEventHandler("onClientRender",getRootElement(),Move) setTimer(function() removeEventHandler("onClientRender",getRootElement(),Move) end,4000,1) Link to comment
PaiN^ Posted March 17, 2013 Share Posted March 17, 2013 الليبل فقط كمثال, يمديك تستخدمه عالنوافذ كمان Link to comment
hassan.k.s.a Posted March 17, 2013 Share Posted March 17, 2013 آممم وش دخل الليبل ؟ العقل نعمه Link to comment
iMr.TZ[W]ER Posted July 11, 2014 Share Posted July 11, 2014 آممم وش دخل الليبل ؟ العقل نعمه طيب مثلا لو ابي النافذة تتحرك اول بعدين الليبلات بعدين الازرار شلون ؟ وهل لازم لكل المنت كود ؟ Link to comment
iMr.TZ[W]ER Posted July 11, 2014 Share Posted July 11, 2014 الموضوع له سنة ادري ان له سنة بس ابي اعرف ياخي بعدين انا رسلت لك رسالة بالخاص شوفها اذا ما عليك امر 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