Book a Demo

Author Topic: Hyperlinks in notes, automation  (Read 3689 times)

rayt

  • EA User
  • **
  • Posts: 28
  • Karma: +1/-0
    • View Profile
Hyperlinks in notes, automation
« on: October 29, 2013, 05:29:27 am »
Hello,

We're planing to run a script to automatically create $element://... hyperlinks to all model classes inside the notes fields.

The issue we're having is when writing to Element.Notes using the API, all hyperlinks are removed and converted to "readable" ASCII.

Is there a way to keep the links? (i.e. write unprocessed html sourcecode to the notes field?)

Thanks for all information!
Ray

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Hyperlinks in notes, automation
« Reply #1 on: October 29, 2013, 05:48:26 am »
I had no issue with this Perl snippet
Code: [Select]
$e->{Notes} = 'hyper=<a href="$element://{A6B01717-5729-4c06-A29A-DF3CC0BAF16A}"><font color="#0000ff"><u>ponent1</u></font></a>';

q.

rayt

  • EA User
  • **
  • Posts: 28
  • Karma: +1/-0
    • View Profile
Re: Hyperlinks in notes, automation
« Reply #2 on: October 29, 2013, 08:45:05 pm »
Thanks for your reply qwerty. The issue was using uppercase instead of lowercase tag names.