Record Link in AppleScript

Hello,

how do I access an item’s “Record Link” from AppleScript?

Thanks,
S

The x-eaglefiler link is available via the “URL” property. For example:

tell application "EagleFiler"
    tell browser window 1
        set _records to selected records
        repeat with _record in _records
            set _url to _record's URL
            display dialog _url
        end repeat
    end tell
end tell

Thanks!