私はPythonが初めてで、メッセージボックスが必要でした。ctypes を使用しましたが、他のすべてのプログラムでメッセージ ボックスが開きます。すべてのプログラムの上にするにはどうすればよいですか??
import ctypes
def run(x=0):
STOP = False
x += 5
MessageBox = ctypes.windll.user32.MessageBoxA
reply = MessageBox(None, 'text', 'title', 1)
if reply == 1 and not STOP:
threading.Timer(3, run).start()
else:
STOP = True;