

2) Also, can we get the Bookmark Sidebar to appear while in Fullscreen mode (F11), one that only shows itself when you hover the mouse over it, but then it hides once your off it, basically have it work like this little guy.

Moderators: PDF-XChange Support, Daniel - PDF-XChange, Chris - PDF-XChange, Sean - PDF-XChange, Paul - PDF-XChange, Vasyl - PDF-XChange, Ivan - Tracker Software, Stefan - PDF-XChange
That's why it's a feature request, I was wondering/hoping if something like this could be added to a future build, I remember a while back someone here said that the fullscreen view would get an overhaul with many new features coming.Tracker Supp-Stefan wrote:As for full screen - it is unfortunately not possible to display the bookmarks in that mode
Glad to hear that! I'll pass along the suggestion for the different text sizes for consideration1) Man, can't believe I missed this, pretty much fixes my nit pick here, although a smaller font would be welcomed, Small, Medium, Large, adding a Very Small size would be awesome, if doable.
It might not seem like it, but this would require quite a bit of work, if it's even possible. This is because of the way that the Editor's UI works 'under the hood' - I'll pass it along and will see what can be done.That's why it's a feature request, I was wondering/hoping if something like this could be added to a future build, I remember a while back someone here said that the fullscreen view would get an overhaul with many new features coming.
This can be done by using software that can switch the active window (e.g. autohotkey). The key is to undock the bookmarks pane and make it floating before displaying it in full screen.Tracker Supp-Stefan wrote: ↑Thu Mar 23, 2017 9:41 am As for full screen - it is unfortunately not possible to display the bookmarks in that mode![]()
Code: Select all
F12::
IfWinActive, Bookmarks ahk_exe PDFXEdit.exe
{
MouseGetPos, Pos_X, Pos_Y
CenterPosX := Floor(A_ScreenWidth/2)
CenterPosY := Floor(A_ScreenHeight/2)
Click, %CenterPosX% %CenterPosY%
MouseMove, Pos_X, Pos_Y, 0
} else IfWinExist, Bookmarks ahk_exe PDFXEdit.exe
WinActivate, Bookmarks ahk_exe PDFXEdit.exe
else
Send ^b
return