ADSK2007 Posted March 27, 2012 Posted March 27, 2012 Hello Just a quick question. Is it possible to load a lisp routine from a web site instead of a network drive? I know i can load it from c: or a network drive (LOAD "lispfile.lsp") but is it possible to load it from a web site? (LOAD www.abcd.com/lispfile.lsp) or something like that. If yes then could you please let me know how? or what is the code Regards Fred Quote
MSasu Posted March 27, 2012 Posted March 27, 2012 To be able to access the file, you will need FTP access to the site. But still I’m not sure that can be done directly with LOAD function. An alterative will be to use a command line FTP client and create a temporary copy of the file to your hard-disk, load it from there and remove it. This way you will be able also to supply a username/password. Regards, Mircea Quote
sharpooth Posted March 29, 2012 Posted March 29, 2012 Try this 1.make point to point conection from comp1 to comp2. This a standart conection from windows wizard conection 2. When you establish a conection with comp2 the windows will know ( add) comp2 in local network. Does no matter that comp2 is on the end of the world 3. When you type ( load "\\192.168.........\\......\\.....\\lispfile.lsp") the autocad will load the routine 4. You can add it in win startup sute This procedure working, because i am using it every day Quote
BlackBox Posted March 29, 2012 Posted March 29, 2012 FWIW - You may find this thread to be of interest. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.