Bug #2122
EQ2UI - :DoubleLeftClick not working
Description
In the Guild Hall, to the right is a fuel merchant named "Fuel <Guild Fuel Merchant>" we can use for testing.
This works on the buy or sell tab. I'll use the buy tab as an example, but they work the same.
If you double click an item, it will buy it.
Assuming you are using this exact same merchant, we can get the data for the first item like this:
echo ${Vendor.Item[1].Name}
echo ${EQ2UIPage[_HUD,merchant].Child[page,_HUD.merchant].Child[Page,2].Child[Page,6].Child[Text,281].GetProperty["localtext"]}
Both return "aerated mineral water"
EQ2UIPage[_HUD,merchant].Child[page,_HUD.merchant].Child[Page,2].Child[Page,6].Child[Text,281]:LeftClick
Will highlight the item.
EQ2UIPage[_HUD,merchant].Child[page,_HUD.merchant].Child[Page,2].Child[Page,6].Child[Text,281]:DoubleLeftClick
Also only highlights the item.
Doing a few rapid EQ2UIPage[_HUD,merchant].Child[page,_HUD.merchant].Child[Page,2].Child[Page,6].Child[Text,281]:LeftClick also only highlights the item, never mimicing a double left click
This is from the other bug report, incase you need the icon example:
Found an example of doubleclicking
In the spell effects window (NOT the maintained window), if you double click on something in there, it opens something (usually examines it, exception is if you have mail, it will open the mail window)
To test, have a buff on you. Double click on the icon in the spell window, it opens an examine.
Here is sample code to test/reach it.
echo ${EQ2UIPage[_HUD,effects].Child[page,_HUD.effects].Child[VolumePage,1].Child[Icon,2]}
Below does nothing
EQ2UIPage[_HUD,effects].Child[page,_HUD.effects].Child[VolumePage,1].Child[Icon,2]:DoubleLeftClick
Files