VolumePage in EQ2UIElement

slowPoke

Active Member
I'm running into a little problem with the EQ2UIElement (again) where i'm trying to see whats in a VolumePage element... Except all I can get is .Type (and thats obviously VolumePage) everything else returns NULL...

I'm wondering if this is because the VolumePage is not supported by EQ2UIElement... and thats my problem, or if I'm just using it wrong...

Has anyone else read from a VolumePage with success?

using:
${EQ2UIPage[... , ...].Child[Composite, ... ].Child[Page,2].Child[VolumePage,5].Type}

To access this VolumePage, path works great for the sister elements, all Text and Button... no problems with those... just the last element returns nothing at all...

//SlowPoke
 

Amadeus

The Maestro
Staff member
I'm wondering if this is because the VolumePage is not supported by EQ2UIElement... and thats my problem, or if I'm just using it wrong...
This is probably the reason. You'll have to provide the full example of what you're trying and the information you're wanting to use it for. Then, I can check and see how it works.
 

slowPoke

Active Member
I'm working through the collections part of the journal. The following piece of code will return the Name of the second collection in your journals collection part. (depending of whatever filter you have on)

Code:
echo ${EQ2UIPage[Journals,JournalsQuest].Child[Composite,TabPages.Collection.CollectionFrame.CollectionComposite].Child[Page,2].Child[Text,4].Label}

This part however is the only part where the "icons" for the collectibles can be pressent in (and it is right after category, name and level part)... though other than the type part you see belowe, nothing works... no .NumChildren, .Label or any other sub I could think of...

Code:
echo ${EQ2UIPage[Journals,JournalsQuest].Child[Composite,TabPages.Collection.CollectionFrame.CollectionComposite].Child[Page,2].Child[VolumePage,5].Type}
I'll even settle for just knowing how many child elements there are, then I can hack my way of of the rest... but without the number of children, it's pointless...

//SlowPoke
 
Top Bottom