Quick Settings Lambdas Error

thyself

Member
Joined
Oct 7, 2021
Posts
8
Likes
1
If someone can help me on this one?
I use the available public studies templates, but the Quick Settings functions give error every time,

"java: cannot access javafx.scene.Node"
"class file for javafx.scene.Node not found"

// Quick Settings (Tool Bar and Popup Editor)
sd.addQuickSettings(Inputs.INPUT);
sd.addQuickSettings(new SliderDescriptor(MIDDLE_PERIOD, get("LBL_MIDDLE_PERIOD"), 20, 1, 9999, true, () -> Enums.Icon.SINE_WAVE.get()));
sd.addQuickSettings(new SliderDescriptor(ATR_PERIOD, get("LBL_ATR_PERIOD"), 10, 1, 9999, true, () -> Enums.Icon.SINE_WAVE.get()));

Can you help me understand what is going on and how to fix it?
 

igor.s

Well-known member
Joined
May 22, 2019
Posts
289
Likes
153
most likely reason is you don't have the javafx library in the path included.
 
Top