Lisp to open a link web site

Lisp to open a link web site

jorgearone_inssitu
Enthusiast Enthusiast
1,101 Views
6 Replies
Message 1 of 7

Lisp to open a link web site

jorgearone_inssitu
Enthusiast
Enthusiast

Hello everyone
I would like to know if there is any way to open a web page using lisp code.

0 Likes
Accepted solutions (3)
1,102 Views
6 Replies
Replies (6)
Message 2 of 7

EnM4st3r
Advocate
Advocate
Accepted solution
(startapp "explorer" "https://www.youtube.com")
0 Likes
Message 3 of 7

komondormrex
Mentor
Mentor
Accepted solution

hey there,

yet another one

(showhtmlmodalwindow "https://www.autodesk.com")

 

0 Likes
Message 4 of 7

pendean
Community Legend
Community Legend
Accepted solution
.... or you could just attach a hyperlink to an object in your file to allow you to go to a website if that is your ultimate need https://help.autodesk.com/view/ACD/2024/ENU/?guid=GUID-68C8EEED-2FA2-4100-AE03-F8B1C40431E1
0 Likes
Message 5 of 7

jorgearone_inssitu
Enthusiast
Enthusiast

Thank you very much to all

 

0 Likes
Message 6 of 7

Sea-Haven
Mentor
Mentor

Another 

 

(command "browser" "https://www.google.com.au/maps/@-33.8567844,151.213108,17z")
0 Likes
Message 7 of 7

lleahyMEJC8
Explorer
Explorer

I think this little function to open anything, PDF, URL etc

 

;open file
(defun f:open (x);
(setq shell (vla-getinterfaceobject (vlax-get-acad-object) "Shell.Application" ) )
(vlax-invoke-method shell 'Open x)
(vlax-release-object shell)
)

0 Likes