blindIn.setSpeed(1000);
blindIn.setEffectClass("blindInClass");
postEffects.add(blindIn);
Bounce bounceHide = new Bounce();
add(bounceHide);
bounceHide.setDistance(100);
bounceHide.setTimes(3);
bounceHide.setMode(BounceMode.HIDE);
bounceHide.setDirection(EffectDirection.RIGHT);
bounceHide.setSpeed(1000);
postEffects.add(bounceHide);
Bounce bounceShow = new Bounce();
add(bounceShow);
bounceShow.setDistance(100);
bounceShow.setTimes(3);
bounceShow.setMode(BounceMode.SHOW);
bounceShow.setDirection(EffectDirection.LEFT);
bounceShow.setSpeed(1000);
postEffects.add(bounceShow);
Clip clip1 = new Clip();
add(clip1);