Invalid Memory Acess for JavaFX ScrollBar on Snow-Leopard
        Posted  
        
            by Mike Caron
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Mike Caron
        
        
        
        Published on 2010-03-21T23:37:07Z
        Indexed on 
            2010/03/23
            1:31 UTC
        
        
        Read the original article
        Hit count: 348
        
I created the following JavaFX script, which when run, generates an Invalid memory access on Snow-Leopard. 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
                blockIncrement: 10
                vertical: false
            }
        ]
    }
    resizable: false
}
I'm using whatever JavaFX (at least 1.2) that comes with NetBeans 6.8:
Product Version: NetBeans IDE 6.8 (Build 200912041610)
Java: 1.6.0_17; Java HotSpot(TM) 64-Bit Server VM 14.3-b01-101
System: Mac OS X version 10.6.2 running on x86_64; MacRoman; en_US (nb)
        © Stack Overflow or respective owner