Is there a way to tell SongBeamer not to start up full-screen, but to remember the size the window was manually set to the last time it was used?
It is tedious to have to click "restore" everytime one starts SongBeamer.
How does one start SongBeamer NOT in full-screen?
SongBeamer always starts in full screen mode. You could use a macro to set the window style to restored, and then set the desired position. Save the following macro to a file (for example startup.sbpas):
Start SongBeamer with the /autorun command line switch and pass the name of the Script. For example:
You can change the "Target" of the shortcut in the start menu. You will probably need to modify the file names of the example.
Code: Select all
Application.MainForm.WindowState := wsNormal;
Application.MainForm.SetBounds(0, 0, 400, 300); // left, top, width, height
Code: Select all
"C:\Program Files\SongBeamer\SongBeamer.exe" /autorun "C:\Users\Sebastian\Documents\SongBeamer\Scripts\StartUp.sbpas"