Jump to content
Search Community

What is a smart way to handle visibility of holderMC in container?:

ngrinchenko test
Moderator Tag

Recommended Posts

It was suggested to me that it is better to use a holder mc in the container rather than container:this

 

SWF I am importing has a transparent background so I would like my holderMC to have a transparent background as well. But if I do this then I can not see on the screen and loose it in the layout for a future modification.

I can not do it through code as it will affect the loading SWF.

What is the smart way to still visually have it present on the stage in the Flash layout, yet be invisible when the movie renders.

Is the only way would be to position it off the stage and manipulate the position of the loading SWF with x and y?

 


var loader_appLoader:SWFLoader;

if (loader_appLoader){
if(loader_appLoader.content){
  loader_appLoader.unload();
}
}

loader_appLoader = new SWFLoader("loadingAssets/appimgCollageF.swf",
	  {
	  estimatedBytes:1500000,
	  container:holderMC_applications,// more convinient and easier to manage if to place the LoaderMax into an empty mc (holderMovieClip)
			  // if not will work as well. Then the line container:holderMovieClip, has to be replaced with container:this,
			  // can be any size, can not be scaled as it distorts the content
	  onProgress:progressHandler_appLoader,
	  onComplete:completeHandler_appLoader,
	  centerRegistration:true,
	  alpha:1,
	  scaleMode:"none"
	  });

Link to comment
Share on other sites

It did not work out. I still see the green rectangular shape of the

"holderMC_applications"

May be it is not a reasonable request, but I figured that in months when I come back to look through what I have done on the site I might not remember I have used "holderMC_applications"

If I have it present on the screen it allows me to know that it is there, plus if I have registration set to center I can just drag it on screen for the position.

 

 

 

I am a novice and expect that my way if thinking what are useful and simple things is quite far away from what they really are. So if the method I seek to implement is not what people do please let me know.

What are expected workarounds on this or there is none, other people just make it invisible and live with it?

Link to comment
Share on other sites

turn the green shape into a movie clip INSIDE of holderMC_applications.

give it the instance name "bg"

 

your code would then be:

 

holderMC_applications.bg.visible = false;

 

and forget about setting the visible back to true, i must have misunderstood your question.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...