主题:  第12组 name - numTochar

南山东篱摄螂

职务:普通成员
等级:4
金币:10.0
发贴:1840
#12000/12/10 11:48:47
name (cast property)
语法:
castLib (whichCast).name
the name of castLib whichCast
描述:
演员表成员属性,返回指定的演员表名称。这个属性可以检测也可以设置。
例子:
把影片中所有演员库中的演员名字显示在消息窗里。
totalCastLibs = the number of castLibs
repeat with currentCastLib = 1 to totalCastLibs
put "Castlib"&¤tCastLib&&"is named"&&castLib(currentCastLib).name
参见 (concatenator)

name (cast member property)
语法:
member(whichCastMember).name
the name of member whichCastMember
描述:
演员属性;读取和设定指定演员的名字。参数 whichCastMember 可以是字符串(演员名字)也可以是整数(演员序号)。
名字是由开发者设定的描述性字符串,设置它相当于在演员属性对话框中输入名字。
例子:
以下语句把一个演员的名字从 on 改为 off
member("On").name = "Off"
例子:
以下语句把一个序号为15的演员名字设定为 “Background Sound”
    member(15).name = "Background Sound"
例子:
以下语句把序号为 i+1 的演员的名字赋值给变量 itsNmae
itsName = member(i + 1).name
参见
number (cast member property)
name (menu item property)325

name (menu property)
语法:
the name of menu(whichMenu)
the name of menu whichMenu
描述:
菜单属性;返回一个包含有指定菜单序号名字的字符串。
这个属性只能读取,不能设置。只能使用安装菜单(installMenu)命令来自定义一个菜单栏,
注意:
菜单不能用在 Shocwave
例子:
把序号为1菜单的名字赋值给变量 firstMenu
firstMenu = menu(1).name
例子:
以下这个句柄返回一个菜单名的数组
on menuList
theList = []
repeat with i = 1 to the number of menus
theList[i] = the name of menu i
end repeat
return theList
end menuList
参见:
number (menus), name (menu item property)

name (menu item property)
语法:
the name of menuItem(whichItem) of menu(whichMenu)
the name of menuItem whichItem of menu whichMenu
描述:
菜单属性,读取由 whichMenu 指定的菜单中由 whichItem 指定的菜单项的文本内容。whichItem 是一个任意的菜单项名或菜单顶号码;whichmenu 是一个任意的菜单名或是菜单号码。
这个属性可以读取也可以设置。
注意:
菜单不能用在Shockwave
例子:
这条语句把"Edit"菜单中的第八项的名字赋值给变量 itemNane
set itemName = the name of menuItem(8) of menu("Edit")
例子:
这个语句把一个特定的文件名加到 file 菜单中的 open 项后
the name of menuItem("Open") of menu("fileMenu") = "Open" && fileName
参照:
name (menu property), number (menu items)

name (window property)
语法:
window (whichWindow).name
the name of window whichWindow
描述:
窗口属性。读取指定的窗口名称在窗口列表中,窗口的标题属性读取的是出显在窗口标题栏中的标题。
这个属性可读可设置。
例子:
这条语句把窗口的名字从 Yesterday 改为 Today
window("Yesterday").name = "Today"

name (system property)
语法:
xtra (whichXtra).name
the name of xtra whichXtra
描述:
系统属性。读取指定的Lingo Xtra 的名字,没在lingo中使用的 Xtra或是函数不支持这个属性。
这个属性可读也可设置。
例如:
这个语句把第一个xtra的名字显示在消息窗中。
put xtra(1).name

name (timeout property)
语法:
timeoutObject.name
描述:
超时属性名字是在超时对像定义时创建的。可以用new()命令来创建超时属性。
例子:
在超时事件发生时这个超时句柄出示一个以超时对像名字为内容的警告,
on handleTimeout timeoutObject
alert "Timeout:" && timeoutObject.name
end
参见
forget window, new(), period, persistent, target, time (timeout object property), timeout(),
timeoutHandler, timeoutList

NAN
描述:
Lingo的返回值;指出指定的Lingo表达式不是一个数。
这个语句企图显示-1的开平方根,它不是数值,在消息窗中:
put (-1).sqrt
--NAN
参见
INF

netAbort
语法:
netAbort(URL)
netAbort(netID)
描述:
命令;无条件取消一个网络操作。
使用这个网络ID是一个停止网络操作有较方法。ID就是你在使用例如 getNetText()或postNetText()时返回的值。
在某些情形中,当一个网络ID是不可用的时候,你可以使用一个URL去停止这个URL的数据传送。这个URL必须与最初的那个网络操作中使用的相同,如果数据传送已经完成,这个命令就无较了。
例子:
这个语句取消一个特定的网络操作。
on mouseUp
netAbort(myNetID)
end
参见:
getNetText(), postNetText

netDone()
语法:
netDone()
netDone(netID)
描述:
函数,测试后台载入操作(例如:getNetText,preloadNetThing, gotoNetMovie, gotoNetPage,或 putNetText)是完成或是被浏览器错误中止(TRUE,缺省值)还是正在进行中(FALSE)。
用netDone()可以检测到最后一个网络操作。
用netDone(netID)可以检测到由 netID 指定的网络操作。
当有后台操作在进行时netDone函数返回0。
例子:
这个句柄使用函数netDone测试最后一个网络操作是否完成。如果操作完成,netTextResult返回的文本将被显示在文本成员的文本内。
on exitFrame
if netDone() = 1 then
member("Display Text").text = netTextResult()
end if
end
例子:
这个句柄使用一个指定的网络ID通过netDone制止一个特定的网络操作:
on exitFrame
-- stay on this frame until the net operation is
-- completed
global mynetID
if netDone(mynetID) = FALSE then
go to the frame
end if
end
参照:
getNetText(), netTextResult(), gotoNetMovie, preloadNetThing()

netError()
语法:
netError()
netError(netID)
描述:
函数;测定网络操作是否出错,如果说有错误则返回与错误代码相对应的错误信息。如果操作成功,这个函数返回的代码指明所有的都有是完好的。如果没有后台载入操作,或者这个操作正正在运行中,则这个函数返回的是空字符。
例子:
这个语句传递一个网络ID给neterror来测定一个指定的网络操作的错误代码。
on exitFrame
global mynetID
if netError(mynetID)<>"OK" then beep
end

netLastModDate()
语法:
netLastModDate()
描述:
函数,返回网上指定项目最后被修改的日期时间,返回值是一字符串,这一字串是通用的格林尼治标准时间格式:Ddd, nn Mmm yyyy hh:mm:ss GMT (例如:Thu, 30 Jan 1997 12:00:00 AM GMT)。有些变化如 days 或 months 的拼写是十分完整。这个字符串总是英语。
函数 netLastModDate 往往是在 netDone 和 netError 报告操作完成和成功之后才可以调用。在下一个操作开始之后,Director影片或放映机就会丢弃结果从上一个操作占用的内存中。
实际的日期是直接从HTTP服务器上取回的。然而这个字符并不总是能得到的,如果这样 netlastModDate 返回是EMPTY。
当影片像 applet 那样播放时.这函数的日期格式可以和Shockwave 使用的日期格式不同;这个日期就是Java中Date.asString函数返回的格式。另外,这种格式在使用不同语言的系统上也是会发成变化的。
例子:
这些语句检查从因特网下载的文件日期 :
if netDone() then
theDate = netLastModDate()
if theDate.char[6..11] <> "Jan 30" then
alert "The file is outdated."
end if
end if
参见:
netDone(), netError()

netMIME()
语法:
netMIME()
描述:
函数;返回由最后的网络操作提供的因特网文件(最近以HTTP或FTP下载的)的MIME类型。
仅仅在netDone和netError报告操作完整,而且成功之后,netMIME函数才可以调用。在下一个操作开始之后,Director影片或放映机就会从上一个操作占用的内存中丢弃结果
例子:
这个句柄检查一个从因特网上下载项目的MIME类型并做出相应的响应。
on checkNetOperation theURL
if netDone (theURL) then
set myMimeType = netMIME()
case myMimeType of
"image/jpeg": go frame "jpeg info"
"image/gif": go frame "gif info"
"application/x-director": goToNetMovie theURL
"text/html": goToNetPage theURL
otherwise: alert "Please choose a different item."
end case
else
go the frame
end if
end
参见:
netDone(), netError(), getNetText(), postNetText, preloadNetThing()

netPresent
语法:
netPresent()
the netPresent
描述:
系统属性;测定访问因特网所需的Xtras是否可用,但是不能报告因特网的连接当前是否已被激活。
如果支持网络的Xtras不可用,netPresent将适当地起作用,但是,netPresent()将引起一个Script脚本错误。
例子:
在下列语句中,如果Xtras不可用则发送一个警告:
if not (the netPresent) then
alert "Sorry, the Network Support Xtras could not be found."
end if

netStatus
语法:
netStatus msgString
描述:
命令;显示指定的字符串在浏览器窗口的状态栏中。NetStatus命令不能工作在放映机
例子:
下列语句是在运行影片的浏览器的状态栏中显示字符串:“This is a test”
on exitFrame
netStatus "This is a test"
end

netTextResult()
语法:
netTextResult(netID)
netTextResult()
描述:
函数;返回从指定的网络操作中获得的文本。如果不指定网络ID。
netTextResult返回的是最后的网络操作的结果。
如果指定的网络操作是getNetText(),那么这文本就是网络文件中的正文。
如果指定的网络操作是postNetText,结果是服务器响应。
在下一个操作开始之后,Director影片或放映机就会从上一个操作占用的内存中丢弃结果。当影片以applet形式播放时,这函数返回最后10个请求的有效结果。
当影片Shockwave影片的形式播放时,这函数仅仅返回最近的getNetText()操作的有效结果。
例子:
这句柄用“netDone,并且netDone”函数来测试最后的网络操作是否成功地结束。如果操作已结束,netTextResult返回的文本被显示在字段演员Display Text中。
global gNetID
on exitFrame
if (netDone(gNetID) = TRUE) and (netError(gNetID) = "OK") then
member("Display Text").text = netTextResult()
end if
end
参见:
netDone(), netError(), postNetText


netThrottleTicks
语法:
the netThrottleTicks
描述:
系统属性;在Macintosh制作环境中,允许你控制给网络操作提供服务的频率。缺省值是15。这人值可以设置的更高,使影片播放和动画更平滑,但是,提供给网络活动和维持的时间就会更少。较低的设定,则允许网络操作占用更多的时间,但是将相反影片重放和动画执行。这个属性仅可以用在Macintosh计算机上的制作环境和放映机中。在Windows或Mac上的Shockwave是不起做用的。

NEW()
语法:
new(type)
new(type, castLib whichCast)
new(type, member whichCastMember of castLib whichCast)
variableName = new(parentScript arg1, arg2, ...)
new(script parentScriptName, value1, value2, ...)
timout("name").new(timoutPeriod, #timeoutHandler, {, targetObject})
new(xtra "xtraName")
描述:
函数,创建一个新的演员,子对像,超时对像或 Xtra对像,并且允许你赋值个别的私有值到子对像。在Java Director播放器中这个函数只能用来创建子对像,当影片以 applet 形式播放时,你可以使用 NEW 函数创建演员。对于演员,type 参数设置为演员的类型,尽可能预先确定值服合现有的演员类型,如:#bitmap,#field 等。NEW函数同样可以创建Xtra演员类类型,能通过名字来标识。同样的也能创建新的彩色光标演员用在自定义的光标Xtra.使用 NEW(#cursor)并设置演员属性。这随意的确良whichCastMember 和 whichCast 参数指定的演员位置和新演员存放的演员表窗口,当没有指定演员位置时,第一个空位置就被使用,NEW函数返回演员的位置,
例子:
以下语句创建一个超时对像调用 intervalTimer来发送超时事件到 minuteBeep 句柄在子对像 playOne 的每60秒。
timeout("intervalTimer").new(60000, #minuteBeep, playerOne)
参见:
on stepFrame, actorList, ancestor, me, type (cast member property), timeout()

newCurve()
语法:
vectorMember.newCurve(positionInVertexList)
newCurve(vectorMember, positionInVertexList)
描述:
函数,加一个#newCurve 标识到矢量演员的顶点列表中,加入一新的图形到矢量图形,#newCurve符号是加在 positionInVertexList。你能过调用 newCurve()改变顶点序列中的一个点的方法来折分一个现有的矢量图形。
例子:
第一行:增加一条由三个顶点组成的曲线到演员2中。例子中的第二行:用曲线3来替换曲线2
member(2).newCurve(3)
member(2).curve[2]=member(2).curve[3]
curve, vertexList

next
语法:
next
描述:
关键字,指明下影片中的一个标识符,等同于标识符(+1)
例子:
这个语句使影片中的播放头跳到下一个标识。
go next
例子:
这个句柄在Score中控制影片的播送放:当右箭头键被按下时跳到到下个标识,左箭头被按下时跳到上一个标识.
on keyUp
if the keyCode = 124 then go next
if the keyCode = 123 then go previous
end keyUp
参见:
loop (keyword), go previous

next repeat
语法:
next repeat
描述:
关键字;在脚本的循环中使lingo 跳过其中的一次循环。这个函数不同于 exit repeat 关键字。
例子:
这个循环仅显示把奇数显示在消息窗中:
repeat with i = 1 to 10
if (i mod 2) = 0 then next repeat
put i
end repeat

node
语法:
sprite(whichQTVRSprite).node
the node of sprite whichQTVRSprite
描述:
QuickTime VR sprite 属性。把当前节点ID显示在sprite中,这个属性可设置也可读。

nodeEnterCallback
语法:
sprite(whichQTVRSprite).nodeEnterCallback
the nodeEnterCallback of sprite whichQTVRSprite
描述:
QuickTime VR sprite 属性。容纳句柄名字在舞台中的QuickTime VR 影片转变为一个新的活动节点之后。这个消息有两个参数:ME 参数和节点ID是被显示的。QuickTime VR sprite 首先接收到这个消息。清除回收信号,设置这个属性为0。为避免执行失败,仅当必需时才设置这个回收信号属性。这个属性是可读和可设置的。


nodeExitCallback
语法:
sprite(whichQTVRSprite).nodeExitCallback
the nodeExitCallback of sprite whichQTVRSprite
描述:
QuickTime VR sprite属性;容纳句柄名字当舞台中的QuickTime VR 影片快要转变为一个新的活动节点时。 这个消息有两个参数:一个是 ME 参数,另一个是:影片中快要离开时的节点ID和影片快要转变时的节点ID。
这句柄返回的值确定于无论影片进行到下一个节点。如果句柄返回 #continue,QuickTime VR sprite 继续 向一个标准的节点转变,如果句柄返回 #cancel,则这个转变没有出现和影片被中止在最初的节点。 设置这个属性为0可以清除回收信号。QuickTime VR sprite 首先接收到这个消息。为避免执行失败,仅当必需时才设置这个回收信号属性。这个属性是可读和可设置的。


nodeType
语法:
sprite(whichQTVRSprite).nodeType
nodeType of sprite whichQTVRSprite
描述:
QuickTime VR sprite 属性;供给当前舞台指定sprite的节点类型.可能和值是:#object, #panorama, or #unknown.(#unknown当sprite不是一个QuickTime VR sprite时返回的值).这个属性可读和可设置。

Not
语法:
not 逻辑表达式
描述:
操作码,执行一个逻辑非在一个逻辑表达式中。这个相当于使一个 TURE值变为FALSE,和使一个FALSE值变为TRUE。 当要从某些知道的条件检测出那些不是其中的情形时是有用的。这个逻辑操作杩的优先级别是5
例子:
这个语句测定1是否不小于2:
put not (1<2)
因为1是小于2的,这个结果是0, 所以那个式子的的结果的FALSE
例子:
这个语句测定1是否大于2:
put not (1>2)
因为1不大于2,所以这个值1,整个表达式的结果就是TRUE
例子:
这个句柄设置 style菜单下的 Bold菜单项 标记属性为与当前设置相对立的。
on resetMenuItem
the checkMark of menuItem("Bold") of menu("Style") = \
not (the checkMark of menuItem("Bold") of menu("Style"))
end resetMenuItem
参见:
and, or

nothing
语法:
nothing
描述:
命令,什么也不做,这个命令主要用在if...then 语句中。在if...then...else嵌套语句中,else子句中不包含别的语句时就必须使用 else nothing,然而Lingo不会解释else子句就像和前面的if子句分开一样。
例子:
在名柄中的if...then...else嵌套中使用nothing命令来满足else子句中的语句。
on mouseDown
if the clickOn = 1 then
if sprite(1).moveableSprite = TRUE then
member("Notice").text = "Drag the ball"
else nothing
else member("Notice").text = "Click again"
end if
end
例子:
这个句柄命令影片什么也不做在鼠标键被按下时。
on mouseDown
repeat while the stillDown
nothing
end repeat
end mouseDown
参见
if

nudge
语法:
sprite(whichQTVRSprite).nudge(#direction )
nudge(sprite whichQTVRSprite, #direction)
描述:
QuickTime VR命令;根据参数#direction指定的方向轻推指定的QuickTime VR sprite画面的视点。
#direction的值可以是#down,#downLeft,#downRight,#left,#right,#up,#upLeft和#upRight。
轻推右边就会使sprite画面的图像向左移动。
nudges命令没有返回值。
例子:
在鼠标在sprite上被按下时,就会促使QTVRsprite画面的视点向左移动。
on mouseDown me
repeat while the stillDown
sprite(1).nudge(#left)
end repeat
end

number (演员表属性)
语法:
the number of castLib whichCast
描述:
演员表属性;显示指定演员表的号码,例如,演员表库中演员表2的号码是2。这个属性只能读取不能设置。
例子:
在消息窗中显示影片中演员表库内全部的演员表的号码:
repeat with n = 1 to the number of castLibs
put castLib(n).name && "contains" && the number of \
members of castLib(n) && "cast members."
end repeat


number (演员属性)
语法:
member(whichCastMember).number
the number of member whichCastMember
描述:
演员属性;指出由参数whichCastMember指定的演员号码,(如果whichCastMember是字符串,则指明是任意的名字,如果whichCastMember是数字,则指明是一个号码。这个属性对于演员来说是唯一的,并且是一个单字节整数,指明了演员在演员表库中的位置的指针。这个属性只能被读取,不能被设置。
注意:
当使用第一个语法member(whichCastMember).number时,如果演员不存在就会出现错误。当不能确定演员是否存在时,可以使用预备用的语法以避免发生错误。
例子:
这个语句把演员Power Switch的号码赋予变量whichCastMember
whichCastMember = member("Power Switch").number
例子:
在sprite转换演员前校验演员是否存在,
property spriteNum
on mouseUp me
if (member("Mike's face").number > 0) then
sprite(spriteNum).member = "Mike's face"
end if
end
参见:
member (sprite property), memberNum, number of members

number (字符)
语法:
the number of chars in chunkExpression
描述:
块表达式;在块表达式中返回字符的总数。块表达式是任何字符(包括空格和控制字符如制表符和回车),以及字符容器中的词、句子和行。容器包括:域演员和字符串变量,和指定的字符,词、句子,行和容器中的范围。
注意:
count()函数在计算块表达式中字符的数量时比用number属性更有效,
例子:
这个语句把字符串“Macromedia, the Multimedia Company" 的字符数显示在消息窗中。
put the number of chars in "Macromedia, the Multimedia Company"
返回值是: 34.
例子:
这个语句把Names字符串中的第i个词的字符总数赋予变量charcounter:
charCounter = the number of chars in member("Names").word[i]
你还可以用另一个语法来实现这一功能:
charCounter = member("Names").word[i].char.count
参见:
length(), char...of, count(), number (items), number (lines), number (words)

number (子句)
语法:
the number of items in chunkExpression
描述:
块表达式,返回一个块表达式句子的总数。句子块是在字符中用逗号间隔的任意序列.块表达式是任意字符,以及字符容器中的词、句子和行。容器包括:域(域角色成员)和字符串变量,字符系列、词、句子、行和容器中的范围。
注意:
count()函数在计算块表达式中句子的数量时比用number属性更有效,
例子:
这个语句把字符串“Macromedia, the Multimedia Company" 的句子数显示在消息窗中。
put the number of items in "Macromedia, the Multimedia Company"
返回值是 2.
你还可以用另一个语法来实现这一功能:
itemCounter = member("Names").item.count
参见:
item...of, count(), number (characters), number (lines), number (words)

number (行)
语法:
the number of lines in chunkExpression
描述:
块表达式;返回一个块表达式中的总行数。(行与行之间用回车相间隔,并不是印刷品的的行)。块表达式是任意字符,以及字符容器中的词、句子和行。容器包括:域(域角色成员)和字符串变量,字符系列、词、句子、行和容器中的范围。
注意:
count()函数在计算块表达式中行的数量时比用number属性更有效,
例子:
这个语句把字符串“Macromedia, the Multimedia Company" 的句子数显示在消息窗中。
put the number of lines in "Macromedia, the Multimedia Company"
返回值 1
例子:
这个语句把由Names指定的域的文本中行的总数赋予变量lineCounter
lineCounter = the number of lines in member("Names").text
你还可以用另一个语法来实现这一功能:
lineCounter = member("Names").line.count
参见:
line...of, count(), number (characters), number (items), number (words)

number (菜单)
语法:
the number of menus
描述:
菜单属性;指出在当前影片中安装了的菜单数量。这个属性是只读的,设置菜单栏要使用installMenu命令。
注意:
菜单不能在Shockwave中使用。
例子:
这个语句测定在影片中是否有自定义菜单,并且,如果没有菜单,则安装菜单栏,
if the number of menus = 0 then installMenu "Menubar"
例子:
这个语句把当前影片中的菜单数显示在消息窗中。
put the number of menus
参见:
installMenu, number (menu items)

number (菜单子项)
语法:
the number of menuItems of menu whichMenu
描述:
菜单属性;指示在由whichMenu指定的自定义菜单中菜单子项的数量。whichMenu参数可以是一个菜单名或是一个菜单号码。这个属性是只读的,设置菜单栏要使用installMenu命令。
注意:
菜单不能在Shockwave中使用。
例子:
这个语句把自定义菜单“file“中的子菜单数赋予变量fileItems
fileItems = the number of menuItems of menu "File"
例子:
这个语句把由变量i指定的自定义菜单中的子菜单的数量赋予变量itemsCount.
itemCount = the number of menuItems of menu i
参见:
installMenu, number (menus)

number (系统属性)
语法:
the number of castLibs
描述:
系统属性;返回在当前影片中的演员表的数量,这个属性是只读的。
例子:
在消息窗中通过循环调用的方法显示影片中各个演员表的演员数量
repeat with n = 1 to the number of castLibs
put castLib(n).name && "contains" && the number of \
members of castLib(n) && "cast members."
end repeat


number (词)
语法:
the number of words in chunkExpression
描述:
块表达式;返回由chunkExpression指定的块表达式中的词的数量,块表达式是任何字符(包括空格和控制字符如制表符和回车),以及字符容器中的词、句子和行。容器包括:域演员和字符串变量,和指定的字符,词、句子,行和容器中的范围。要在文本演员中实现这个函数功能,请看 count
注意:
count()函数在计算块表达式中词的数量时比用number属性更有效,
例子:
这个语句把字符串“Macromedia, the Multimedia Company" 词数显示在消息窗中。
put the number of words in "Macromedia, the multimedia company"
返回值是 4.
例子:
句柄颠倒由参数wordlist指定的字符串中词的次序:
on reverse wordList
theList = EMPTY
repeat with i = 1 to the number of words in wordList
put word i of wordList & " " before theList
end repeat
delete theList.char[thelist.char.count]
return theList
end
参见:
count(), number (characters), number (items), number (lines), word...of

number of members
语法:
the number of members of castLib whichCast
描述:
演员属性;显示指定演员表中最后一个演员的号码。这个属性是只读的。
例子:
这个语句在消息窗中显示名为Central Casting的演员表中各个演员的类型,演员表库中成员数
属性决定了循环的次数。
repeat with i = 1 to the number of members of castLib("Central Casting")
put "Cast member" && i && "is a" && member(i, "Central Casting").type
end repeat

number of xtras
语法:
the number of xtras
描述:
系统属性;返回在影片中用到的xtra的数量,xtras必需是用openxlib命令打开或是引用在标准xtra目录中的。这个属性是只读的。
例子:
这个语句在消息窗显示影片中用到的xtra的数量:
put the number of xtras

numChannels
语法:
member(whichCastMember).numChannels
the numChannels of member whichCastMember
描述:
Shockwave音频(SWA)演员属性;返回在SWA流演员中使用的通道数,这个返回值可以是单声道的1和立体声的2中的任间一个。
这个属只能用于在SWA流演员正在被子播放时或是被preLoadBuffer命令预先调入内存之后。这个属性是只读的。
例子:
这个例子把名为 Duke Ellington SWA流演员的声音通道数写到文本域Channel Display中:
myVariable = member("Duke Ellington").numChannels
if myVariable = 1 then
member("Channel Display").text = "Mono"
else
member("Channel Display").text = "Stereo"
end if

numToChar()
语法:
numToChar(integerExpression)
描述:
函数;显示一个包含由参数integerExpression指定的ASCII码对应字符的单字符的字符串,这个函数主要用来翻译源于外部的一个呈现为数字比字符更方便的数据,在所有标准的电脑中ASCII码最大是127,超过和包含128的在不同的电脑中有不同的定义。
例子:
这个语句在消息窗中显示ASCII码65对应的字符
put numToChar(65)
返回的文字是: A.
例子:
这个句柄从任意的字符串中删除任何非文本字母的字符,并返回它们的大写字母:
on ForceUppercase input
output = EMPTY
num = length(input)
repeat with i = 1 to num
theASCII = charToNum(input.char[i])
if theASCII = min(max(96, theASCII), 123) then
theASCII = theASCII - 32
if theASCII = min(max(63, theASCII), 91) then
put numToChar(theASCII) after output
end if
end if
end repeat
return output
end
参见:
charToNum()

编辑历史:[这消息被东影默编辑过(编辑时间2000-12-10 11:51:31)]
[这消息被东影默编辑过(编辑时间2000-12-10 22:09:00)]
[这消息被东影默编辑过(编辑时间2001-01-31 11:02:49)]


南山东篱摄螂

职务:普通成员
等级:4
金币:10.0
发贴:1840
#22000/12/12 22:40:40
为了方便区分各次不同的翻译,采用跟贴的方式。
----------------------------

编辑历史:[这消息被东影默编辑过(编辑时间2001-01-31 10:57:35)]


南山东篱摄螂

职务:普通成员
等级:4
金币:10.0
发贴:1840
#32000/12/16 21:34:56
全部改在放在上面

编辑历史:[这消息被东影默编辑过(编辑时间2001-01-31 10:59:52)]


南山东篱摄螂

职务:普通成员
等级:4
金币:10.0
发贴:1840
#42000/12/23 10:12:20
g

编辑历史:[这消息被东影默编辑过(编辑时间2001-01-31 11:01:18)]