View Single Post
Old 12th August 2007, 20:17   #791  |  Link
AlanHK
Registered User
 
Join Date: May 2006
Posts: 237
A while ago qwerpoi was kind enought to give me a macro to save bookmarks (below).

Not being a python coder myself, I wonder if someone can advise how to input a list of bookmarks to Avsp?

macro to extract bookmark list
Code:
filename = avsp.GetSaveFilename(title='Save bookmarks to text file')
f = open(filename, 'w')
for bm in avsp.GetBookmarkList():
    f.write(str(bm)+'\n')
f.close()
AlanHK is offline   Reply With Quote