f.Frame.popUp().setTargetApp()

f.Frame.popUp().setTargetApp(sectors)

개요

f.Frame.popUp().setTargetApp()를 통해 팝업을 열때 다른 앱의 시나리오를 사용할 수 있습니다.

다른 앱은 “앱 가져오기”를 통해 연결한 앱만 사용 가능합니다.

f.Frame은 이벤트 스크립트에서 사용할 수 있으며 디버거에서는 동작하지 않습니다.

"앱 가져오기" 기능(beta)은 Enterprise 플랜 이상의 초대 앱인 경우 사용하실 수 있습니다.

파라미터

파라미터명
필수여부
타입
제약사항
설명

AppID

Yes

String

다른 앱의 아이디를 전달한다.

예시

// 팝업을 열기 전 다른 App을 연결해줍니다.
let scenarioID =_collections.activeSector.scenarioid;
let stepID = _collections.activeSector.stepid;
let referAppID = _collections.activeSector.referAppID;
let pop = f.Frame.popUp(scenarioID,stepID);
pop.setTargetApp(referAppID);
pop.show();

Last updated

Was this helpful?