Invalid Memory Acess for JavaFX ScrollBar
- by Mike Caron
I created the following JavaFX script, which when run, generates an Invalid memory access. What is it about javafx.scene.control.ScrollBar that is causing a memory failure?
Stage {
title: "Scroll View"
scene: Scene {
content: [
ScrollBar {
min: 0
max: 100
value: 0
…