<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Javascript API for AutoCAD give Beginners a Rough Start?? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6668955#M126856</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a web developer with AutoCAD and AutoCAD customization experience and recently wanted to integrate AutoCAD with a remote site I have a database hosted on. I'm nowhere near that aspect of things as I've found integrating many things from the AutoCAD API and tutorial examples to not be a smooth experience at all. I'm looking to see who might point me to a more focused network of peers or forum that can assist in technical details. For example, the Javascript for AutoCAD has been out since 2014 I believe, but there is no dedicated forum group here in the Autodesk Community. Additionally, I'll post my questions here. If anyone out there can answer some or all of these, or point me to the right place where I can get these answered, I'd be very grateful!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As givens:&amp;nbsp;&lt;/P&gt;&lt;P&gt;- I host a localhost on my Windows machine using WAMP and call my test files from &lt;A href="http://acadjs.local/filename.js" target="_blank"&gt;http://acadjs.local/filename.js&lt;/A&gt;. This part works and I've confirmed it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- I use AutoCAD 2016 and am installing the JS files using WEBLOAD. My TRUSTEDPATHS are fine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;QUESTIONS:&amp;nbsp;&lt;/P&gt;&lt;P&gt;#1:&lt;/P&gt;&lt;P&gt;In this example "&lt;SPAN&gt;&lt;A href="https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm" target="content"&gt;To Capture an Image Preview&lt;/A&gt;"&lt;/SPAN&gt; (&lt;A href="https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm" target="_blank"&gt;https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm&lt;/A&gt;), it makes reference to calling&amp;nbsp;Acad.Application.activedocument.addPalette(). The API Reference at&amp;nbsp;&lt;A href="https://df-prod.autocad360.com/jsapi/v3/docs/contents.html" target="_blank"&gt;https://df-prod.autocad360.com/jsapi/v3/docs/contents.html&lt;/A&gt; confirms this API function. However,&amp;nbsp;it simply did not work. I finally resorted to calling&amp;nbsp;Object.getOwnPropertyNames(Acad.Application.activedocument) and&amp;nbsp;Object.getOwnPropertyNames(Acad.Application) and discovered the&amp;nbsp;&lt;SPAN&gt;addPalette() function is in &lt;SPAN&gt;Acad.Application, not&amp;nbsp;Acad.Application.activedocument! After changing the code to Acad.Application.addPalette() it worked. I would like to confirm&amp;nbsp;whether I found a workaround or if there was something else I should have done to make it work the way the API references it.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;I tried this example "&lt;SPAN&gt;&lt;A href="https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm" target="content"&gt;To Capture an Image Preview&lt;/A&gt;"&amp;nbsp;&lt;/SPAN&gt;(&lt;A href="https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm" target="_blank"&gt;https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm&lt;/A&gt;). It did not work. After banging my head, I looked in the&amp;nbsp;Autodesk.AutoCAD.js file itself to see where the error was coming from. Turns out its on Line 4580.&amp;nbsp;promise.success(JSON.parse(resObj.retValue)); is called, but just before that on line 4587 this is called:&amp;nbsp;var resObj = JSON.parse(result); That seems to imply that the string parsed to a JSON Object has again been parsed a second time. I replaced line 4580 with&amp;nbsp;promise.success(resObj.retValue) and it worked! Why would this be, and why don't any of the examples seem to work out the gate? Since resObj.retValue is binary data result, parsing it as JSON&amp;nbsp;obviously is not going to work and is why it failed. However, this is in the core library, which I HAD TO DOWNLOAD THE Autodesk.AutoCAD.js &amp;nbsp;FILE AND EDIT IT to make it work. I've noticed this same phenomenon on other&amp;nbsp;ActiveDocumentInterop.XYZ functions.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I'm trying to implement the example at (&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2013/03/zooming-to-an-autocad-entity-using-javascript.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2013/03/zooming-to-an-autocad-entity-using-javascript.html&lt;/A&gt;). I load it and there are no errors. I then type the "ZEN" command per the example and click the element and nothing happens. There is no error handling. I then wrapped it in an HTML palette so I can use the F12 testing suite and see the error: Uncaught Error: Error: add command failed. I dug into that and again the error happens on Line 3943 in&amp;nbsp;&lt;SPAN&gt;Autodesk.AutoCAD.js. There is no reason given for it to fail, it just fails. Again, this is the core library causing the problem, which is nerve wracking.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;#4&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;When loading an html file into an AutoCAD palette, we have the luxury of hitting F12 and using the debugger to check the console for errors. However, if you just load a JS file without an html wrapper around it, there is no debugger console to test your code. For example, there is nowhere for console.log() to echo out. Is there another feature I am not aware of to test straight JS files, or do I have to wrap it in an HTML palette just to be able to use the debugger? If not, is there&amp;nbsp;a Javascript command to write text to the command console so I can read it? You can't copy text in alert boxes.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;#5&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Is there any interface similar to VLIDE for Javascript other than the F12 debugger for HTML palettes?&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;#6&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;I'd like to use node.js as my framework, and&amp;nbsp;require('Autodesk.AutoCAD.js') from there. Is that possible to include in an AutoCAD Javascript?&amp;nbsp;If so, can I use ECMAScript 6 with associated node plugins to use with AutoCAD?&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#7&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there ANY other resource out there other than this forum and Through The Interface (website, book, community) specifically for AutoCAD Javascript programming?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm sure plenty of other questions will arise in my journey, but suffice it to say, it appears to me that following the examples step by step, not only in the official tutorials (which are pretty slim) and the example given on Through The Interface, do not appear to work. I'm sure they work on the writers' local machines, but not on mine. I'm at a loss for continuing with confidence, as right now I'm not sure if there is something on my machine I need to change or if the API itself is buggy and untested. Any help at all would be greatly apprecaited!!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 05 Nov 2016 01:05:03 GMT</pubDate>
    <dc:creator>arionXMSF7</dc:creator>
    <dc:date>2016-11-05T01:05:03Z</dc:date>
    <item>
      <title>Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6668955#M126856</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm a web developer with AutoCAD and AutoCAD customization experience and recently wanted to integrate AutoCAD with a remote site I have a database hosted on. I'm nowhere near that aspect of things as I've found integrating many things from the AutoCAD API and tutorial examples to not be a smooth experience at all. I'm looking to see who might point me to a more focused network of peers or forum that can assist in technical details. For example, the Javascript for AutoCAD has been out since 2014 I believe, but there is no dedicated forum group here in the Autodesk Community. Additionally, I'll post my questions here. If anyone out there can answer some or all of these, or point me to the right place where I can get these answered, I'd be very grateful!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As givens:&amp;nbsp;&lt;/P&gt;&lt;P&gt;- I host a localhost on my Windows machine using WAMP and call my test files from &lt;A href="http://acadjs.local/filename.js" target="_blank"&gt;http://acadjs.local/filename.js&lt;/A&gt;. This part works and I've confirmed it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- I use AutoCAD 2016 and am installing the JS files using WEBLOAD. My TRUSTEDPATHS are fine.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;QUESTIONS:&amp;nbsp;&lt;/P&gt;&lt;P&gt;#1:&lt;/P&gt;&lt;P&gt;In this example "&lt;SPAN&gt;&lt;A href="https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm" target="content"&gt;To Capture an Image Preview&lt;/A&gt;"&lt;/SPAN&gt; (&lt;A href="https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm" target="_blank"&gt;https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm&lt;/A&gt;), it makes reference to calling&amp;nbsp;Acad.Application.activedocument.addPalette(). The API Reference at&amp;nbsp;&lt;A href="https://df-prod.autocad360.com/jsapi/v3/docs/contents.html" target="_blank"&gt;https://df-prod.autocad360.com/jsapi/v3/docs/contents.html&lt;/A&gt; confirms this API function. However,&amp;nbsp;it simply did not work. I finally resorted to calling&amp;nbsp;Object.getOwnPropertyNames(Acad.Application.activedocument) and&amp;nbsp;Object.getOwnPropertyNames(Acad.Application) and discovered the&amp;nbsp;&lt;SPAN&gt;addPalette() function is in &lt;SPAN&gt;Acad.Application, not&amp;nbsp;Acad.Application.activedocument! After changing the code to Acad.Application.addPalette() it worked. I would like to confirm&amp;nbsp;whether I found a workaround or if there was something else I should have done to make it work the way the API references it.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;I tried this example "&lt;SPAN&gt;&lt;A href="https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm" target="content"&gt;To Capture an Image Preview&lt;/A&gt;"&amp;nbsp;&lt;/SPAN&gt;(&lt;A href="https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm" target="_blank"&gt;https://df-prod.autocad360.com/jsapi/v3/GettingStart/files/tutorial_image_wrkflw.htm&lt;/A&gt;). It did not work. After banging my head, I looked in the&amp;nbsp;Autodesk.AutoCAD.js file itself to see where the error was coming from. Turns out its on Line 4580.&amp;nbsp;promise.success(JSON.parse(resObj.retValue)); is called, but just before that on line 4587 this is called:&amp;nbsp;var resObj = JSON.parse(result); That seems to imply that the string parsed to a JSON Object has again been parsed a second time. I replaced line 4580 with&amp;nbsp;promise.success(resObj.retValue) and it worked! Why would this be, and why don't any of the examples seem to work out the gate? Since resObj.retValue is binary data result, parsing it as JSON&amp;nbsp;obviously is not going to work and is why it failed. However, this is in the core library, which I HAD TO DOWNLOAD THE Autodesk.AutoCAD.js &amp;nbsp;FILE AND EDIT IT to make it work. I've noticed this same phenomenon on other&amp;nbsp;ActiveDocumentInterop.XYZ functions.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I'm trying to implement the example at (&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2013/03/zooming-to-an-autocad-entity-using-javascript.html" target="_blank"&gt;http://through-the-interface.typepad.com/through_the_interface/2013/03/zooming-to-an-autocad-entity-using-javascript.html&lt;/A&gt;). I load it and there are no errors. I then type the "ZEN" command per the example and click the element and nothing happens. There is no error handling. I then wrapped it in an HTML palette so I can use the F12 testing suite and see the error: Uncaught Error: Error: add command failed. I dug into that and again the error happens on Line 3943 in&amp;nbsp;&lt;SPAN&gt;Autodesk.AutoCAD.js. There is no reason given for it to fail, it just fails. Again, this is the core library causing the problem, which is nerve wracking.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;#4&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;When loading an html file into an AutoCAD palette, we have the luxury of hitting F12 and using the debugger to check the console for errors. However, if you just load a JS file without an html wrapper around it, there is no debugger console to test your code. For example, there is nowhere for console.log() to echo out. Is there another feature I am not aware of to test straight JS files, or do I have to wrap it in an HTML palette just to be able to use the debugger? If not, is there&amp;nbsp;a Javascript command to write text to the command console so I can read it? You can't copy text in alert boxes.&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;#5&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Is there any interface similar to VLIDE for Javascript other than the F12 debugger for HTML palettes?&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;#6&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;I'd like to use node.js as my framework, and&amp;nbsp;require('Autodesk.AutoCAD.js') from there. Is that possible to include in an AutoCAD Javascript?&amp;nbsp;If so, can I use ECMAScript 6 with associated node plugins to use with AutoCAD?&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#7&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there ANY other resource out there other than this forum and Through The Interface (website, book, community) specifically for AutoCAD Javascript programming?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm sure plenty of other questions will arise in my journey, but suffice it to say, it appears to me that following the examples step by step, not only in the official tutorials (which are pretty slim) and the example given on Through The Interface, do not appear to work. I'm sure they work on the writers' local machines, but not on mine. I'm at a loss for continuing with confidence, as right now I'm not sure if there is something on my machine I need to change or if the API itself is buggy and untested. Any help at all would be greatly apprecaited!!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Nov 2016 01:05:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6668955#M126856</guid>
      <dc:creator>arionXMSF7</dc:creator>
      <dc:date>2016-11-05T01:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6916395#M126857</link>
      <description>&lt;P&gt;I'd really like to see some answers to this question. It's been a few months since the original post was made, and this post was the &lt;EM&gt;only&lt;/EM&gt; resource I could find to get a sample javascript app to work inside of AutoCAD. The examples still have errors in them, and the core javascript library still has the same errors described in the original post. I won't be able to use the javascript API anytime soon since the offical js file for the API won't even load the extremely simple samples posted by autodesk.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 19:00:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6916395#M126857</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-02T19:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6916746#M126858</link>
      <description>Hi there,&lt;BR /&gt;&lt;BR /&gt;After doing more sleuthing and questioning members of AutoDesk, I was told in no certain terms that the Javascript API never really caught on and is not being supported nor does it have an active interested community. Their links on Google are still active though which is very misleading and frustrating, as I see you have noticed.&lt;BR /&gt;&lt;BR /&gt;I was advised to put my adversion to dot net aside and use that library for the most lively community of AutoDesk programmers and solutions, and of course a functioning API. Too bad since Javascript has seen a huge universal rebirth recently and I'd love if it was fully supported and embraced by the AutoDesk community.</description>
      <pubDate>Thu, 02 Mar 2017 20:53:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6916746#M126858</guid>
      <dc:creator>arionXMSF7</dc:creator>
      <dc:date>2017-03-02T20:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6916795#M126859</link>
      <description>&lt;P&gt;That really is a shame. Especially since I was just able to set up a live coding environment using &lt;A href="http://lighttable.com/" target="_blank"&gt;light table&lt;/A&gt;. It's possible to write javascript, html, and css code in the editor, then evaluate it in the ACAD browser with a single hot key. The feedback loop is so much quicker compared to coding in .NET where you basically have to start a new instance of AutoCAD every time a change to the code is made. With javascript (and HTML pallets), I can just push the changes from the editor and see them instantly. Guess I'll just have to go back to .NET. Oh well. Thanks for the response!&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 21:04:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6916795#M126859</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-02T21:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6918572#M126860</link>
      <description>&lt;P&gt;If blame is of any importance, certainly lack of good documentation and samples that actually worked as advertised was a critical part of causing lack of interest on the part of the community. &amp;nbsp;I like programming in Javascript but when the sample files and documentation don't work and, as you say, when there is no support community, it's easier to switch to another language to accomplish the immediate task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IMO, this is shortsighted on the part of AutoDesk, since in the not too distant future, as Web speeds increase, performance might actually be better from web based application with cloud servers, where Javascript is a native. &amp;nbsp;Support for Angular JS should also be considered. &amp;nbsp;Palettes as web page dialogs is a good concept. They really should consider revisiting their decision to withdraw support.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 13:27:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6918572#M126860</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-03-03T13:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6919429#M126861</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/411413"&gt;@dbroad&lt;/a&gt;, Angular JS applications should work just fine. Since AutoCAD is just loading up an instance of Google Chrome, you can load anything that works in Chrome, for the most part. Here's a screen shot of me loading up weather.com in AutoCAD, which was written with AngularJS.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="angular-in-acad.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/329133i1B6A4B7353C7AF09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="angular-in-acad.png" alt="angular-in-acad.png" /&gt;&lt;/span&gt;Not only can it do that, but it can also load javascript that was transpiled from other languages. AutoDesk admitted they were using Typescript to write the javascript API (&lt;A href="http://through-the-interface.typepad.com/through_the_interface/2015/04/learning-typescript.html" target="_blank"&gt;source&lt;/A&gt;). There are &lt;A href="https://github.com/jashkenas/coffeescript/wiki/List-of-languages-that-compile-to-JS" target="_blank"&gt;a lot of other languages&lt;/A&gt; too. I'm working on getting a basic clojurescript application to load up in AutoCAD.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm really hoping they fix all these public bugs in their example code and continue supporting their javascript API.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 17:36:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6919429#M126861</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-03-03T17:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6921436#M126862</link>
      <description>Thanks. Nice to know.</description>
      <pubDate>Sun, 05 Mar 2017 00:12:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6921436#M126862</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-03-05T00:12:52Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6921495#M126863</link>
      <description>&lt;P&gt;A&amp;nbsp;&lt;SPAN&gt;Professor of Architectural Technology, eh? &amp;nbsp;Like Dr. Henry Jones was just a professor of anthropology, right? &amp;nbsp;Or was that archaeology, or maybe cinematography? &amp;nbsp;Maybe you really get your answers from a crystal skull?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 02:15:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6921495#M126863</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2017-03-05T02:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6922184#M126864</link>
      <description>&lt;P&gt;That would be fun.&amp;nbsp; No digging around in caves for me though.&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2017 19:29:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6922184#M126864</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-03-05T19:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6922197#M126865</link>
      <description>Aw, c'mon.&lt;BR /&gt;It's as easy as (tblobjname "block" "Map_Room").</description>
      <pubDate>Sun, 05 Mar 2017 19:39:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/6922197#M126865</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2017-03-05T19:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/7466745#M126866</link>
      <description>&lt;P&gt;Is anyone aware if there are an news from Autodesk for future of JavaScript API?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;JS API looks really promising and we are just starting project of integration of WEB-based platform with AutoCad and as we will invest a significant amount of our time into this it is bit frightening not to be sure if this JavaScript API is "dead" project at AutoDesk.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2017 11:40:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/7466745#M126866</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-17T11:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/8086092#M126867</link>
      <description>&lt;P&gt;I would like to know too, cuz I'm going to use Javascript for later project.&lt;/P&gt;&lt;P&gt;It's bad when they stop updating Autocad Javascript API.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 17:38:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/8086092#M126867</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-22T17:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/8746363#M126868</link>
      <description>&lt;P&gt;Did you ever get an answer to this? I'm also experimenting with using the Javascript API and having similar issues. I've contacted support today but haven't heard back from them yet. I'm hoping to use the Javascript API just to avoid WPF and Windows Forms in making a UI.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 00:19:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/8746363#M126868</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-23T00:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/8746494#M126869</link>
      <description>&lt;P&gt;I bumped an old post recently too asking about it and it gets avoided like the plague. Didn't know what avenue to contact AutoCAD to get a response either so hopefully you'll have better luck than I.&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 03:21:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/8746494#M126869</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2019-04-23T03:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/9697971#M126870</link>
      <description>&lt;P&gt;I would like to do the same.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 17:09:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/9697971#M126870</guid>
      <dc:creator>gotMorris</dc:creator>
      <dc:date>2020-08-18T17:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/9701167#M126871</link>
      <description>&lt;P&gt;Look at this&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-javascript-api-not-working/td-p/6895507" target="_blank"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/autocad-javascript-api-not-working/td-p/6895507&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 00:39:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/9701167#M126871</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-08-20T00:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript API for AutoCAD give Beginners a Rough Start??</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/10356401#M126872</link>
      <description>&lt;P&gt;Hi, I'm a software developer trying to work on a large project for my company, using the js api.&lt;/P&gt;&lt;P&gt;Since is well known that the api is transpiled to js with typed jsdocs, I don't know how could be to release at least the Typescript definitions for production development with de js api?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 19:46:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/javascript-api-for-autocad-give-beginners-a-rough-start/m-p/10356401#M126872</guid>
      <dc:creator>julio.torres.c</dc:creator>
      <dc:date>2021-06-01T19:46:05Z</dc:date>
    </item>
  </channel>
</rss>

