• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

visible + vr-panorama-360

Engaged ,
Sep 03, 2020 Sep 03, 2020

Copy link to clipboard

Copied

var that = this;
that.ATt.visible = false;
//that.ATt.invisible();
that.A.addEventListener("click", fl_MouseClickHandler_1.bind(this));
function fl_MouseClickHandler_1(e) {
that.AT.visible = true;
}

 

why the movieclip(ATt) not visible in vr-panorama-360 file ??

 

TOPICS
Code , Error , How to

Views

202

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 03, 2020 Sep 03, 2020

Copy link to clipboard

Copied

because you make its visible propery false and then fail to change that.

 

if clicking A is supposed to make it visible again, in A's listener function, you need to use

 

that.ATt.visible = true;

 

not

 

that.AT.visible = true;

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Sep 03, 2020 Sep 03, 2020

Copy link to clipboard

Copied

I took notice of it and changed it .. Thank you
But I found that if Movie has the Panorama feature enabled, the code does not work
If I delete it, it works ???

I want movie clip (ATt) panorama also ?

Thank you

vr-panorama-360vr-panorama-360

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Sep 04, 2020 Sep 04, 2020

Copy link to clipboard

Copied

LATEST

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines