I suspect you are calling Mouse.setCursor(), correct? That method should probably be protected - we'll address this in a later release.
To solve your problem, I'd suggest using a StackPane. Make your window content the first component, and then add a component that will act as a "glass pane" on top of that; make this component invisible by default and set its cursor to the WAIT cursor. When you want to "block" your app, make the glass pane visible. This will have the effect of showing the WAIT cursor as well as blocking mouse input to your app. Greg On Tuesday, March 17, 2009, at 02:31PM, "Greg Brown" <[email protected]> wrote: >Forwarding to pivot-dev for further discussion. > >On Tuesday, March 17, 2009, at 02:14PM, "Mathias Versichele" ><[email protected]> wrote: >> >>Hello, calling the setCursor(Cursor.WAIT) method doesn't have any >>effect. Just to be clear, I'm calling this from within the gui. Also, >>calling setEnabled(false) for any component immediately renders >>without any trouble. What might I be doing wrong ? >>--~--~---------~--~----~------------~-------~--~----~ >>You received this message because you are subscribed to the Google Groups >>"pivot-toolkit" group. >>To post to this group, send email to [email protected] >>To unsubscribe from this group, send email to >>[email protected] >>For more options, visit this group at >>http://groups.google.com/group/pivot-toolkit?hl=en >>-~----------~----~----~----~------~----~------~--~--- >> >> >> > >
