Thread Tools Display Modes
08/07/14, 07:16 AM   #1
thepman69
Join Date: Aug 2014
Posts: 3
Addon that Saves Linked items?

#1 ---I like how "ATLAS" by crazydutchguy links gear ingame
#2 ---I have (and like) "ZAM Notebook"

Is their any addon that would let me save linked items i see in chat, so I can make my own list ingame to look at whenever I want.

Would be nice to right click an item link in chat and have it say something like "save link to notebook" so I could view it at any time. And maybe that ingame notebook would be cut n paste compatable? I say that because I cannot paste in ZAM Notebook.

EDIT: I can link an item i have to chat and cut n paste it into ZAM notepad, but link doesnt work from the notebook. If i copy n paste it from the notebook to chat then the link works. too bad I cannot save linked items from chat.

ANYTHING Close to this exist?
any ideas?
TY

ESO: @thepman69

P.S. I wish their was an addon to show player names above their heads ingame... I KNOW cant be done.

Last edited by thepman69 : 08/07/14 at 08:01 AM.
  Reply With Quote
08/08/14, 05:16 AM   #2
thepman69
Join Date: Aug 2014
Posts: 3
Something To Add

OK so
I tried an addon called "Chat2Clipboard"
I now tried an addon called "TIM 4"

I can use "chat2clipboard" to copy a chat msg to my system clipboard and ctrl+v it to "ZAM notebook" in game
-i can make a list of items id like to have handy for quick viewing.
........but i have to copy n paste each one back into chat to click on it for a pop up to occur!

On a side note, not all is bad because now i know what im looking for can be done.

Using "TIM 4" (an in game messenger) it stores different chat for me.
and linked items are also Clickable yay
only negative thing is it saves all chat msgs and gets cluttered

Would it be hard to make an addon that would just simply:
click on a linked item in chat and have an option to send to an in game notepad?
with the option to *Save *delete items or note pages or * Add pages etc
also with cut in paste intregated so you can move things around.

Im using these addon in a mickey mouse kind of way, i just cannot find anything else that meets my needs

Any ideas?

Im hoping a God like Garkin sees this

Last edited by thepman69 : 08/08/14 at 05:19 AM.
  Reply With Quote
08/08/14, 06:12 AM   #3
zgrssd
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 280
The "item link" is nothing but a piece of string formated data.

The chat has a special way to display this data (the same way your browser displays a hyperlink differently from how it is written), including showing the tooltip (also just a way to display that data) on click.
It would be easiest if you could say "ShowItemToolTip(ItemLink)" or something like that, but I have no idea if there is such a function.

With 1.3 we got a whole host of new item link functions (and somes back that had been removed). So at worst you might be able make your own tooltip to display.
  Reply With Quote
08/08/14, 09:05 AM   #4
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by zgrssd View Post
The "item link" is nothing but a piece of string formated data.

The chat has a special way to display this data (the same way your browser displays a hyperlink differently from how it is written), including showing the tooltip (also just a way to display that data) on click.
It would be easiest if you could say "ShowItemToolTip(ItemLink)" or something like that, but I have no idea if there is such a function.

With 1.3 we got a whole host of new item link functions (and somes back that had been removed). So at worst you might be able make your own tooltip to display.
There is method which you can use with every tooltip:
Lua Code:
  1. tooltipControl:SetLink(itemLink)

So your function ShowItemToolTip(itemLink) will look like this:
Lua Code:
  1. function ShowItemToolTip(itemLink)
  2.    InitializeTooltip(PopupTooltip)
  3.    PopupTooltip:SetLink(itemLink)
  4. end
  Reply With Quote
08/08/14, 09:35 AM   #5
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Simple solution:
Lua Code:
  1. LINK_HANDLER:RegisterCallback(LINK_HANDLER.LINK_CLICKED_EVENT,
  2.     function(link, button, text, linkStyle, linkType)
  3.             if linkType == ITEM_LINK_TYPE and button == 2 then
  4.             local old = ZO_ChatWindowTextEntryEditBox:GetText()
  5.             ZO_ChatWindowTextEntryEditBox:SetText(link)
  6.             ZO_ChatWindowTextEntryEditBox:CopyAllTextToClipboard()
  7.             ZO_ChatWindowTextEntryEditBox:SetText(old)
  8.             CENTER_SCREEN_ANNOUNCE:AddMessage(0, CSA_EVENT_SMALL_TEXT, nil, "Link has been copied to clipboard.")
  9.             return true --if you want to show tooltip when you right click on the link, delete this line
  10.         end
  11.     end)

When you right click on the item link it will be copied to the clipboard.
Attached Files
File Type: zip CopyItemLink.zip (852 Bytes, 342 views)

Last edited by Garkin : 08/08/14 at 09:47 AM. Reason: Added addon file.
  Reply With Quote
08/09/14, 07:17 PM   #6
thepman69
Join Date: Aug 2014
Posts: 3
TYVM .your a big help
  Reply With Quote

ESOUI » AddOns » AddOn Help/Support » Addon that Saves Linked items?


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off