Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
For a game handeled pos you need a version that has frame child api. Then you walk down the children of ("MultiboardListContainer", 0) and place your sprite frame relative to IconContainer.
I did some testing with current and the frame child api gives access to parents of the multiboard Cell-Content. Which is enough for scaling & position.
I expect you know how to create the frame to display Frame Border Effect.
You need a short delay between creating the multiboard and accessing the content frames otherwise the game crashs.
No idea: about multiplayer, replay or observer sideeffects.
could you please let me know?
I succeeded in converting the example in this link to jass but I've also failed several times trying to make a sprite appear on the hero button for experimentation.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.
I did some testing with current and the frame child api gives access to parents of the multiboard Cell-Content. Which is enough for scaling & position.
container = BlzGetFrameByName("MultiboardListContainer", 0)
something = BlzFrameGetChild(container, 0)
row = BlzFrameGetChild(something, 0) --(0 to RowCount - 1)
cell = BlzFrameGetChild(row, 0) --(0 to ColCount -1)
IconContainer = BlzFrameGetChild(cell, 0)
TextContainer = BlzFrameGetChild(cell, 1)
BlzFrameSetPoint(spriteFrame, FRAMEPOINT_BOTTOMLEFT, IconContainer, FRAMEPOINT_BOTTOMLEFT, 0, 0)
I expect you know how to create the frame to display Frame Border Effect.
You need a short delay between creating the multiboard and accessing the content frames otherwise the game crashs.
No idea: about multiplayer, replay or observer sideeffects.
good luck