(defun c:FL (/) (setq ent (car (entsel "\nSelect point to follow link"))) (setq link (ade_odgetfield ent "SLID" "SLSADR" 0)) (command "Browser" link) )
Make sure the value in the OD table is a working URL, you should be able to copy it to a browser address window and it take you to that webpage.
Hey Murph. You've been a lot of help for many of us in the cad/gis world over the years. I'd love to see you put more vids up. Explaining something is one thing, but seeing it in action makes it much easier to understand.
Thanks again for all the help... past, current, and future.
@yakyak153 The lisp file should look like this
(defun c:FL (/) (setq ent (car (entsel "\nSelect point to follow link"))) (setq link (ade_odgetfield ent "SLID" "SLSADR" 0)) (command "Browser" link) )
Make sure the value in the OD table is a working URL, you should be able to copy it to a browser address window and it take you to that webpage.
1955Murphy 1 year ago
When i try and run the command i get the following error: Command: fl
; error: too many arguments
I am using SLID as the table name and SLSADR as the field name as those are the fileds in my OD table. Any ideas?
yakyak153 1 year ago
Hey Murph. You've been a lot of help for many of us in the cad/gis world over the years. I'd love to see you put more vids up. Explaining something is one thing, but seeing it in action makes it much easier to understand.
Thanks again for all the help... past, current, and future.
BriansGIS 1 year ago