throws VetoDragException {
if(context.mouseX<=480&&context.mouseX>=380&&context.mouseY<=400&&context.mouseY>=300)
{
if(context.draggable==chip10){
chipPairsPlus=10;
Image chip=new Image(chipImages.chip10());
chip.setPixelSize(60, 60);
backgroundArea.add(chip);
backgroundArea.setWidgetPosition(chip, 400,320);
}
else if(context.draggable==chip20){
chipPairsPlus=20;
Image chip=new Image(chipImages.chip20());
chip.setPixelSize(60, 60);
backgroundArea.add(chip);
backgroundArea.setWidgetPosition(chip, 400,320);
}
else if(context.draggable==chip50){
chipPairsPlus=50;
Image chip=new Image(chipImages.chip50());
chip.setPixelSize(60, 60);
backgroundArea.add(chip);
backgroundArea.setWidgetPosition(chip, 400,320);
}
else if(context.draggable==chip100){
chipPairsPlus=100;
Image chip=new Image(chipImages.chip100());
chip.setPixelSize(60, 60);
backgroundArea.add(chip);
backgroundArea.setWidgetPosition(chip, 400,320);
}
PairsPlusBtn.setEnabled(true);
if(chipAnte!=0){
PairsPlusAnteBtn.setEnabled(true);
PairsPlusBtn.setEnabled(false);
AnteBtn.setEnabled(false);
}
}
if(context.mouseX<=600&&context.mouseX>=500&&context.mouseY<=400&&context.mouseY>=300)
{
if(context.draggable==chip10){
chipAnte=10;
Image chip=new Image(chipImages.chip10());
chip.setPixelSize(60, 60);
backgroundArea.add(chip);
backgroundArea.setWidgetPosition(chip, 520,320);
}
else if(context.draggable==chip20){
chipAnte=20;
Image chip=new Image(chipImages.chip20());
chip.setPixelSize(60, 60);
backgroundArea.add(chip);
backgroundArea.setWidgetPosition(chip, 520,320);
}
else if(context.draggable==chip50){
chipAnte=50;
Image chip=new Image(chipImages.chip50());
chip.setPixelSize(60, 60);
backgroundArea.add(chip);
backgroundArea.setWidgetPosition(chip, 520,320);
}
else if(context.draggable==chip100){
chipAnte=100;
Image chip=new Image(chipImages.chip100());
chip.setPixelSize(60, 60);
backgroundArea.add(chip);
backgroundArea.setWidgetPosition(chip, 520, 320);
}
AnteBtn.setEnabled(true);