Reply to thread

Flash uses a hierarchy of visual elements.  When a parent element gets altered (e.g. stretched horizontally, made partially transparent, or simply hidden) then this change also applies to all of its children.


Therefore we cannot hide the thighs, because we're adding horse graphics to them.  Instead, we must hide the contents of the thighs (sprites showing human skin) and then add the new stuff on top.  So we must repeat the technique that we used previously for the penis:

[code]

for(var n:int = 0; n < him.leftLeg.numChildren; n++) {

   o = him.leftLeg.getChildAt(n);

   o.visible = false;

}

hthighl = new histhighl();

loader.loadManual(hthighl, him.leftLeg);

[/code]


Top


Are you 18 or older?

This website requires you to be 18 years of age or older. Please verify your age to view the content, or click Exit to leave.