set buttonChoice to (display dialog "Play game?" buttons {"Yes", "No"} with title "Play?")
if button returned of buttonChoice = "No" then
return "No"
end if
repeat
set levelnum to text returned of (display dialog "How many levels will you play?" buttons {"Ok"} default answer "1" with title "Levels?")
set Letters_ to {"A", "B", "C", "D", "E", "F", "G"}
set buttonChoice2 to (choose from list Letters_ with prompt "Choose A Letter" with title "Pick One" without multiple selections allowed) as text
if button returned of buttonChoice2 = "C" then
display dialog "You Win!" buttons {"Yay!, Proceed to next level"}
exit repeat
else
display dialog "Try again :("
end if
end repeat
"\"C \ "의 단추를 반환 할 수 없습니다"오류를 해결할 수 있습니까? " "C"에서 반환 된 버튼의 숫자 -1728
이것은 Applescript
—
MindCrap Capper
다른 질문에 오신 것을 환영합니다! 전체 코드를 우리에게 던지지 않고 최소, 완전 및 검증 가능한 예제 를 만들 수 있습니까 ?
—
grg