Exit Intent Popup Based On Cursor Movement?

Is there a way to sense where the cursor is on the screen and display a pop up when the cursors position is X/Y?

1 Like

Yes.

Create a group and position it at point x/y.

Then, have an object set to conditionally appear if that group is hovered (e.g., a 1px by 1px text element without any text in it). Then, set a work-flow to display the pop up when the object appears.

Note - the reason to include the object and not reference the original group is because it’ll appear on hover then disappear after the user hovers away. Abstracting it one step enables you to have the object appear permanently once the original group is hovered once.

5 Likes

Instead of a text element, you could also use a shape, possibly a 1 px line (alpha = 0) on the top, bottom, left, right. I’m not sure if that’s any different strategically, other than possibly faster rendering.

alpha 0

1 Like