tourra Posted June 10, 2013 Share Posted June 10, 2013 شباب بغيت شوي اكواد و ابي استفسر على اشياء ؟.؟ -_+ المهم بغيت tooltips ذذ يعني هو فيه اكواد كثير بغيت يعني الاكواد في سطر واحد الخلفية و الفونت و كل شيء في سطر واحد ثاني شيء بغيت لما يضغط على زر يسوي شيء بالفريروم ما فهمت له ذذ يعني اقدر اسوي تيارقر ذذ ....... المهم هذون لا هنتم Link to comment
iPrestege Posted June 10, 2013 Share Posted June 10, 2013 wndMain = { 'wnd', text = 'FR GUI', x = 10, y = 150, width = 280, controls = { {'lbl', text='Local player'}, {'br'}, {'btn', id='kill', onclick=killLocalPlayer}, {'btn', id='skin', window=wndSkin}, {'btn', id='anim', window=wndAnim}, {'btn', id='weapon', window=wndWeapon}, {'btn', id='clothes', window=wndClothes}, {'btn', id='playergrav', text='grav', window=wndGravity}, {'btn', id='warp', window=wndWarp}, {'btn', id='stats', window=wndStats}, {'btn', id='bookmarks', window=wndBookmarks}, {'br'}, {'chk', id='jetpack', onclick=toggleJetPack}, {'chk', id='falloff', text='fall off bike', onclick=toggleFallOffBike}, {'br'}, {'lbl', text='Pos:'}, {'lbl', id='xpos', text='x', width=45}, {'lbl', id='ypos', text='y', width=45}, {'lbl', id='zpos', text='z', width=45}, {'btn', id='setpos', text='map', window=wndSetPos}, {'btn', id='setinterior', text='int', window=wndSetInterior}, {'br'}, {'br'}, {'lbl', text='Vehicles'}, {'br'}, {'lbl', text='Current:'}, {'lbl', id='curvehicle'}, {'br'}, {'btn', id='createvehicle', window=wndCreateVehicle, text='create'}, {'btn', id='repair', onclick=repairVehicle}, {'btn', id='flip', onclick=flipVehicle}, {'btn', id='upgrades', window=wndUpgrades}, {'btn', id='color', onclick=openColorPicker}, {'btn', id='paintjob', window=wndPaintjob}, {'br'}, {'chk', id='lightson', text='Lights on', onclick=forceLightsOn}, {'chk', id='lightsoff', text='Lights off', onclick=forceLightsOff}, {'br'}, {'br'}, {'lbl', text='Environment'}, {'br'}, {'btn', id='time', window=wndTime}, {'chk', id='freezetime', text='freeze', onclick=toggleFreezeTime}, {'btn', id='weather', window=wndWeather}, {'btn', id='speed', window=wndGameSpeed} }, oncreate = mainWndShow, onclose = mainWndClose } مثلا نشوف : {'chk', id='jetpack', onclick=toggleJetPack}, onclick=toggleJetPack onclick = يوم تضغط الزر يسوي الوظيفة : toggleJetPack اممم بنسوي مثلا كذآ : {'btn', id='Nothing', onclick=Test}, function Test ( ) -- Any thing end + https://forum.multitheftauto.com/viewtopic.php?f=160&t=52387&p=510107&hilit=ToolTips#p510087 و بـ التوفيق يـ رب .. Link to comment
tourra Posted June 10, 2013 Author Share Posted June 10, 2013 {'btn', id='hedit', onclick=wizant}, مثلا ذذ ما صلحلي ؟ function wizant( ) executeCommandHandler("hedit") end ) ما فهمت وش الغلط فيه ذذ Link to comment
tourra Posted June 10, 2013 Author Share Posted June 10, 2013 عندك قوس زايد ~ بس ذذ شكرا لك تم حل المشكله بس بغيت شيء اخر ممكن كيفية تلوين item ... حق السيارات و الاسلحة ..... grid list ذذ و شكرا Link to comment
tourra Posted June 10, 2013 Author Share Posted June 10, 2013 ض1 كيف ؟ ما فهمته ذذ يصلح ذذ حطيطه في الفري روم و صلح بس كيف اغير ذذ addEventHandler("onClientResourceStart", resourceRoot, function() setTimer(function() for _,kabcha in ipairs ( getElementsByType("gui-label",resourceRoot)) do guiLabelSetColor ( kabcha, math.random(0, 255), math.random(0, 255), math.random(0, 255) ) end end,250,1) end ) بس كيف اخليه ملون في القريد لست ممكن مثال Link to comment
iPrestege Posted June 10, 2013 Share Posted June 10, 2013 -- # Client Side ! setTimer ( function() for k,v in ipairs( getElementsByType("gui-gridlist",resourceRoot) ) do local col = guiGridListGetColumnCount( v ) local Row = guiGridListGetRowCount ( v ) for columns = 0, col do for row = 0, Row do guiGridListSetItemColor (v,row,columns,math.random(255), math.random(255), math.random(255)) end end end end 250, 0 ) 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