TD[M]ER Posted December 5, 2012 Share Posted December 5, 2012 السلام عليكم كيف اعدل كود الخلفيه ذا newFont = guiCreateFont ( "customfont.ttf", 20 ) function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end هذا الكود يسوي لـ كل اللوحات الموجودهـ فـ ملف المود يسوي لها خلفيهه اللي اسمها background.png لو ابي اسوي خليفيه لـ لوحة وحدهـ بسُ مو اللوحات كلها كيف ؟ Link to comment
Blaawee Posted December 5, 2012 Share Posted December 5, 2012 مم رآح تقدر .. لانه مسسوي فآنكشن على انهآ نأفذه =) guiCreateWindow لازم تسوي كل نآفذه لححآل Link to comment
TD[M]ER Posted December 5, 2012 Author Share Posted December 5, 2012 مم رآح تقدر ..لانه مسسوي فآنكشن على انهآ نأفذه =) guiCreateWindow لازم تسوي كل نآفذه لححآل طيب ما اقدر اغير الكود اخليهه على اسم نافذهـ يعني احط اسم النافذهـ اللي ابي احطط لهها خلفيهه ؟ Link to comment
Blaawee Posted December 5, 2012 Share Posted December 5, 2012 لا .. انا قآيلكك انه مسوي فآنكشن محليه function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) يعني رآح تستبدل كل النوآفذ اللي في روت الريسورس الى هآذي الفآنكشن ان شآءالله مفهوم =) Link to comment
TD[M]ER Posted December 5, 2012 Author Share Posted December 5, 2012 لا ..انا قآيلكك انه مسوي فآنكشن محليه function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) يعني رآح تستبدل كل النوآفذ اللي في روت الريسورس الى هآذي الفآنكشن ان شآءالله مفهوم =) اوكك ولكن كيف مثلا جراند العرب اف 1 حقهمم اللوحة الاساسيةة لها خلفيهه واللوحات الثانيةة بدون خلفيه وكلهم فـ ملف واحد :] يعني انا ما اقدر افصلهمم واحطهم فـ مودين لاني ابي استعمل if (source == GUIEditor_Button[1]) then guiSetVisible(window1,true) مشكور على ايةة حال Link to comment
MR.S3D Posted December 6, 2012 Share Posted December 6, 2012 السلام عليكم كيف اعدل كود الخلفيه ذا newFont = guiCreateFont ( "customfont.ttf", 20 ) function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end هذا الكود يسوي لـ كل اللوحات الموجودهـ فـ ملف المود يسوي لها خلفيهه اللي اسمها background.png لو ابي اسوي خليفيه لـ لوحة وحدهـ بسُ مو اللوحات كلها كيف ؟ أخوي تدمير الحل سهل غير اسم الوظيفه وكود النافذه حقتك مثال newFont = guiCreateFont ( "customfont.ttf", 20 ) function TDMER( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground الوظيفه --function TDMER --- --النافذة-بدل كود النافذة اسم الوظيفة mywindow = TDMER(218,89,365,434,"| By T[D]MER ",false) Link to comment
abu5lf Posted December 6, 2012 Share Posted December 6, 2012 function guiCreateWindow( fX, fY, fW, fH, sP, sT, bR ) local ImageWindow = guiCreateStaticImage( fX, fY, fW, fH, sP, bR ) local LabelWindow = guiCreateLabel( 50, 0, 400, 100, sT, false, ImageWindow ) guiSetFont( LabelWindow, guiCreateFont( 'customfont.ttf', 20 ) ) guiLabelSetColor( LabelWindow, math.random( 255 ), math.random( 255 ), math.random( 255 ) ) guiSetEnabled( LabelWindow, false ) return ImageWindow end e.g: guiCreateWindow( 20, 200, 100, 100, ' filepath.png', ' text', false ) Link to comment
MR.S3D Posted December 6, 2012 Share Posted December 6, 2012 function guiCreateWindow( fX, fY, fW, fH, sP, sT, bR ) local ImageWindow = guiCreateStaticImage( fX, fY, fW, fH, sP, bR ) local LabelWindow = guiCreateLabel( 50, 0, 400, 100, sT, false, ImageWindow ) guiSetFont( LabelWindow, guiCreateFont( 'customfont.ttf', 20 ) ) guiLabelSetColor( LabelWindow, math.random( 255 ), math.random( 255 ), math.random( 255 ) ) guiSetEnabled( LabelWindow, false ) return ImageWindow end e.g: guiCreateWindow( 20, 200, 100, 100, ' filepath.png', ' text', false ) وش جبت يعني شي جديد Link to comment
==>ҭᾄlᾄl Posted December 6, 2012 Share Posted December 6, 2012 function guiCreateWindow( fX, fY, fW, fH, sP, sT, bR ) local ImageWindow = guiCreateStaticImage( fX, fY, fW, fH, sP, bR ) local LabelWindow = guiCreateLabel( 50, 0, 400, 100, sT, false, ImageWindow ) guiSetFont( LabelWindow, guiCreateFont( 'customfont.ttf', 20 ) ) guiLabelSetColor( LabelWindow, math.random( 255 ), math.random( 255 ), math.random( 255 ) ) guiSetEnabled( LabelWindow, false ) return ImageWindow end e.g: guiCreateWindow( 20, 200, 100, 100, ' filepath.png', ' text', false ) وش جبت يعني شي جديد ايه جاب شي جديد تحدد الصوره لكل نافذه Link to comment
TD[M]ER Posted December 6, 2012 Author Share Posted December 6, 2012 يعطيكم الف الف عافيهه ماقصرتم لكن بالنسبه لـ كود سعد انت قصدك اسمي النافذهـ TDMER ولو ابي اغير اسم النافذهـ‘ اغير اسم الوظيفهه صح؟ Link to comment
hassan.k.s.a Posted December 6, 2012 Share Posted December 6, 2012 يعطيكم الف الف عافيهه ماقصرتم لكن بالنسبه لـ كود سعد انت قصدك اسمي النافذهـ TDMER ولو ابي اغير اسم النافذهـ‘ اغير اسم الوظيفهه صح؟ مو اسم النافذه الي ورا علامة يسآوي newFont = guiCreateFont ( "customfont.ttf", 20 ) function TDMER--ذي اسم الوضيفه ( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground mywindow = guiCreateWindow(218,89,365,434,"| By T[D]MER ",false) --guiCreateWindow شيل --وبدلها بأسم الوضيفه حقت الصوره mywindow = TDMER(218,89,365,434,"| By T[D]MER ",false) --مثال على نافذه ثانيه في نفس المود newFont = guiCreateFont ( "customfont.ttf", 20 ) function XX( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground window = XX(218,89,365,434,"| By T[D]MER ",false) Link to comment
TD[M]ER Posted December 6, 2012 Author Share Posted December 6, 2012 يسلمو والله ي حسن ماقصرت يالغلا :] يعني كذا صح newFont = guiCreateFont ( "customfont.ttf", 20 ) function TDMER( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground wndMain = TDMER(329, 177, 285, 329, "", false) ؟ يعطيكم الف عافيه <3 Link to comment
MR.S3D Posted December 6, 2012 Share Posted December 6, 2012 يسلمو والله ي حسن ماقصرت يالغلا :]يعني كذا صح newFont = guiCreateFont ( "customfont.ttf", 20 ) function TDMER( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground wndMain = TDMER(329, 177, 285, 329, "", false) ؟ يعطيكم الف عافيه <3 newFont = guiCreateFont ( "customfont.ttf", 20 ) function TDMER( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end wndMain = TDMER(329, 177, 285, 329, "", false) Link to comment
TD[M]ER Posted December 6, 2012 Author Share Posted December 6, 2012 يسلمو والله ي حسن ماقصرت يالغلا :]يعني كذا صح newFont = guiCreateFont ( "customfont.ttf", 20 ) function TDMER( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground wndMain = TDMER(329, 177, 285, 329, "", false) ؟ يعطيكم الف عافيه <3 newFont = guiCreateFont ( "customfont.ttf", 20 ) function TDMER( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, "background.png", relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end wndMain = TDMER(329, 177, 285, 329, "", false) يسلمو يعطيكـ العافيهه ي لبى سعد بس Link to comment
Blaawee Posted December 6, 2012 Share Posted December 6, 2012 ي انك تجرب زي كذآ =) backgrounds = { "Background[1].png", "Background[2].png", "Background[3].png" } newFont = guiCreateFont ( "customfont.ttf", 20 ) function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, backgrounds[math.random( 0, #backgrounds )], relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end لكل وندو خلفيه غير عن الثآنيه .. Link to comment
TD[M]ER Posted December 6, 2012 Author Share Posted December 6, 2012 ي انك تجرب زي كذآ =) backgrounds = { "Background[1].png", "Background[2].png", "Background[3].png" } newFont = guiCreateFont ( "customfont.ttf", 20 ) function guiCreateWindow( x2, y2, width2, height2, titleBarText2, relative2 ) local mainBackground = guiCreateStaticImage ( x2, y2, width2, height2, backgrounds[math.random( 0, #backgrounds )], relative2 ) local mainBackgroundLabel = guiCreateLabel ( 50, 0, 400, 100, titleBarText2, false, mainBackground ) guiSetFont ( mainBackgroundLabel, newFont ) guiLabelSetColor ( mainBackgroundLabel, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) guiSetEnabled ( mainBackgroundLabel, false ) return mainBackground end لكل وندو خلفيه غير عن الثآنيه .. يسلمو والله ي بلاوي ماقصرت لكن انا ابي لـ نافذهـ وحدهـ يعطيكـ العافيه حبي Link to comment
TD[M]ER Posted December 6, 2012 Author Share Posted December 6, 2012 استخدم كود عاشق Ok 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