Adobe Launch Time on page event | Community
Skip to main content
winstonl3651471
Level 3
June 22, 2021
Question

Adobe Launch Time on page event

  • June 22, 2021
  • 1 reply
  • 2359 views

Hi,

I want to fire a tag in Adobe Launch based on time spent on the page. I know we can use the Time On Page Event type to do this. But, if I want the tag to fire on after different times on certain pages, can it be done via one rule or do I have to create multiple rules?

Eg. Page 1 - www.abc.com - fire tag after 10 seconds

      Page 2 - www.xyz.com - fire tag after 15 seconds

Do I need to create two different rules in Adobe Launch or Can it be done in one rule? if so, how?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

Jacob-DDdev
Level 6
June 22, 2021

Hi @winstonl3651471 ,

 

Though you can use the same rule for both pages, there are two issues you will have: First, someplace you will need conditional logic to distinguish which page you are on. Second, it will be difficult to determine which event happened the 10 second event of the 15 second event.

The easiest way to do this without custom code is setting up to separate rules. However, if you did want to use a single rule, you could write custom code using the same mechanism as the Time and Scroll Event extension which is the setTimeout() function. One approach would look like the following:

  • Create a new rule which fires conditionally on the pages that you are doing timed tracking
  • Within an Analytics "Set Variable" action write custom code similar to 

 

// time logic var time; if (isPage1) { time = 10; } else if (isPage2) { time = 15; } else { return; } // fire beacon logic setTimeout ( function() { // any additional logic s.t(); // or s.tl() } , time * 1000 );​

 

winstonl3651471
Level 3
June 23, 2021
Thank you for the response. I'll try the proposed approach.