码迷,mamicode.com
首页 > 移动开发 > 详细

022_applescript教程

时间:2018-12-22 21:58:04      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:str   去掉   name   ring   介绍   字符串连接   --   log   语法   

基础语法

一、这部分介绍注释,发出声音,弹窗

(1)简单入门

<1>多行注释
(*
this is multi 
comment
*)
<2>发出响声
beep 3

(2)

#表示使用"Daniel"(英国发音)发出声音,人员选择如下图1所示
say "Hello,world" using "Daniel" --或用"--"也可以表示单行注释

技术分享图片

              图1
(3)弹窗
display alert "This is an alert" #弹窗示例

 二、变量赋值,string和number类型,字符串连接

set varName3 to true 						#设置布尔值
set varName1 to "This is a string.And I love" 	#这是字符串值变量
set varName2 to "12" 						#设置数字变量把双引号去掉即可

set x to varName2 as number 				#转换整形字符串为整形
set y to 2
set z to varName2 * y 						--乘法运算
display dialog z 							--把乘积以弹窗的方式展示,结果为24

--字符串连接展示
set myCountry to " China."
say varName1 & myCountry					#把连接后的句子读出来

三、 lists

set varName to {"A1", "B2", "C3"}
set varName2 to {"D4", "F5", "G6"}
set item 1 of varName to "arun"
set item -3 of varName2 to "arunyang.com"
set anotherVarName to varName & varName2
#return anotherVarName
set anotherVarName to items 2 through 2 of varName2
return anotherVarName

  

 



 

022_applescript教程

标签:str   去掉   name   ring   介绍   字符串连接   --   log   语法   

原文地址:https://www.cnblogs.com/itcomputer/p/10162392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!