Ok, I have a function that creates a button, it takes the paramaters
bX, bY, bcColor, bbColor, bHeight, bWidth, bHandle;
here is my function
function createButton(bX:Number, bY:Number, bcColor:Number, bbColor:Number, bHeight:Number, bWidth:Number, bHandle:MovieClip)
{
bHandle = this.createEmptyMovieClip("bHandle", this.getNextHighestDepth());
bHandle.lineStyle(1, bbColor, 100);
bHandle.beginFill(bcColor, 100);
bHandle.moveTo(0, 0);
bHandle.lineTo(bWidth, 0);
bHandle.lineTo(bWidth, bHeight);
bHandle.lineTo(0, bHeight);
bHandle.lineTo(0, 0);
bHandle.endFill();
bHandle._x = bX;
bHandle._y = bY;
return bHandle;
}
var Handle:MovieClip;
createButton(400, 250, 0xFFFF99, 0xFFFF99, 30, 80, Handle);
//X, Y, Colour, Colour, Height, Width, Handle
Handle._visible = false;
some reason when I try to hide Handle, it doesn’t do it, & trace’s dont do anything either
it is suppost to create the button & store it in any handle I give it
Thanks in advance