The component has the following functions:

INSTRUCTIONS:

You can change some animations as you like by selecting movieclipsand the button in the assets folder. You can add an animation, since there are 100 frames for the loaderbar. You can also change the button.

PARAMETERS:

How to call preloaded swfs/jpg by using buttons for example:

pressCount = 0;
button1.onPress = function(){
	myClip._alpha = 0;
	pressCount++;
	_root.clip1._alpha = 100;
	if(pressCount == 1){
	   myClip=_root.clip1;
	   pressCount = 0;
	}
}

button2.onPress = function(){
	myClip._alpha = 0;//make the previous movie invisible
	pressCount++;
	_root.clip2._alpha = 100;//make the new movie visible
	_root.clip2.gotoAndPlay("begin");//to manipulate the loaded movie
	if(pressCount == 1){
	   myClip = _root.clip2;//fill the variable myClip
	   pressCount = 0;//set pressCount to 0.
	}
}