<?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: Ilogic rule to pop up a prompt in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815530#M18932</link>
    <description>&lt;P&gt;Actually I have an adding to delet any part that place through tool but if any user delete the part manually it's causing issue in model since it is leaving few ucs which generated from tool while placing&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I want to give a prompt message if it is placed through automation tool it should say "use idelete" button to delete part&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Jun 2024 16:26:38 GMT</pubDate>
    <dc:creator>vishnuteja14</dc:creator>
    <dc:date>2024-06-03T16:26:38Z</dc:date>
    <item>
      <title>Ilogic rule to pop up a prompt</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815481#M18930</link>
      <description>&lt;P&gt;I am looking for a prompt message to pop up when ever I press delete key from keyboard&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any ilogic rule ??&lt;/P&gt;&lt;P&gt;@&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 16:04:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815481#M18930</guid>
      <dc:creator>vishnuteja14</dc:creator>
      <dc:date>2024-06-03T16:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic rule to pop up a prompt</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815518#M18931</link>
      <description>&lt;P&gt;Catching key is low level Windows IO event.&lt;/P&gt;&lt;P&gt;You'll need to use Addin.&lt;/P&gt;&lt;P&gt;I won't do it this way.&lt;/P&gt;&lt;P&gt;Think about what happen when to want to delete text.&amp;nbsp; Every character will get a popup.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What are you trying to do?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 16:22:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815518#M18931</guid>
      <dc:creator>Frederick_Law</dc:creator>
      <dc:date>2024-06-03T16:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic rule to pop up a prompt</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815530#M18932</link>
      <description>&lt;P&gt;Actually I have an adding to delet any part that place through tool but if any user delete the part manually it's causing issue in model since it is leaving few ucs which generated from tool while placing&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I want to give a prompt message if it is placed through automation tool it should say "use idelete" button to delete part&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 16:26:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815530#M18932</guid>
      <dc:creator>vishnuteja14</dc:creator>
      <dc:date>2024-06-03T16:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic rule to pop up a prompt</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815582#M18933</link>
      <description>&lt;P&gt;Inside IV SDK is a Event Watcher.&lt;/P&gt;&lt;P&gt;It can should events triggered by different commands and action.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using that I found "AssemblyEvents.OnDelete" when deleting in assembly:&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/INVNTOR/2023/ENU/?guid=GUID-AD95C63D-9952-47BA-8EA5-452D96897EA5" target="_blank"&gt;https://help.autodesk.com/view/INVNTOR/2023/ENU/?guid=GUID-AD95C63D-9952-47BA-8EA5-452D96897EA5&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use that to check if the part is one added by your app and show dialog.&lt;/P&gt;&lt;P&gt;You don't want to show dialog on every del keypress.&lt;/P&gt;&lt;P&gt;You don't want to show dialog on every part/assembly delete.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 16:42:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815582#M18933</guid>
      <dc:creator>Frederick_Law</dc:creator>
      <dc:date>2024-06-03T16:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic rule to pop up a prompt</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815598#M18934</link>
      <description>&lt;P&gt;Can you elaborate i cannot understand this so your saying event will be trigger when I press delete key is it or if the object which I delete is from the app which I placed&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I right ?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 16:49:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815598#M18934</guid>
      <dc:creator>vishnuteja14</dc:creator>
      <dc:date>2024-06-03T16:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic rule to pop up a prompt</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815620#M18935</link>
      <description>&lt;P&gt;Please read the API page I've linked.&lt;/P&gt;&lt;P&gt;Again, don't even think about catching the del keypress.&lt;/P&gt;&lt;P&gt;You need to catch when something is deleted in assembly.&amp;nbsp; Not when del is pressed.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 16:59:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815620#M18935</guid>
      <dc:creator>Frederick_Law</dc:creator>
      <dc:date>2024-06-03T16:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Ilogic rule to pop up a prompt</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815681#M18936</link>
      <description>&lt;P&gt;Have you done any event handler before?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2024 17:28:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-pop-up-a-prompt/m-p/12815681#M18936</guid>
      <dc:creator>Frederick_Law</dc:creator>
      <dc:date>2024-06-03T17:28:44Z</dc:date>
    </item>
  </channel>
</rss>

