View Single Post
  #13  
Unread 08-04-2010, 09:29 AM
Zonx's Avatar
Zonx Zonx is offline
A Green Troll
This person is a EQ2Map developer.
Featured
 
Join Date: Dec 2004
Server: Blackburrow
Posts: 2,221
Default

Based on your screenshot, my guess is that a Composit object is getting inserted into the SpellEffects scrollPage, and the PlainTemplate gets repeated inside that.

Use an OnHover script to check what the scrollbar's "Control" property is set to at runtime. That is most likely the mystery object you need to set PackSize on via script. My guess is that the resulting object tree looks like the following
Code:
ExamineEffect
|_ SpellEffects (Template)
|_ PlainTemplate (Template)
|_ ScrollTemplate (Template)
... (More templates and window dressing)
|_ SpellEffects (Clone)
   |_ ScrollTemplate (Clone)
   |_ Composit (Mystery Object Vertical layout)
      |_ PlainTemplate (Clone for non-dot description text)
      |_ Composit (Mystery horizontal layout, left padding to indent bullets)
         |_ DotTemplate (Clone)
         |_ PlainTemplate (Clone for dot text)
Oh and use an onHover script for the PlainTemplate with a buncha parent concats to get the actual parent trace.

Code:
onhover="
tooltip=Parent.Name
tooltip=Parent.Parent.Name ##.## Tooltip
tooltip=Parent.Parent.Parent.Name ##.## Tooltip
tooltip=Parent.Parent.Parent.Parent.Name ##.## Tooltip
tooltip=Parent.Parent.Parent.Parent.Parent.Name ##.## Tooltip
"
Should produce something like...
root.ExamineEffect.SpellEffects.MysteryObject

Last edited by Zonx : 08-04-2010 at 09:36 AM.
Reply With Quote