- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
//...
final AudioClip bar3Note = new AudioClip(Xylophone.class.getResource(THIRD_SOUND_NODE).toString());
final AudioClip bar4Note = new AudioClip(Xylophone.class.getResource(FOURTH_SOUND_NODE).toString());
final AudioClip bar5Note = new AudioClip(Xylophone.class.getResource(FIFTH_SOUND_NODE).toString());
//...
// ... Далее еще плачевнее...
bar2Group.setOnMousePressed(new EventHandler<MouseEvent>()
{
@Override
public void handle(MouseEvent me)
{
bar2Note.play();
}
});
bar3Group.setOnMousePressed(new EventHandler<MouseEvent>()
{
@Override
public void handle(MouseEvent me)
{
bar3Note.play();
}
});
bar4Group.setOnMousePressed(new EventHandler<MouseEvent>()
{
@Override
public void handle(MouseEvent me)
{
bar4Note.play();
}
});
// ...
// Ну и, наконец, полный П.З..Ц
bar1Group.setEffect(l);
bar2Group.setEffect(l);
bar3Group.setEffect(l);
bar4Group.setEffect(l);
bar5Group.setEffect(l);
bar6Group.setEffect(l);
bar7Group.setEffect(l);
bar8Group.setEffect(l);
Внедрение JFX без элементарных циклов хорошим не закончится.
Комментарии (0) RSS
Добавить комментарий