我想要做的是:
set retry to true
repeat while retry is true
display dialog "In the next window you'll have to choose a color!" buttons {"Cancel", "COLORR!"} cancel button 1 default button 2
set Chosencolor1 to (choose color)
display dialog "The chosen color is: " & Chosencolor1 & " Is this right?" buttons {"NO", "YES"}
if the button returned of the result is "no" then
set retry to true
display dialog "Retry is now: " & retry
else
set retry to false
display dialog "Retry is now: " & retry
end if
end repeat
end
但是当我运行此代码时,它将返回一个数字颜色代码。但我想要的是它会返回一个颜色名称,如:浅蓝色,蓝色,绿色等。
我知道的唯一方法就是做一些事情:
if the chosencolor1 is "000" then
set the chosencolor1 to "Black"
end if
end
还有其他更简单的方法吗?或者这是不可能的?
感谢阅读,
Jort
答案 0 :(得分:1)
从AppleScript语言指南选择颜色:
结果所选颜色,表示为三个整数的列表 从0到65535,对应于红色,绿色和蓝色组件 一种颜色;例如,{0,65535,0}表示绿色。
正如您所推测的,获得文本响应的唯一方法是使用用户选择的列表值自行编程。
这是一个非常简单的示例,它添加了所选RGB整数的所有值,并确定它是否更接近黑色或白色:
set myColor to choose color
display dialog ("You have chosen: " & my fetchColorName(myColor))
to fetchColorName(clst)
set totalColorValue to ((item 1 of clst) + (item 2 of clst) + (item 3 of clst))
set blackWhiteMidpoint to (196605 / 2)
if totalColorValue < blackWhiteMidpoint then
set colorName to "A color closer to black than white."
else
set colorName to "A color closer to white than black."
end if
return colorName
end fetchColorName