<?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 Re: Issues with Sketched Symbols with Prompted Entry using iLogic in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912429#M82992</link>
    <description>&lt;P&gt;Justin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also changed the WorkPoint and created a WorkAxis. Then, I tried with a Centerline instead of centermark.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the same result in Ilogic. If I try with a Sketched Symbol without prompted entry, it works. However, a Sketched Symbol with prompted entry doesn't work in iLogic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using Centerline, I used either the StartPoint or EndPoint, but it doesn't work either&lt;/P&gt;</description>
    <pubDate>Thu, 05 Apr 2018 21:39:48 GMT</pubDate>
    <dc:creator>sergio_duran</dc:creator>
    <dc:date>2018-04-05T21:39:48Z</dc:date>
    <item>
      <title>Issues with Sketched Symbols with Prompted Entry using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912254#M82983</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to insert a Sketched Symbol with prompted entry using iLogic but always get an error. I can actually insert Sketched Symbols without prompted entries and with prompted entries using API with the VBA editor. However, I need to do it in the iLogic editor. I can only insert Sketched Symbols without prompted entries with iLogic, but when I try the one with prompted entries, it fails.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that the PrompString is an array of Strings and I have used to options:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'This one works in the VBA Editor (API)&lt;/P&gt;&lt;P&gt;Dim oBalloonNo(0) As String&lt;BR /&gt;oBalloonNo(0) = "01"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;oBalloonNo = New String(0){"01"}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However none of them works in the iLogic editor. Do you know why? I know that the error is happening because of the PrompString option&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my code in iLogic (Error at the end)&lt;/P&gt;&lt;P&gt;SyntaxEditor Code Snippet&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get the active document - drawing&lt;/SPAN&gt;
&lt;SPAN&gt;oDoc&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get the Sheets collection&lt;/SPAN&gt;
&lt;SPAN&gt;oSheets&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;oDoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Sheets&lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get the first  sheet&lt;/SPAN&gt;
&lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;oSheets&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get the drawing views collection&lt;/SPAN&gt;
&lt;SPAN&gt;oDrawingViews&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DrawingViews&lt;/SPAN&gt;
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get the first drawing view of sheet #1 (Main View)&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oView&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;DrawingView&lt;/SPAN&gt;
&lt;SPAN&gt;oView&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;oDrawingViews&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get the referenced document - Assembly file&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;oAssyDoc = oView.ReferencedDocumentDescriptor.ReferencedDocument&lt;/SPAN&gt;
&lt;SPAN&gt;oAssyDoc&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisDrawing&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ModelDocument&lt;/SPAN&gt;

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get the set of Work Points&lt;/SPAN&gt;
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oAssyWorkPoints&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;WorkPoints&lt;/SPAN&gt;
&lt;SPAN&gt;oAssyWorkPoints&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;oAssyDoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;WorkPoints&lt;/SPAN&gt;
    
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get Work Point #71&lt;/SPAN&gt;
&lt;SPAN&gt;oWPo71&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oAssyWorkPoints&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;71&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;
                
&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Create centermarks/centerlines based on the Work Features&lt;/SPAN&gt;
&lt;SPAN&gt;oCMark71&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Centermarks&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;AddByWorkFeature&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;oWPo71&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;oView&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;

&lt;SPAN&gt;oCMark71&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Visible&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;False&lt;/SPAN&gt;

&lt;SPAN&gt;oIntent71&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;CreateGeometryIntent&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;oCMark71&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Get the Sketched Symbol "Balloons"&lt;/SPAN&gt;
&lt;SPAN&gt;oSketchSymbolDef&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oDoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;SketchedSymbolDefinitions&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Balloons&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Create a point for the text/symbol&lt;/SPAN&gt;
&lt;SPAN&gt;oTG&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;TransientGeometry&lt;/SPAN&gt;

&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;oPoint2D&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Point2D&lt;/SPAN&gt;
&lt;SPAN&gt;oPoint2D&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;oTG&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;CreatePoint2d&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;oIntent71&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;PointOnSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;X&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;oIntent71&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;PointOnSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Y&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;Dim oBalloonNo(0) As String&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;oBalloonNo(0) = "01"&lt;/SPAN&gt;

&lt;SPAN&gt;oBalloonNo&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;New&lt;/SPAN&gt; &lt;SPAN&gt;String&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;01&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;}

&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;SketchedSymbols.Add( SketchedSymbolDefinition As Variant, Position As Point2d, [Rotation] As Double, [Scale] As Double, [PromptStrings] As Variant ) As SketchedSymbol&lt;/SPAN&gt;
&lt;SPAN&gt;oSheet&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;SketchedSymbols&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Add&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;oSketchSymbolDef&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;oPoint2D&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;oBalloonNo&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is my VBA Code (API), it works!:&lt;/P&gt;&lt;P&gt;Public Sub InsertSketchedSymbol()&lt;/P&gt;&lt;P&gt;'Get the active document - drawing&lt;BR /&gt;Dim oDoc As Document&lt;BR /&gt;Set oDoc = ThisApplication.ActiveDocument&lt;/P&gt;&lt;P&gt;'Get the Sheets collection&lt;BR /&gt;Dim oSheets As Sheets&lt;BR /&gt;Set oSheets = oDoc.Sheets&lt;BR /&gt;'Get the first sheet&lt;BR /&gt;Dim oSheet As Sheet&lt;BR /&gt;Set oSheet = oSheets.Item(1)&lt;BR /&gt;'Get the drawing views collection&lt;BR /&gt;Dim oDrawingViews As DrawingViews&lt;BR /&gt;Set oDrawingViews = oSheet.DrawingViews&lt;BR /&gt;'Get the first drawing view of sheet #1 (Main View)&lt;BR /&gt;Dim oView As DrawingView&lt;BR /&gt;Set oView = oDrawingViews.Item(1)&lt;/P&gt;&lt;P&gt;'Get the referenced document - Assembly file&lt;BR /&gt;Dim oAssyDoc As Document&lt;BR /&gt;Set oAssyDoc = oView.ReferencedDocumentDescriptor.ReferencedDocument&lt;/P&gt;&lt;P&gt;'Get the set of Work Points&lt;BR /&gt;Dim oAssyWorkPoints As WorkPoints&lt;BR /&gt;Set oAssyWorkPoints = oAssyDoc.ComponentDefinition.WorkPoints&lt;BR /&gt;&lt;BR /&gt;'Get Work Point #71&lt;BR /&gt;Dim oWPo71 As WorkPoint&lt;BR /&gt;Set oWPo71 = oAssyWorkPoints.Item(71)&lt;BR /&gt;&lt;BR /&gt;'Create centermarks/centerlines based on the Work Features&lt;BR /&gt;Dim oCMark71 As Centermark&lt;BR /&gt;Set oCMark71 = oSheet.Centermarks.AddByWorkFeature(oWPo71, oView)&lt;/P&gt;&lt;P&gt;oCMark71.Visible = False&lt;/P&gt;&lt;P&gt;Dim oIntent71 As GeometryIntent&lt;BR /&gt;Set oIntent71 = oSheet.CreateGeometryIntent(oCMark71)&lt;/P&gt;&lt;P&gt;'Get the Sketched Symbol "Balloons"&lt;BR /&gt;Dim oSketchSymbolDef As SketchedSymbolDefinition&lt;BR /&gt;Set oSketchSymbolDef = oDoc.SketchedSymbolDefinitions.Item("Balloons")&lt;/P&gt;&lt;P&gt;'Create a point for the text/symbol&lt;BR /&gt;Dim oTG As TransientGeometry&lt;BR /&gt;Set oTG = ThisApplication.TransientGeometry&lt;/P&gt;&lt;P&gt;Dim oPoint2D As Point2d&lt;BR /&gt;Set oPoint2D = oTG.CreatePoint2d(oIntent71.PointOnSheet.X, oIntent71.PointOnSheet.Y)&lt;/P&gt;&lt;P&gt;Dim oBalloonNo(0) As String&lt;BR /&gt;oBalloonNo(0) = "01"&lt;/P&gt;&lt;P&gt;'SketchedSymbols.Add( SketchedSymbolDefinition As Variant, Position As Point2d, [Rotation] As Double, [Scale] As Double, [PromptStrings] As Variant ) As SketchedSymbol&lt;BR /&gt;Dim oSketchedSymbol As SketchedSymbol&lt;BR /&gt;Set oSketchedSymbol = oSheet.SketchedSymbols.Add(oSketchSymbolDef, oPoint2D, 0, 1, oBalloonNo)&lt;BR /&gt;End Sub&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 20:24:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912254#M82983</guid>
      <dc:creator>sergio_duran</dc:creator>
      <dc:date>2018-04-05T20:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Sketched Symbols with Prompted Entry using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912272#M82985</link>
      <description>&lt;P&gt;How many prompted entry fields are in your sketched symbol?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your code needs 1 string per prompted entry.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 20:29:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912272#M82985</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2018-04-05T20:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Sketched Symbols with Prompted Entry using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912313#M82987</link>
      <description>&lt;P&gt;Hi Justin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is only one in the Sketched Symbol.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My VBA (API) code successfully inserts the Sketched Symbol with the string "01". My iLogic fails.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 20:45:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912313#M82987</guid>
      <dc:creator>sergio_duran</dc:creator>
      <dc:date>2018-04-05T20:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Sketched Symbols with Prompted Entry using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912331#M82988</link>
      <description>&lt;P&gt;Hmmm. Doesn't sound right, and the code looks right to me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe it's a bugged instance of inventor? Maybe it doesn't like the point on the centermark?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What version of inventor are you using?&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 20:57:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912331#M82988</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2018-04-05T20:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Sketched Symbols with Prompted Entry using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912363#M82989</link>
      <description>&lt;P&gt;Hi Justin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The codes have been tested in Inventor Pro 2016 and 2018.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 21:11:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912363#M82989</guid>
      <dc:creator>sergio_duran</dc:creator>
      <dc:date>2018-04-05T21:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Sketched Symbols with Prompted Entry using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912429#M82992</link>
      <description>&lt;P&gt;Justin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also changed the WorkPoint and created a WorkAxis. Then, I tried with a Centerline instead of centermark.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the same result in Ilogic. If I try with a Sketched Symbol without prompted entry, it works. However, a Sketched Symbol with prompted entry doesn't work in iLogic.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using Centerline, I used either the StartPoint or EndPoint, but it doesn't work either&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 21:39:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7912429#M82992</guid>
      <dc:creator>sergio_duran</dc:creator>
      <dc:date>2018-04-05T21:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Sketched Symbols with Prompted Entry using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7928742#M83182</link>
      <description>&lt;P&gt;I solved the iLogic code. Basically I needed to declare (Dim As) all objects because I didn't know which one was failing and it worked. I had this issue before with another iLogic rule. In theory, when you use API objects in an iLogic rule, there is no need to declare them, but there are some objects (I don't know which ones) that will fail if the object is not declared before using methods and properties.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 17:06:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7928742#M83182</guid>
      <dc:creator>sergio_duran</dc:creator>
      <dc:date>2018-04-12T17:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with Sketched Symbols with Prompted Entry using iLogic</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7928894#M83187</link>
      <description>&lt;P&gt;I've ran into it a lot too, and it seems very hit or miss.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sometimes it seems a different instance of inventor won't have the same problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fool proof way to prevent is to definitely declare everything though.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Apr 2018 18:09:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/issues-with-sketched-symbols-with-prompted-entry-using-ilogic/m-p/7928894#M83187</guid>
      <dc:creator>MechMachineMan</dc:creator>
      <dc:date>2018-04-12T18:09:24Z</dc:date>
    </item>
  </channel>
</rss>

