Laith. Posted June 27, 2020 Share Posted June 27, 2020 ابي اسوي في لوحة التسجيل خلفية متحركة اتمنى تعطوني الطريقة انا عندي لوحة التسجيل بس بسوي عليها الخلفية المتحركة اتمنى تساعدوني ة تقولو لي الطريقة وشكرا لكم Link to comment
#\_oskar_/# Posted June 28, 2020 Share Posted June 28, 2020 وضح طلبك كيف خلفيه متحركه |؟ Link to comment
Laith. Posted June 30, 2020 Author Share Posted June 30, 2020 On 28/06/2020 at 23:50, #\_oskar_/# said: وضح طلبك كيف خلفيه متحركه |؟ مثلا باي صور كيف يعني صور يعني بحط مثلا احداثيات الصورة بحط مثلا 4 و يصير يتغير الصور بس كدا يعني يتغير في زمن معين الصورة ورا التالية اتمنى الرد السيرع وشكرا لك Link to comment
nxFairlywell Posted July 1, 2020 Share Posted July 1, 2020 guiCreateStaticImage setTimer guiStaticImageLoadImage Link to comment
Laith. Posted July 1, 2020 Author Share Posted July 1, 2020 21 minutes ago, VenomNX said: guiCreateStaticImage setTimer guiStaticImageLoadImage لا هنت تقدر تشرحلي الطريقة؟ Link to comment
Laith. Posted July 1, 2020 Author Share Posted July 1, 2020 1 minute ago, VenomNX said: وضح طلبك ما فهمت صح تقدر تقول لي كيف اسويهم يعني وين احطهم و كيف ارتبهم و هيك يعني Link to comment
nxFairlywell Posted July 1, 2020 Share Posted July 1, 2020 Just now, Laith. said: تقدر تقول لي كيف اسويهم يعني وين احطهم و كيف ارتبهم و هيك يعني انت وضح طلبك مافهمت انا وش تبي بالضبط يعني تبي تتغير الصوره مره وحده ولا تقعد تتغير كل شوي ولا ايش Link to comment
Laith. Posted July 1, 2020 Author Share Posted July 1, 2020 Just now, VenomNX said: انت وضح طلبك مافهمت انا وش تبي بالضبط يعني تبي تتغير الصوره مره وحده ولا تقعد تتغير كل شوي ولا ايش اه تقعد تتغير كل شوي Link to comment
nxFairlywell Posted July 1, 2020 Share Posted July 1, 2020 3 minutes ago, Laith. said: اه تقعد تتغير كل شوي path1 - path2 - path3 - path4 هي مسارات الصورة الجديده , تكتبها بين علامتين تنصيص "path1.png" - "path2.png" ...etc image1 -2-3-4 (StaticImage)هي متغيرات الصور اللي انت مسويها local Time = 10; -- الوقت بين التغييرات بالثواني function ChangeImage() guiStaticImageLoadImage(image1,path1); -- 1 guiStaticImageLoadImage(image2,path2); -- 2 guiStaticImageLoadImage(image3,path3); -- 3 guiStaticImageLoadImage(image4,path4); -- 4 -- image1 = StaticImage1 -- وكذلك مع بقية الصور -- path1 = مسار الصورة الاولى الجديد -- وكذلك مع البقية return true end setTimer(ChangeImages, Time*1000, 0) اذا تبي تغيير الصور عشوائي يعني عندك صور كثيره وتبي يختار عشوائي حط ذا الكود local Time = 40; -- الوقت بين التغييرات بالثواني local path = { "path.png", "path1.png", "path2.png", }; function ChangeImage() guiStaticImageLoadImage(image1,path[math.random(1,#path)]); -- 1 guiStaticImageLoadImage(image2,path[math.random(1,#path)]); -- 2 guiStaticImageLoadImage(image3,path[math.random(1,#path)]); -- 3 guiStaticImageLoadImage(image4,path[math.random(1,#path)]); -- 4 -- image1 = StaticImage1 -- وكذلك مع بقية الصور -- path[math.random(1,#path)] = مسار صورة عشوائي return true end setTimer(ChangeImages, Time*1000, 0) عاد انت لازم تعدل عليه وتضيف الاشياء الناقصه مثل متغيرات الصور ومسارات الصور في الجدول Link to comment
Laith. Posted July 1, 2020 Author Share Posted July 1, 2020 9 minutes ago, VenomNX said: path1 - path2 - path3 - path4 هي مسارات الصورة الجديده , تكتبها بين علامتين تنصيص "path1.png" - "path2.png" ...etc image1 -2-3-4 (StaticImage)هي متغيرات الصور اللي انت مسويها local Time = 10; -- الوقت بين التغييرات بالثواني function ChangeImage() guiStaticImageLoadImage(image1,path1); -- 1 guiStaticImageLoadImage(image2,path2); -- 2 guiStaticImageLoadImage(image3,path3); -- 3 guiStaticImageLoadImage(image4,path4); -- 4 -- image1 = StaticImage1 -- وكذلك مع بقية الصور -- path1 = مسار الصورة الاولى الجديد -- وكذلك مع البقية return true end setTimer(ChangeImages, Time*1000, 0) اذا تبي تغيير الصور عشوائي يعني عندك صور كثيره وتبي يختار عشوائي حط ذا الكود local Time = 40; -- الوقت بين التغييرات بالثواني local path = { "path.png", "path1.png", "path2.png", }; function ChangeImage() guiStaticImageLoadImage(image1,path[math.random(1,#path)]); -- 1 guiStaticImageLoadImage(image2,path[math.random(1,#path)]); -- 2 guiStaticImageLoadImage(image3,path[math.random(1,#path)]); -- 3 guiStaticImageLoadImage(image4,path[math.random(1,#path)]); -- 4 -- image1 = StaticImage1 -- وكذلك مع بقية الصور -- path[math.random(1,#path)] = مسار صورة عشوائي return true end setTimer(ChangeImages, Time*1000, 0) عاد انت لازم تعدل عليه وتضيف الاشياء الناقصه مثل متغيرات الصور ومسارات الصور في الجدول اول شي شكرا لك حب يعطيك العافية هذه الكلام احطه في المسار هذه؟ Account/login panel/clinet?? و تحت اخر سطر صح؟ 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