Help

Script to create hypertext has stopped working

Topic Labels: Scripting extentions
Solved
Jump to Solution
1446 3
cancel
Showing results for 
Search instead for 
Did you mean: 
Dan_Billin
6 - Interface Innovator
6 - Interface Innovator

I created a “sandbox” base to develop this script to create a new hypertext field from a text field and a URL field:
image

image

When I got it working in the test base, I copied the code into my live base. The field names were different there, so I edited the script accordingly. I ran it and it worked.
image

This script doesn’t run automatically, so after I entered new records, I ran it again to populate the empty hypertext field in the new records. Now the script doesn’t work properly. It calls the text and the URL into the destination field, but it doesn’t format them as hypertext. Here’s the result:

image

I checked that the destination field was long text with rich formatting enabled. The code still works in the sandbox base, so I tried copying it back into the live base (and changed the field names again in the script). Will not work, even if I create a brand new destination field for the hypertext. What could be wrong in my live base that’s keeping the URL from embedding when I’m using the same code that works in my test base?

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto

Your result looks like it is missing a closing parentheses. Could it have been deleted in the code?

See Solution in Thread

3 Replies 3
kuovonne
18 - Pluto
18 - Pluto

Your result looks like it is missing a closing parentheses. Could it have been deleted in the code?

Dan_Billin
6 - Interface Innovator
6 - Interface Innovator

Yes, the results all have an opening parenthesis on the URL, but not a closing one. Looking at the code, however, I can’t see any place where a closing parenthesis is missing.

You pointed me in the right direction. Thank you! Thinking about the URL not having the closing parenthesis prompted me to check the type of the URL field. It had somehow been changed to long text instead of URL. I converted it to a URL field and now my code is working again. Thank you!