예제 #1
0
파일: Keynote.py 프로젝트: brainysmurf/asw
    def __init__(self, slideshow_number=None):
        """
        Sets up Keynote so that it uses whichever slideshow throughout
        """
        AppleScriptWrapper.__init__(self, "Keynote")
        if not slideshow_number:
            slideshow_number = 1

        self._edit = []
        """
예제 #2
0
    def __init__(self, slideshow_number=None):
        """
        Sets up Keynote so that it uses whichever slideshow throughout
        """
        AppleScriptWrapper.__init__(self, "Keynote")
        if not slideshow_number:
            slideshow_number = 1

        self._edit = []
        """
예제 #3
0
 def extention_of_current_document(self):
     name = AppleScriptWrapper.name_of_current_document(self)
     if name:
         s = re.search(r'.*\.\w{3,4} \((\w{3,4}).*?\)', name)
         if s:
             return s.group(1)
         else:
             return self.default_extension
예제 #4
0
 def name_of_current_document(self):
     name = AppleScriptWrapper.name_of_current_document(self)
     if name:
         s = re.search(r'(.*)\.\w{3,} \(.*?\)', name)
         if s:
             return s.group(1)
         else:
             return name
예제 #5
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "QuickTime Player")
예제 #6
0
파일: Word.py 프로젝트: imclab/asw
 def __init__(self):
     s = "hi"
     AppleScriptWrapper.__init__(self, "Microsoft Word")
예제 #7
0
파일: TextEdit.py 프로젝트: brainysmurf/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, 'TextEdit')
예제 #8
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "iTunes")
예제 #9
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "System Preferences")
예제 #10
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "Preview")
예제 #11
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "Photo Booth")
예제 #12
0
파일: TextEdit.py 프로젝트: imclab/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, 'TextEdit')
예제 #13
0
파일: iTunes.py 프로젝트: brainysmurf/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, "iTunes")
예제 #14
0
파일: ProVoc.py 프로젝트: brainysmurf/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, "ProVoc")
예제 #15
0
파일: QuickTime.py 프로젝트: imclab/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, "QuickTime Player")
예제 #16
0
파일: Pages.py 프로젝트: imclab/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, "Pages")
     self._selection = None
예제 #17
0
파일: Pages.py 프로젝트: brainysmurf/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, "Pages")
     self._selection = None
예제 #18
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "Firefox")
예제 #19
0
파일: Finder.py 프로젝트: brainysmurf/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, "Finder")
예제 #20
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, 'Safari')
예제 #21
0
파일: Safari.py 프로젝트: brainysmurf/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, 'Safari')
예제 #22
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "Finder")
예제 #23
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "ProVoc")
예제 #24
0
파일: Word.py 프로젝트: brainysmurf/asw
 def __init__(self):
     s = "hi"
     AppleScriptWrapper.__init__(self, "Microsoft Word")
예제 #25
0
 def __init__(self):
     AppleScriptWrapper.__init__(self, "System Preferences")
예제 #26
0
파일: Preview.py 프로젝트: brainysmurf/asw
 def __init__(self):
     AppleScriptWrapper.__init__(self, "Preview")