Hi all, hope you can help because I haven't got a clue

I am developing a roulette type game
I have the betting board inside a MC. All the events that have to do with the board happens inside this MC.
The problem is when the user places a chip (the function and chip placing happens inside the boardMC) the whole board offsets to the left and downward. It has something to do with the placement position of the chip because the offset is dependant on where you place the chip.

The most bizarre thing is that this does not happen on my machine but does happen on the client's machine. I have Win98 and they have Win2000 and WinMX if that means anything.

The chip is placed by calling a function that does a bunch of thins and then placed the chip as follow:

// place the chip in the same place as the betArea button
var xPo = this["betArea_"+butNum]._x+(xOffset);
var yPo = this["betArea_"+butNum]._y+(yOffset);
// level
this.zPo++;
// attach chip to display
if (this.chipType<=3) {
this.attachMovie("chip"+this.chipSets[this.chipType-1][this.EWlastChip], "chip"+this.chipNum, this.zPo);
// set position
this["chip"+this.chipNum]._x = xPo;
this["chip"+this.chipNum]._y = yPo;
//
}


I really hope someone can help

Thanks

P.