<?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: How to trigger custom event in adobe launch rules in Adobe Experience Platform Launch Questions</title>
    <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453931#M3964</link>
    <description>&lt;P&gt;Thank you for the confirmation. I will let my developers know to pass the native custom event and then configure the rule in Launch to listen to it.&lt;/P&gt;</description>
    <pubDate>Mon, 30 May 2022 13:41:54 GMT</pubDate>
    <dc:creator>asheth2295</dc:creator>
    <dc:date>2022-05-30T13:41:54Z</dc:date>
    <item>
      <title>How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289528#M1541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We have a scenario where a custom event would be triggered. Now I want to fire a tag when the custom event is triggered. What I did is: &lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Created a new rule.&lt;/LI&gt;&lt;LI&gt;In events section I used Custom Event from the dropdown.&lt;/LI&gt;&lt;LI&gt;filled &lt;STRONG&gt;Custom Event Type&lt;/STRONG&gt; with &lt;STRONG&gt;email_submit&lt;/STRONG&gt;(This is the &lt;STRONG&gt;custom event&lt;/STRONG&gt; triggered via &lt;STRONG&gt;$(window).trigger('email_submit')&lt;/STRONG&gt;).&lt;/LI&gt;&lt;LI&gt;In then section I am triggering one of the extensions(DoubleClick Floodlight).&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; if the use page top event then everything works fine but not with custom event. Please let me know If I am doing something wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 11:34:55 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289528#M1541</guid>
      <dc:creator>susheel</dc:creator>
      <dc:date>2019-01-08T11:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289529#M1542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are a few things that I'd try.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) I tend to use vanilla JS.&amp;nbsp; Try one of these (from the JS console) to see if it solves the issue.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this if you want to pass a detail payload with the event. &lt;/P&gt;&lt;P&gt;&lt;CODE class="language-markup" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: none; color: inherit;"&gt;&lt;CODE class="language-javascript script token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit;"&gt;&amp;nbsp; window&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;.&lt;/CODE&gt;&lt;CODE class="token function" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit;"&gt;dispatchEvent&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;(&lt;/CODE&gt;&lt;CODE class="keyword token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #0077aa;"&gt;new&lt;/CODE&gt; &lt;CODE class="token class-name" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit;"&gt;CustomEvent&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;(&lt;/CODE&gt;&lt;CODE class="string token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #669900;"&gt;"email_submit"&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;,&lt;/CODE&gt; &lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;{&lt;/CODE&gt;&lt;BR /&gt;&amp;nbsp; detail&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;:&lt;/CODE&gt; &lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;{&lt;/CODE&gt; foo&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;:&lt;/CODE&gt; &lt;CODE class="string token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #669900;"&gt;"1", &lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;bar&lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;:&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; &lt;/SPAN&gt;&lt;CODE class="string token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #669900;"&gt;"2"&lt;/CODE&gt;&lt;/CODE&gt; &lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;}&lt;/CODE&gt;&lt;BR /&gt;&amp;nbsp; &lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;}&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;)&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;)&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;;&lt;/CODE&gt;&lt;/CODE&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or this if you just want the event triggered. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;&amp;nbsp; window&lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;.&lt;/CODE&gt;&lt;CODE class="token function" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit;"&gt;dispatchEvent&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;(&lt;/CODE&gt;&lt;CODE class="keyword token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #0077aa;"&gt;new&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; &lt;/SPAN&gt;&lt;CODE class="token class-name" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit;"&gt;CustomEvent&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;(&lt;/CODE&gt;&lt;CODE class="string token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #669900;"&gt;"email_submit"&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;&lt;CODE class="punctuation token" style="background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;)&lt;/CODE&gt;&lt;CODE class="punctuation token" style="background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;)&lt;/CODE&gt;&lt;CODE class="punctuation token" style="background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;;&lt;/CODE&gt;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that if you need to support IE 11, there is a polyfill required for `CustomEvent`.&amp;nbsp; You'll find it here: &lt;A href="https://gomakethings.com/custom-events-with-vanilla-javascript/" title="https://gomakethings.com/custom-events-with-vanilla-javascript/"&gt;https://gomakethings.com/custom-events-with-vanilla-javascript/&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2) In DTM, you could not catch a custom event on `window`.&amp;nbsp; I'm not sure if that's still the case with Launch. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try dispatching on&lt;STRONG&gt; `body`&lt;/STRONG&gt; or any element of your choice. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;&amp;nbsp; &lt;STRONG&gt;body&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;.&lt;/CODE&gt;&lt;CODE class="token function" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit;"&gt;dispatchEvent&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;(&lt;/CODE&gt;&lt;CODE class="keyword token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #0077aa;"&gt;new&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; &lt;/SPAN&gt;&lt;CODE class="token class-name" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit;"&gt;CustomEvent&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;(&lt;/CODE&gt;&lt;CODE class="string token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #669900;"&gt;"email_submit"&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;,&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; &lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;{&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;&amp;nbsp; detail&lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;:&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; &lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;{&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; foo&lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;:&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; &lt;/SPAN&gt;&lt;CODE class="string token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #669900;"&gt;"1", &lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;bar&lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;:&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; &lt;/SPAN&gt;&lt;CODE class="string token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #669900;"&gt;"2"&lt;/CODE&gt;&lt;/CODE&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt; &lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;}&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;}&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;)&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;)&lt;/CODE&gt;&lt;CODE class="punctuation token" style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, monospace; background: inherit; color: #999999;"&gt;;&lt;/CODE&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You'll need to update your rule in Launch to trigger on &lt;STRONG&gt;`specific element`&lt;/STRONG&gt; and `&lt;STRONG&gt;body`&lt;/STRONG&gt; as shown below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Screen Shot 2019-01-08 at 8.48.21 AM.png"&gt;&lt;img src="https://experienceleaguecommunities.adobe.com/t5/image/serverpage/image-id/15398i197D102C890E06C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2019-01-08 at 8.48.21 AM.png" alt="Screen Shot 2019-01-08 at 8.48.21 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 14:51:04 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289529#M1542</guid>
      <dc:creator>Stewart_Schilling</dc:creator>
      <dc:date>2019-01-08T14:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289530#M1544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a lot of code written with window trigger in analytics. It would be tough to modify all.&lt;/P&gt;&lt;P&gt;It works fine with body custom events. &lt;IMG src="https://experienceleaguecommunities.adobe.com/legacyfs/online/emoticons/sad.png" /&gt; &lt;IMG src="https://experienceleaguecommunities.adobe.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also jquery way of triggering custom event is not working &lt;IMG src="https://experienceleaguecommunities.adobe.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 16:02:30 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289530#M1544</guid>
      <dc:creator>susheel</dc:creator>
      <dc:date>2019-01-08T16:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289531#M1545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe try `specific elements` and `window`?  I haven't gotten around to&lt;/P&gt;&lt;P&gt;trying this in Launch.  I'm curious to see if it works for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 16:09:31 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289531#M1545</guid>
      <dc:creator>Stewart_Schilling</dc:creator>
      <dc:date>2019-01-08T16:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289532#M1546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;window doesn't work &lt;IMG src="https://experienceleaguecommunities.adobe.com/legacyfs/online/emoticons/sad.png" /&gt; &lt;IMG src="https://experienceleaguecommunities.adobe.com/legacyfs/online/emoticons/sad.png" /&gt; &lt;IMG src="https://experienceleaguecommunities.adobe.com/legacyfs/online/emoticons/sad.png" /&gt; We are migrating from SIGNAL to LAUNCH. custom window events work fine there but it is not working here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 16:21:54 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289532#M1546</guid>
      <dc:creator>susheel</dc:creator>
      <dc:date>2019-01-08T16:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289533#M1547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could probably create a bit of code that would act as a relay.&lt;/P&gt;&lt;P&gt;I would listen for specific custom events on `window` then re-package and dispatch them on an element of your choice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2019 19:26:42 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289533#M1547</guid>
      <dc:creator>Stewart_Schilling</dc:creator>
      <dc:date>2019-01-08T19:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289534#M1548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah I can do that but i am not sure how many custom events we have.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2019 09:23:27 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289534#M1548</guid>
      <dc:creator>susheel</dc:creator>
      <dc:date>2019-01-09T09:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289535#M1549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For now I have done as below. I will keep on adding all events as I find.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_154702897216051" data-renderedposition="50_8_1042_48" jivemacro_uid="_154702897216051" modifiedtitle="true"&gt;&lt;P&gt;$(window).on('event1 event2 event3',function(e) {&lt;/P&gt;&lt;P&gt;&amp;nbsp; document.body.dispatchEvent(new CustomEvent(e.type));&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2019 10:17:20 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289535#M1549</guid>
      <dc:creator>susheel</dc:creator>
      <dc:date>2019-01-09T10:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289536#M1550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BTW, I spoke with Aaron at Adobe regarding this.&amp;nbsp; He confirmed that it does not presently work on window (document is the top level object at present).&amp;nbsp; He confirmed that listening on window would be desirable and that he would make the case for a fix.&amp;nbsp; At some point in the near future, you should be able to remove that patch and start listening on window. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jan 2019 19:45:37 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289536#M1550</guid>
      <dc:creator>Stewart_Schilling</dc:creator>
      <dc:date>2019-01-09T19:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289537#M1551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much for your help and registering the case with window object &lt;IMG src="https://experienceleaguecommunities.adobe.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2019 10:30:29 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289537#M1551</guid>
      <dc:creator>susheel</dc:creator>
      <dc:date>2019-01-10T10:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289538#M1552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;SPAN style="color: #333333; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; font-size: 16px;"&gt;window doesn't work&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;It's not you, it's us. As @stewarts16448458 noted, we need to fix/improve it on our side and I've logged it internally as an issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That said, even when the Custom Event event type begins to support detecting custom events dispatched off the window object, it still probably won't detect events triggered using jQuery (e.g., $(window).trigger('email_submit')). This is because jQuery has its own eventing system that's separate from the native eventing system. Launch only detects events created using the native APIs and doesn't cater to any particular library like jQuery.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2019 22:47:33 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289538#M1552</guid>
      <dc:creator>Aaronius9er9er9</dc:creator>
      <dc:date>2019-01-10T22:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289539#M1553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All our custom events are written in jQuery. Migration is getting tough for us.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2019 14:02:36 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/289539#M1553</guid>
      <dc:creator>susheel</dc:creator>
      <dc:date>2019-01-11T14:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453075#M3948</link>
      <description>&lt;P&gt;Does &lt;SPAN&gt;&amp;nbsp;listening on window work now in Adobe Launch ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Does above work? i.e&amp;nbsp;even when the Custom Event event type begins to support detecting custom events dispatched off the window object, it still probably won't detect events triggered using jQuery&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 22:32:38 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453075#M3948</guid>
      <dc:creator>asheth2295</dc:creator>
      <dc:date>2022-05-23T22:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453521#M3955</link>
      <description>&lt;P&gt;Curious to know where do you add this? As we are also migrating from signal to launch?&lt;/P&gt;</description>
      <pubDate>Thu, 26 May 2022 23:17:35 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453521#M3955</guid>
      <dc:creator>asheth2295</dc:creator>
      <dc:date>2022-05-26T23:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453749#M3958</link>
      <description>&lt;P&gt;I believe Launch's Custom Event event still doesn't work with jQuery's triggered custom events. I assume that this is because jQuery's custom events are not the native Custom Events (reference:&amp;nbsp;&lt;A href="https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent" target="_blank" rel="noopener"&gt;https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent/CustomEvent&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;If my assumption is correct, then you will need to make sure you're dispatching Custom Events, not jQuery events, in order for Launch's Custom Event event to detect them.&lt;/P&gt;</description>
      <pubDate>Sat, 28 May 2022 14:12:41 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453749#M3958</guid>
      <dc:creator>yuhuisg</dc:creator>
      <dc:date>2022-05-28T14:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453931#M3964</link>
      <description>&lt;P&gt;Thank you for the confirmation. I will let my developers know to pass the native custom event and then configure the rule in Launch to listen to it.&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 13:41:54 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453931#M3964</guid>
      <dc:creator>asheth2295</dc:creator>
      <dc:date>2022-05-30T13:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453934#M3965</link>
      <description>&lt;P&gt;What about "window".? Does it work on listening to custom events? Below is an example&lt;/P&gt;&lt;PRE&gt;window.dispatchEvent(new CustomEvent("email_submit"));&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 May 2022 13:44:37 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453934#M3965</guid>
      <dc:creator>asheth2295</dc:creator>
      <dc:date>2022-05-30T13:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger custom event in adobe launch rules</title>
      <link>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453955#M3967</link>
      <description>&lt;P&gt;Yes, that works too.&lt;/P&gt;</description>
      <pubDate>Mon, 30 May 2022 15:27:47 GMT</pubDate>
      <guid>https://experienceleaguecommunities.adobe.com/t5/adobe-experience-platform-launch/how-to-trigger-custom-event-in-adobe-launch-rules/m-p/453955#M3967</guid>
      <dc:creator>yuhuisg</dc:creator>
      <dc:date>2022-05-30T15:27:47Z</dc:date>
    </item>
  </channel>
</rss>

