Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello everyone
I would like to know if there is any way to open a web page using lisp code.
Solved! Go to Solution.
Hello everyone
I would like to know if there is any way to open a web page using lisp code.
Solved! Go to Solution.
hey there,
yet another one
(showhtmlmodalwindow "https://www.autodesk.com")
Thank you very much to all
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)
)