Nolberto Posted March 15, 2014 Report Share Posted March 15, 2014 Bueno hola amigos de MZ les traigo un inventario muy diferente a los tradicionales, bueno eso creo yo , para cualquier reclamo u otra cosa, este inventario NO LO HE CREADO YO, como repito solo lo estoy trayendo al foro para que lo disfruteis y bueno si no les gusta, aya ustedes Ahi les va algunas fotillos BUSCAN EN UI.PY:def SetCloseEvent(self, event): self.btnClose.SetEvent(event)Y AGREGAN: class TitleBar2(Window): BLOCK_WIDTH = 32 BLOCK_HEIGHT = 23 def __init__(self): Window.__init__(self) self.AddFlag("attach") def __del__(self): Window.__del__(self) def MakeTitleBar(self, width, color): ## ÇöŔç Color´Â »çżëÇĎ°í ŔÖÁö ľĘŔ˝ width = max(64, width) imgLeft = ImageBox() imgCenter = ExpandedImageBox() imgRight = ImageBox() imgLeft.AddFlag("not_pick") imgCenter.AddFlag("not_pick") imgRight.AddFlag("not_pick") imgLeft.SetParent(self) imgCenter.SetParent(self) imgRight.SetParent(self) if locale.IsARABIC(): imgLeft.LoadImage("locale/ae/ui/pattern/titlebar_left.tga") imgCenter.LoadImage("locale/ae/ui/pattern/titlebar_center.tga") imgRight.LoadImage("locale/ae/ui/pattern/titlebar_right.tga") else: imgLeft.LoadImage("locale/yang.tga") imgCenter.LoadImage("locale/yang.tga") imgRight.LoadImage("locale/yang.tga") imgLeft.Show() imgCenter.Show() imgRight.Show() btnClose = Button() btnClose.SetParent(self) btnClose.SetUpVisual("locale/1close.tga") btnClose.SetOverVisual("locale/2close.tga") btnClose.SetDownVisual("locale/1close.tga") btnClose.SetToolTipText(locale.UI_CLOSE, 0, -23) btnClose.Show() self.imgLeft = imgLeft self.imgCenter = imgCenter self.imgRight = imgRight self.btnClose = btnClose self.SetWidth(width) DESPUÉS BUSCAN:elif Type == "titlebar"Y AGREGAN: elif Type == "titlebar2": parent.Children[index] = TitleBar2() parent.Children[index].SetParent(parent) self.LoadElementTitleBar(parent.Children[index], ElementValue, parent) LUEGO BUSCAR def LoadElementTitleBar(self, window, value, parentWindow): Y AGREGAR: def LoadElementTitleBar2(self, window, value, parentWindow): if FALSE == self.CheckKeyList(value["name"], value, self.TITLE_BAR_KEY_LIST): return FALSE window.MakeTitleBar(int(value["width"]), value.get("color", "red")) self.LoadDefaultData(window, value, parentWindow) return TRUE AHORA LO QUE TANTO ESPERABANDESCARGA: Debes iniciar sesión para ver el contenido del enlace en esta publicación. EL RAR CONTIENE: LOCALE, ROOT Y UN DIFF PARA EL GAME CRÉDITOS: maxmi1297 UN GRACIAS NO LE HACE MAL A NADIE Dj_Xhema Roman Somet, Tiburon, xTFGYR and 4 others 7 Quote Link to comment Share on other sites More sharing options...
iancu dumitrache Posted December 21, 2020 Report Share Posted December 21, 2020 o.o Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.