--- In [email protected], "redwdc" <red...@...> wrote:
>
> Hi Sheri,
>
> I would like to change the start-up position of the notes in
> NoteButtonMenu to the center, or if possible a custom, screen
> location.
You should be able to do that pretty easily. Look in
notemenu.powerpro for the label @donote.
The else clause says:
else
do(x9)
quit
change it to:
else
;do(x9)
local nhwnd=note.open(x9, "pos center")
do ("*Window", "Position center "++nhwnd)
quit
endif
I've added the endif, which apparently is missing (harmlessly in this
case).
There are other positional options you can try. You can see what
options are available if you use the Configure dialog to set up a
*Note open command.
Not sure why but the "pos center" wasn't working on the notes with
date categories. So I added the window position command.
Before the script change, existing notes open at their various
previous positions.
To make new notes open centered, I think you will need to set the
initial position for new notes to "Center" in the Configuration
advanced setup options for notes.
Regards,
Sheri