I should mention that if you want to get “fancy” there is a hack around this. It’s good enough for now until v2 comes out with the ability to set custom fields from LL.
Part of HelpSpot is the prototype javascript library. You can make use of the library in your Live Lookup results to set the custom fields. Here’s how.
Say you return a Live Lookup tag for location:
Building 12
And you want to be able to set that to a custom field. What you can do rather than copy and paste is add a link to the displayed results that will add it at a click. The code to do this is as follows:
<![CDATA[
Building 12
]]>
Here’s what this code does. It adds a cdata block so that we can pass HTML back in the results. It wraps an HTML link around the text you want to have inserted. When the link is clicked the javascript in the onclick puts the text inside the link into the custom field.
All you’ll need to change is the content of the link and check which custom field ID you want to insert into. Then switch the 1 in Custom1 with the right number. You can find the custom field ID in the custom field screen.