Crash with probably an OutOfBounds exception in the IDEs debugger.
When compiled with 2015r1, the same project runs fine. (in fact, I generated the application with 2015r1 yesterday and use it minutes ago without any Exception.
Obviously, the code center the front window and not obviously, at this moment I only have the built-in Retina display in this MacBook Pro.
BTW: how do I get back to the offending code (seen in the debugger) after I left the running application ?
If it’s about centering your Window, this is how I do it.
On OS X, it also handles the Dock (bottom, left, hidden etc.) and on what screen your Window is on:
[code]
// Center Window
// Get current Screen
Dim thisScreen As Integer
For i As Integer = 0 To ScreenCount - 1
If TrueWindow.Left >= Screen(i).Left And TrueWindow.Left < Screen(i).Left + Screen(i).Width And TrueWindow.Top >= Screen(i).Top And TrueWindow.Top < Screen(i).Top + Screen(i).Height Then
thisScreen = i
Exit For i
End If
Next i
// Set Bounds
Dim myBounds As New Realbasic.Rect
myBounds = Self.Bounds
myBounds.Left = (Screen(thisScreen).AvailableWidth \ 2) - (myBounds.Width \ 2) + Screen(thisScreen).AvailableLeft
If myBounds.Left < Screen(thisScreen).AvailableLeft Then
// Adjust if Window is wider than screen
myBounds.Left = Screen(thisScreen).AvailableLeft
End If
myBounds.Top = (Screen(thisScreen).AvailableHeight \ 2) - (myBounds.Height \ 2) + Screen(thisScreen).AvailableTop
If myBounds.Top < Screen(thisScreen).AvailableTop Then
// Adjust if Window is taller than screen
myBounds.Top = Screen(thisScreen).AvailableTop
End If
Self.Bounds = myBounds[/code]
[quote=258573:@Emile Schwarz]
BTW: how do I get back to the offending code (seen in the debugger) after I left the running application ?[/quote]
I haven’t found a proper way other than clicking the pencil icon at the top. But that leaves the App running and when you quit it, the tab closes.
There’s actually a center function for NSWindow because on Mac we’re used to a centered window being slightly above center. The declare probably isn’t all that difficult if you’re set on trying to get a consistent Mac feel.
I searched the whole yesterda’s afternoon to nothing.
I discovers minutes ago that the OS X code center in both Horizontal and Vertical the window. Nice !
Nota: I am never happy with some results. Sometimes I want to have the window centered, sometimes stick keft or right or At last I stay with my first idea or the behavior I used the most often and let the other cases to "a mouse move.