Wpis z mikrobloga

@ossj Możesz spróbować z:

if ( this.isHot() ) {
this.setVisible();
} else {
this.setInvisible();
}

lub

while (true) {
this.setVisible( this.isHot() );
}
  • Odpowiedz