diff options
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py')
| -rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py b/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py index b1cc8ee..d69b987 100644 --- a/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py +++ b/Lib/plat-mac/lib-scriptpackages/Netscape/PowerPlant.py @@ -12,21 +12,20 @@ _code = 'ppnt' class PowerPlant_Events: - _argmap_select = { - 'data' : 'data', + _argmap_SwitchTellTarget = { + 'to' : 'data', } - def select(self, _object, _attributes={}, **_arguments): - """select: Sets the present selection - Required argument: object to select or container of sub-objects to select - Keyword argument data: sub-object(s) to select + def SwitchTellTarget(self, _no_object=None, _attributes={}, **_arguments): + """SwitchTellTarget: Makes an object the \xd2focus\xd3 of AppleEvents + Keyword argument to: reference to new focus of AppleEvents Keyword argument _attributes: AppleEvent attribute dictionary """ - _code = 'misc' - _subcode = 'slct' + _code = 'ppnt' + _subcode = 'sttg' - aetools.keysubst(_arguments, self._argmap_select) - _arguments['----'] = _object + aetools.keysubst(_arguments, self._argmap_SwitchTellTarget) + if _no_object != None: raise TypeError, 'No direct arg expected' _reply, _arguments, _attributes = self.send(_code, _subcode, @@ -37,20 +36,21 @@ class PowerPlant_Events: if _arguments.has_key('----'): return _arguments['----'] - _argmap_SwitchTellTarget = { - 'to' : 'data', + _argmap_select = { + 'data' : 'data', } - def SwitchTellTarget(self, _no_object=None, _attributes={}, **_arguments): - """SwitchTellTarget: Makes an object the \xd2focus\xd3 of AppleEvents - Keyword argument to: reference to new focus of AppleEvents + def select(self, _object, _attributes={}, **_arguments): + """select: Sets the present selection + Required argument: object to select or container of sub-objects to select + Keyword argument data: sub-object(s) to select Keyword argument _attributes: AppleEvent attribute dictionary """ - _code = 'ppnt' - _subcode = 'sttg' + _code = 'misc' + _subcode = 'slct' - aetools.keysubst(_arguments, self._argmap_SwitchTellTarget) - if _no_object != None: raise TypeError, 'No direct arg expected' + aetools.keysubst(_arguments, self._argmap_select) + _arguments['----'] = _object _reply, _arguments, _attributes = self.send(_code, _subcode, |
