View Single Post
  #12  
Unread 03-05-2006, 07:17 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

hehe, I was wondering if it got logged anyways

Try
'ResultsPage.Table.ScrollPage.row Item Name.LocalText'

quote the entire path

The difficulty you'll run into is in addressing the seller of the selected row. Since these aren't actually tables or any of the normal UI list objects, you prety much have to stumble upon a hidden index property (if its even accessable from XML).

If you can discover an index property or better yet a datasource feeding the results page, you could easily concatinate all the results into 1 chat entry. If this were a standard list, It'd work something like this...

Code:
parent.parent.parent.MainChat.ChatPage.ChatFrame.ChatInput.LocalText=datasource.selecteditemindex.0.name ## ' ' ## table.datasource.selecteditemindex.0.price ## ' ' ## datasource.selecteditemindex.0.seller ## '
' ## datasource.selecteditemindex.1.name ## ' ' ## table.datasource.selecteditemindex.1.price ## ' ' ## datasource.selecteditemindex.1.seller ## '
' ## datasource.selecteditemindex.2.name ## ' ' ## table.datasource.selecteditemindex.2.price ## ' ' ## datasource.selecteditemindex.2.seller ## '
'
etc
Above code may not be exactly right, but something like that.
Reply With Quote