-
> 
> So that I can quickly access to all.
> How can I do it?
> Thanks,


You cannot easily.  YOu'd have to use script for all reads and writes and the 
script would have to find out the folder somehow.

You can use note.open to read a note from any path, but there is no way to save 
to any path directly.

Instead, you'd have to get a handle to the note somehow (e.g window handle 
under mouse if the mouse is over the note) and use something like

local text = notehandle.gettext
file.writeall(path, header ++"\r\n" ++ text)

where header is the special one line header PowerPro writes at the start of 
notes.  

You can use a text editor to see this header.

Its format is approximately

;*;cm n left right wdith height 0 8 "category"

c = '0' or '1' for nontomost or topmost
m = text color rgb in decimal
n = back color rgb in decimal
left = left position in pixels
etc.

                


Reply via email to