´ÙÀ½Àº ŸÀ̸Ӹ¦ »ç¿ëÇÏ¿© MsgBox ´ëÈ»óÀÚÀÇ ¹öư À̸§À» ¹Ù²Ù´Â ¿¹Á¦ÀÔ´Ï´Ù. ¹öư À̸§Àº ¹Ù²î´õ¶óµµ, IfMsgBox ¸í·É¾î´Â ¿©ÀüÈ÷ ¹öưÀÌ ±×ÀÇ ¿ø·¡ À̸§À¸·Î ÂüÁ¶µÇ±â¸¦ ¿ä±¸ÇÕ´Ï´Ù.
ÀÌ ½ºÅ©¸³Æ® ³»·Á¹Þ±â | ´Ù¸¥ »ùÇà ½ºÅ©¸³Æ® | ȨÀ¸·Î
#SingleInstance
SetTimer, ChangeButtonNames, 50
MsgBox, 4, Add or Delete, Choose a button:
IfMsgBox, YES
MsgBox, You chose Add.
else
MsgBox, You chose Delete.
return
ChangeButtonNames:
IfWinNotExist, Add or Delete
return ; °è¼Ó ´ë±â.
SetTimer, ChangeButtonNames, off
WinActivate
ControlSetText, Button1, &Add
ControlSetText, Button2, &Delete
return