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

Hide movie clip objects

New Here ,
Jun 14, 2021 Jun 14, 2021

Copy link to clipboard

Copied

Sir,
kgld
I find your answers from Adobe forum.

I need main movie clip objects hide from sub movie clip.

 

I use multiple movie clip. 

Main movie clip name (main_mc).

from main_mc inside more sub movie clip name have (mc_1, mc_2, mc_3 ,mc-4,mc_5 ,mc_6,mc_7 and mc_8).

 

Movie clip (mc_4 ) inside layer 3 frame 2 to 75 flv embedded.

Layer 4 and frame 1 hotspots movie clip have(mc_15) with button symbol. And layer 4 frame 76 another movie clip have (video_mc)

mc_15 single click External SWF loaded. mc_15 Double click unload the SWF with call for video_mc.its working but mc_1 ,mc_2 and mc_3 are visible front of the video.

How to hide or disable mc_1, mc_2 and mc_3.

 

Thanks

Sa

 

 

Views

387

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 ,
Jun 15, 2021 Jun 15, 2021

Copy link to clipboard

Copied

if you code's on the main timeline, after mc_1 etc exist, you can use:

 

this.main_mc.mc_1.visible = false;  // true to make visible

etc

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
New Here ,
Jun 15, 2021 Jun 15, 2021

Copy link to clipboard

Copied

Sir,

Thanks for your reply.

 

I Copy and paste the code  

this.main_mc.mc_1.visible = false;   for  mc_4 inside the layer 1.

but mc_1 , visible front of the video.

 

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 ,
Jun 15, 2021 Jun 15, 2021

Copy link to clipboard

Copied

is the code on the main timeline?

are there error messages?

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
New Here ,
Jun 15, 2021 Jun 15, 2021

Copy link to clipboard

Copied

Sir

I use that code from main movie clip ( main_mc) main time layer.
its working fine.


I use that code from movie clip ( mc_4) main time layer.
movie clip (mc_1) objects are visible and the object not hidden.here no compiler errors.


But need main movie clip object hide in sub movie clip.

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 ,
Jun 15, 2021 Jun 15, 2021

Copy link to clipboard

Copied

if the code is on the mc_4 timeline, use

 

this.visible=false;  // to make mc_4 not visible

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
New Here ,
Jun 16, 2021 Jun 16, 2021

Copy link to clipboard

Copied

Sir,

I check the code on the mc_4 time line. It's working fine.

I need main movie clip objects keep it hidden from the sub movie clip.

 

Movie clip arrangements

main_mc

mc_1(next button for video in mc_4)

 

mc_2(previous button for video in mc_4)

 

mc_3( background for the both button)

Movie clip (mc_4 ) inside layer 3 frame 2 to 75 flv embedded.

Layer 4 and frame 1 hotspots movie clip have(mc_15) with button symbol. And layer 4 frame 76 another movie clip have (video_mc)

mc_15 single click External SWF loaded. mc_15 Double click unload the SWF with call for video_mc.its working but mc_1 ,mc_2 and mc_3 are visible front of the video.

How to hide or disable mc_1, mc_2 and mc_3.

 

I found your answers for this related.

(you wouldn't want to remove the parent because you want to return to it. you can enable and disable the parents _visible (or visible) property or its position.)

I need same like this and as3 code.

 

 

 

 

 

 

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 ,
Jun 16, 2021 Jun 16, 2021

Copy link to clipboard

Copied

LATEST

i'm confused.  i don't understand whether you're asking one question and trying to solve one problem, or if you've solved the original problem and you're asking other questions about other problems.

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