HI,
I've got this code that I got from 3D carrousle at
Go To And Learn and I've done a lot of changes to it. It took me awhile, but I've learned a lot doing it.
Well now I'm stuck!!!
What I do is make the cons shrink down to 50% and go 50% alpha, but when I use my top menu to go to an about section, then to my drop down menu, I get a bug that turns 3 out of the 5 icons to 100% alpha. It's supposed to stay 50%.
You can check what I mean
hereThe code that I'm using for hiding is:
CODE
if(t != this._parent && t!= dDown)
{
var tw:Tween = new Tween(t,"_xscale",Strong.easeOut,t._xscale,50,1,true);
var tw2:Tween = new Tween(t,"_yscale",Strong.easeOut,t._yscale,50,1,true);
var tw3:Tween = new Tween(t,"_alpha",Strong.easeOut,100,50,1,true); // BMCC81 - This turns all icons dark once a icon is selected
var tw5:Tween = new Tween(lightOut,"_alpha",Strong.easeOut,100,50,1.5,true);
// This makes the invisibleBrowseBack go back into the right position
_level0.invBrowseBack.tween("_x",-10,.5,"easeInQuad"); // bmcc81}
var Move_invBrowseBack:Tween = new Tween(invBrowseBack, "_x", Regular.easeOut, -320, 0, 1, true); // bmcc81}
}
I've attached the whole file. I don't really think the problem is there. I'm just not sure where it could be.
I think the problem could be also in my drop down menu or my upperMenu????
I'm not really sure. If some one could spare the time and have a look it would be appreciated.
Thanks in advance