如何在mac上制作简单的弹出气球消息。我不想使用NSUserNotification。 使用python-2.7和osx 10.8.5。 POP-UP不应该有任何按钮。 POP-UP应该来,显示消息并自动进入。它应该与py2app正确打包。
import objc
import Foundation
import AppKit
def notify(title, subtitle, info_text, delay=0, sound=False, userInfo={}):
NSUserNotification = objc.lookUpClass('NSUserNotification')
NSUserNotificationCenter = objc.lookUpClass('NSUserNotificationCenter')
notification = NSUserNotification.alloc().init()
notification.setTitle_(title)
notification.setSubtitle_(subtitle)
notification.setInformativeText_(info_text)
notification.setUserInfo_(userInfo)
if sound:
notification.setSoundName_("NSUserNotificationDefaultSoundName")
notification.setDeliveryDate_(Foundation.NSDate.dateWithTimeInterval_sinceDate_(delay, Foundation.NSDate.date()))
NSUserNotificationCenter.defaultUserNotificationCenter().scheduleNotification_(notification)
def notificationBalloon(title,msg):
notify(title1, msg1,"", sound=False)
答案 0 :(得分:2)
您可以在AppleScript中使用display dialog
语句,并使用subprocess
模块的call
函数调用脚本。
它可能看起来有点' hackish ',但由于你需要一个只有Mac的解决方案,我想这是你可以获得的最简单,最轻的解决方案,因为你不必使用任何当您将项目打包到.app
文件时,可以使用哪种外部库或框架。
import subprocess
applescript = """
display dialog "Some message goes here..." ¬
with title "This is a pop-up window" ¬
with icon caution ¬
buttons {"OK"}
"""
subprocess.call("osascript -e '{}'".format(applescript), shell=True)