1"""Suite Netscape Suite: Events defined by Netscape 2Level 1, version 1 3 4Generated from /Applications/Internet Explorer.app 5AETE/AEUT resource version 1/0, language 0, script 0 6""" 7 8import aetools 9import MacOS 10 11_code = 'MOSS' 12 13class Netscape_Suite_Events: 14 15 def Open_bookmark(self, _object=None, _attributes={}, **_arguments): 16 """Open bookmark: Opens a bookmark file 17 Required argument: If not available, reloads the current bookmark file 18 Keyword argument _attributes: AppleEvent attribute dictionary 19 """ 20 _code = 'MOSS' 21 _subcode = 'book' 22 23 if _arguments: raise TypeError, 'No optional args expected' 24 _arguments['----'] = _object 25 26 27 _reply, _arguments, _attributes = self.send(_code, _subcode, 28 _arguments, _attributes) 29 if _arguments.get('errn', 0): 30 raise aetools.Error, aetools.decodeerror(_arguments) 31 # XXXX Optionally decode result 32 if _arguments.has_key('----'): 33 return _arguments['----'] 34 35 36# 37# Indices of types declared in this module 38# 39_classdeclarations = { 40} 41 42_propdeclarations = { 43} 44 45_compdeclarations = { 46} 47 48_enumdeclarations = { 49} 50