내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

what is satellite in adobe launch

Avatar

Community Advisor

Could you please explain "what is satellite in adobe launch"

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor and Adobe Champion

Satellite is basically a JavaScript object that is used by Adobe. It has some functions such the allow you to retrieve or set values, some extension leverage the Satellite Object to create debugging logs, etc.

 

For the most part, Adobe Launch will handle most of the functionality for you... Data Elements are stored as values in the Satellite object.

 

If you need to read a data element in some custom Javascript you can just use the getVar function to retrieve it:

var myValue = _satellite.getVar('data element name');

You could also in theory set a value into Satellite with setVar if you really have a use case for this.

 

Here is more information on Satellite Objects: 

https://experienceleague.adobe.com/docs/experience-platform/tags/client-side/satellite-object.html?l...

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Community Advisor and Adobe Champion

Satellite is basically a JavaScript object that is used by Adobe. It has some functions such the allow you to retrieve or set values, some extension leverage the Satellite Object to create debugging logs, etc.

 

For the most part, Adobe Launch will handle most of the functionality for you... Data Elements are stored as values in the Satellite object.

 

If you need to read a data element in some custom Javascript you can just use the getVar function to retrieve it:

var myValue = _satellite.getVar('data element name');

You could also in theory set a value into Satellite with setVar if you really have a use case for this.

 

Here is more information on Satellite Objects: 

https://experienceleague.adobe.com/docs/experience-platform/tags/client-side/satellite-object.html?l...

Avatar

Community Advisor

Thanks a lot @Jennifer_Dungan