Expand my Community achievements bar.

Get ready! An upgraded Experience League Community experience is coming in January.
Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Create profile script for visitors to a page

Avatar

Level 1

Hello, I am trying to create a segment with the help of a profile script. What I want to achieve is to create the profile for the people who visited a url of my site. To achieve this they told me that I must create a profile script that profile script will set the parameter "user.inversionesVisit = true" for any user who visits my URL. But I haven't created script profiles before. Does anyone know how this is done?

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

if(page.url.indexOf('us/en/services/tax/tax-function-future.html')!=-1){
inversionesVisit = "true";
}

 

@Gabnolasco you can use the above code inside profile script to create a segment. just change the url with your page url.

View solution in original post

2 Replies

Avatar

Employee Advisor

This video provides a very good walkthrough of how to create profile scripts

Avatar

Correct answer by
Employee Advisor

if(page.url.indexOf('us/en/services/tax/tax-function-future.html')!=-1){
inversionesVisit = "true";
}

 

@Gabnolasco you can use the above code inside profile script to create a segment. just change the url with your page url.