• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Adobe XD not maximized when start

Explorer ,
May 23, 2020 May 23, 2020

Copy link to clipboard

Copied

Hello,

 

I just installed Adobe XD and when I start it it's not maximized. I maximized it and then reopened it but still the same thing. It again goes to half on the screen.

 

Any ideas?

 

Thanks

TOPICS
Crash on mac , Crash on windows , Data loss , Design , Download install and licensing , How to , Import and export , Missing feature , Open and save docs , Plug-ins , Product performance , Prototyping , Share or publish

Views

1.3K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 23, 2020 May 23, 2020

You're on Windows, right? Sadly XD doesn't remember that you want it maximized, but you can resize the window to make it large, then close the window and new windows from then on should use that new window size. You can't use the maximize feature though, it won't remember that 😞

Votes

Translate

Translate
Community Expert ,
May 23, 2020 May 23, 2020

Copy link to clipboard

Copied

You're on Windows, right? Sadly XD doesn't remember that you want it maximized, but you can resize the window to make it large, then close the window and new windows from then on should use that new window size. You can't use the maximize feature though, it won't remember that 😞


— Adobe Certified Expert & Instructor at Noble Desktop | Web Developer, Designer, InDesign Scriptor

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 14, 2021 Jun 14, 2021

Copy link to clipboard

Copied

No, that's not working, the app start on the previous size, but then automatically resize itself to a tiny window in the home screen. so it add an extra step for each app start.

 

So after one year and this annoying issue not fixed?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Oct 11, 2020 Oct 11, 2020

Copy link to clipboard

Copied

That's not what happens in my case. When I resize the XD window manually, Windows won't remember it at all at startup. But when I maximize it, XD remembers it for about 1 second, however, after that, it refreshes the window size back to your standard size.

 

I'm 99% sure, that you override the Windows window size on startup! Please don't do that!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 14, 2021 Jun 14, 2021

Copy link to clipboard

Copied

If this is super annoying to you, I have made a small autohotkey script that fix this problem till Adobe releases a proper fix.

#Persistent
SetTimer, MaximizeAdobeXD, 10
return

MaximizeAdobeXD:
if WinExist("Adobe XD")
    WinGet, win_minmax, MinMax, Adobe XD
    if win_minmax = 0
        WinMaximize, Adobe XD
return

This automatically maximize the Adobe XD window so you don't have to do it every time you launch the app.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 15, 2021 Sep 15, 2021

Copy link to clipboard

Copied

LATEST

Thank you for sharing the idea of using AutoHotkey for this. I've gone ahead and tweaked the script to cover other scenarios like opening files since the title won't match "Adobe XD" exactly, avoiding matching the wrong windows (e.g. Chrome tabs with "Adobe XD" searches), and being less resource-intensive with a slightly larger timer:

 

#Persistent

;# less strict matching mode to allow
;# for cases like opening a file, which
;# changes the window title completely
SetTitleMatchMode 2

;# no need for instant maximization, 500ms is enough
;# to avoid consuming too many CPU cycles
SetTimer, MaximizeAdobeXD, 500

MaximizeAdobeXD:
    ;# get the HWND ID of the Adobe XD window for reuse
    ;# to avoid matching the same window on every instruction,
    ;# and AVOID matching other windows that have "Adobe XD"
    ;# in their titles (e.g. browser windows, explorer, etc.)
    xd := WinExist("Adobe XD ahk_class ApplicationFrameWindow")

    if (xd)
        ;# now use the previous HWND ID to control the maximization
        WinGet, win_minmax, MinMax, ahk_id %xd%
        if win_minmax = 0
            WinMaximize, ahk_id %xd%
    return

 

It's really unbelievable that such a basic functionality hasn't been baked into XD for such a long time - but I guess it's because XD was made with UWP and it seems like a really buggy technology.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines