ID:132633
 
Dragging past the start bar in "fullscreen mode" just doesn't seem to work. You figure it being treated at least to some degree as a fullscreen application that it would allow moving child windows to the actual bottom of the screen instead of that some odd 30 pixel gap it has.
If you want your game to go full screen, you can do this at player Login.

Disable the Title bar and optionally the status bar for your window.

winset(src, "default", "is-maximized=true")
winshow(src, "default", 1)

If your talking about dragging full screen windows, I'm not sure what to make of the request (or complaint).

ts
In response to Tsfreaks
You're not understanding the question. I meant when resizing the window in FS mode, we should be able to drag it all the way to the bottom of the screen instead of where the task-bar exists outside.
In response to Leur
No, I didn't understand your question. In hindsight, you didn't actually ask one though, right? :)

From what I can gather, you want to drag a restored window over the task bar instead of under it.

As far as I know, you cannot achieve this behavior with a BYOND window. I know windows apps can do it if they are set to "top-most" but I haven't see a way to do this with a BYOND window yet.

Someone will correct me if I'm wrong and perhaps we will both learn something today. :)

ts

In response to Tsfreaks
Tsfreaks wrote:
No, I didn't understand your question. In hindsight, you didn't actually ask one though, right? :)

Whoops lol, tired atm.

From what I can gather, you want to drag a restored window over the task bar instead of under it.

If you are trying to resize a window out of "Full screen mode your cursor stops at the task bar on windows. In most Full Screen games you can drag to the bottom of the screen but with Byond it stops the cursor as if the task bar existed.

As far as I know, you cannot achieve this behavior with a BYOND window. I know windows apps can do it if they are set to "top-most" but I haven't see a way to do this with a BYOND window yet.

Tis why this post is in Features ;p

Sidenote: Eh, I'm tired, I'm going to bed and see if I mis-read something when I wake up.
In response to Leur
Leur wrote:
If you are trying to resize a window out of "Full screen mode your cursor stops at the task bar on windows. In most Full Screen games you can drag to the bottom of the screen but with Byond it stops the cursor as if the task bar existed.

ah. So your scenario is that you open your default window and set it to full screen and then you open a new window which is in a restored state. When you drag the new window to the bottom of the screen, you are blocked by an invisible barrier (The task bar) in your full screen game which is in fact, a little wonky.

Here's a Repro.

1. Launch
2. Drag window to bottom of screen and note where you grab a hold of the title bar. The mouse pointer does in fact get blocked by the taskbar behind the fullscreen (default) window.

The repro can be reproduced by simply dragging any normal window (BYOND or not) down to the task bar. The cursor does not pass when dragging.

If this is your repro, do you really have a scenario where dragging down another 1/4" is important? I'm curious to what it might be.

ts