Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

thomas_amsler
thomas_amsler
Offline

Badges

Badges
27

Accepted Solutions

Accepted Solutions
26

Likes Received

Likes Received
247

Posts

Posts
159

Discussions

Discussions
42

Questions

Questions
117

Ideas

Ideas
31

Blog Posts

Blog Posts
0
Top badges earned by thomas_amsler
Customize the badges you want to showcase on your profile
Re: Disable Activity Map through config - Adobe Experience Platform Data Collection 08-08-2019
Do you have any JS errors on the page that might prevent this to be executed?On our property we have the radio button set to Before instead of After. Maybe this has an impact here.

Views

19.7K

Likes

0

Replies

0
Re: Disable Activity Map through config - Adobe Experience Platform Data Collection 05-08-2019
I am not an Adobe employee, so I also have no exact dates. For now you can add this to your custom code section where you also would add plugins, this disables it completely:if (typeof s.ActivityMap === 'object') { s.ActivityMap.link = function() { return false; };}

Views

19.7K

Likes

0

Replies

0
Re: How to track the click button through Launch data element and pass attribute value to Adobe Analytics? - Adobe Experience Platform Data Collection 24-07-2019
I can try to outline how I would do it with a custom script, though I have to say, custom attributes are not recommended, you should either use the "data-" prefix or introduce a separate namespace with a linked DTD.So I assume you have a rule that get's triggered when this button is clicked.In the "Set Variables" action within the custom code you can access this button "event.target". From this you can access the attribute by name "event.target.getAttribute('cst-text')" and apply it to an eVar o...

Views

11.0K

Likes

0

Replies

0
Execution Order of two different direct call rules - Adobe Experience Platform Data Collection 22-07-2019
On our homepage we have some teasers with internal campaigns that we track when the page loads. There is one additional teaser that loads data via an ajax call. So the page load rule, we are using a direct call rule for this, called "page-load". The found internal campaign codes (in the DOM) are sent in a list variable together with an event. The success handler of this ajax call also executes a direct call rule called "ad-view" and also uses the same list variable and event as it is also an int...

Views

1.4K

Likes

0

Replies

0
Re: Launch create archive appending additional forward slash - Adobe Experience Platform Data Collection 09-07-2019
We also use the zipped archive soltion and it works with a path starting with slash and ending without. Are you sure that you maybe have some other characters in the field that could cause this?

Views

2.0K

Likes

0

Replies

0
Re: Edit Rule UI - Adobe Experience Platform Data Collection 26-06-2019
There is an idea regarding this already: Include the name of the Rule in configuration screens So this should be available soon...

Views

6.2K

Likes

0

Replies

0
Re: Link tracking and page views - Launch implementation on iOS app - Adobe Experience Platform Data Collection 26-06-2019
If you are talking about a native app, iOS or Android, you should add the SDK for the operating system and use the API provided with it to do the tracking. I wasn't even aware that you could use Launch Scripts in an app, unless you are using PhoneGap/Cordova and have a plain webapp.

Views

2.7K

Likes

0

Replies

0
Re: Success Event is firing twice on rule? - Adobe Experience Platform Data Collection 26-06-2019
What version the the Analytics Extension do you use. There was a bug with clear variables that was only fixed in the latest version but was in the library in 2 or 3 previous versions:What are possible reasons why ClearVariable fails?

Views

3.0K

Likes

2

Replies

0
Re: Can Both DTM and Launch Be On A Site? - Adobe Experience Platform Data Collection 26-06-2019
As Ben mentioned both DTM and Launch use the _satellite object so the script that is loaded last will overwrite this object and thus also overwrite the settings like report suite.

Views

2.3K

Likes

0

Replies

0
Re: Enters Viewport event in Adobe Launch - Adobe Experience Platform Data Collection 26-06-2019
When you refresh the page or navigate back to it from an other page, the rules are loaded anew. Launch doesn't store this for longer than one page load. The easiest way to achieve this, is to add a custom code action where you store a flag in the sessionStorage object of the browser and to check for it in a condition if the rule should be triggered.

Views

3.0K

Like

1

Replies

0