|
主题: 第6组:field ~ frameScript
|
 xuyi_5d
职务:普通成员
等级:2
金币:1.0
发贴:179
|
#12000/12/4 21:31:23
field 语法 field whichField 描述 关键字;引用由whichField指定的域演员
当whichField是一个字符串时,它通常是一个演员的名字。 当whichField是一个整数时,它通常是一个演员在演员表中的号码。
字符串和大块的表达式能被域读入或放置。 Term field被用于director的早期版本,后期版本对其保持兼容。对于新创建的电影,用成员引用域演员 实例 这个语句将名为entry的域中从5到 10的这些字符放入名为myKeyword的变量中。 myKeyword = field("entry").char[5..10]
这个语句检查用户是否输入单词desk,如果输入了的话,跳到名为deskBid的帧 if member "bid" contains "desk" then go to "deskBid"
参见 char...of, item...of, line...of, word...of
fieldOfView 语法 sprite(whichQTVRSprite).fieldOfView the fieldOfView of sprite whichQTVRSprite 描述 QTVR角色属性;给出指定的角色的当前视点的角度范围 这个属性能检验和设置。
fileName (演员表属性) Syntax castLib(whichCast).fileName 语法 castLib(whichCast).fileName the fileName of castLib whichCast
描述 属性;给出指定演员表的文件名说明 对一个外部演员表,fileName给出这个演员表的完整路径和文件名 对一个内部演员表,the fileName castLib属性依赖于指定的内部演员表。对第一个内部演员表来说,the fileName castLib属性为影片的名字,对其它的内部演员表来说,fileName为一个空字符串。
The fileName of castLib属性接受URL。可是,使用一个演员表从INTERNET下载时,为了减少下载时间,先用downloadNetThing或preloadNetThing命令将文件下载到本地磁盘上,然后设演员表的flieName为文件在磁盘上的位置。 如果一个影片设置了外部演员表的fileName,不要在Projector Options 对话框中使用Duplicate Cast Members for Faster Loading选项。. 该属性用于外部演员表时可以检验和设置,用于内部演员表时只可以检验。
注意:Director for Java不支持downloadNetThing命令。
实例:这个语句在Message窗口中显示Buttons外部演员表的路径名和文件名。 put castLib("Buttons").fileName
这个语句将Buttons外部演员表文件名设为Content.cst。 castLib("Buttons").fileName = the moviePath & "Content.cst" 这个影片将使用外部演员表文件Content.cst作为Buttons演员表。
这些语句从URL上下载一个外部演员表,保存在Director.exe所在的文件夹中,把该文件作为"Thousands"外部演员表。 downLoadNetThing("http://www.cbDeMille.com Thousands.cst", the \ applicationPath&"Thousands.cst")
castLib("Cast of Thousands").fileName = the applicationPath & "Thousands.cst"
参见 downloadNetThing, preloadNetThing()
fileName (演员属性) 语法 member(whichCastMember).fileName the fileName of member whichCastMember
描述 演员属性;引用由whichCastMember指定的演员所链接的文件名。这个属性通常用来在影片播放时交换一个演员的外部链接,同样你可以交换多个演员。当链接的文件与影片不在同一目录时,你必须指定文件的路径。 你也可以通过设置演员支持的链接媒体的filename为没有链接的媒体设置链接。 该属性接受URL。但是,当使用来自URL的文件,为了减少下载时间,首先用downloadNetThing或preloadNetThing命令将文件下载到本地磁盘上,然后设演员的flieName为文件在磁盘上的位置。 Director player for Java不支持downLoadNetThing命令,所以它不能在将一个新文件指定为一个演员之前,在后台进行下载。在影片作为applet运行时改变fileName成员属性能使该applet等待新文件下载。 该属性可以被检验和设置。设置fileName后,Diectror在这个演员下次使用时生效。 实例 这个语句将40号演员链接到名为ChairAnimation的quickTime影片。 member(40).fileName = "ChairAnimation"
下列语句从URL下载一个外部文件到Director程序所在目录,并将它链接到声音演员Norma Desmond Speaks: downLoadNetThing("http://www.cbDeMille.com/ Talkies.AIF",the \ applicationPath&"Talkies.AIF") member("Norma Desmond Speaks").fileName = the applicationPath & "Talkies.AIF"
参见 downloadNetThing, preloadNetThing()
fileName (窗体属性) 语法 window whichWindow.fileName the fileName of window whichWindow
描述语 窗体属性;将由whichWindow指定的影片文件名给窗体。当链接的文件与影片不在同一目录时,你必须指定文件的路径。 为了能在窗体中播放影片,你必须设置窗体的fileName属性为影片的文件名。 该属性接受URL。但是,当使用来自URL的文件时,为了减少下载时间,首先用downloadNetThing或preloadNetThing命令将文件下载到本地磁盘上,然后设窗体的fileName属性为文件在本地磁盘上的位置。 该属性可以被检验和设置。 实例 这个语句将名为Control Panel的文件赋给名为Tool Box:的窗体。 window("Tool Box").fileName = "Control Panel"
这个语句显示赋给名为Navigator窗体的文件的文件名 put window("Navigator").fileName
下列语句从URL下载一个外部文件到Director程序所在目录,并将它赋给名为My Close Up的窗体。 downLoadNetThing("http://www.cbDeMille.com/Finale.DIR",the \ applicationPath&"Finale.DIR") window("My Close Up").fileName = the applicationPath&"Finale.DIR"
参见 downloadNetThing, preloadNetThing()
fill() 语法 imageObject.fill(left, top, right, bottom, colorObjectOrParameterList) imageObject.fill(point(x, y), point(x, y), colorObjectOrParameterList) imageObject.fill(rect, colorObjectOrParameterList)
描述 这个函数在特定的图像目标内用colorObject(颜色对象)的颜色填充一个矩行区域。 指定的点相对于指定图像目标的左上角。返回值为1表示没有错误发生,为0表示有一个错误发生 如果你用一个变量数组代替一个简单的颜色对象,矩形将由你指定的这些变量产生的图形填充。
属性描述 #shapeType 一个符号值,可为#oval, #rect, #roundRect, 或#line。缺省为#line。 #lineSize 画图形时线条的宽度。 #color 一个颜色目标,它决定使用哪种颜色填充图形。 #bgColor 一个颜色目标,它决定使用哪种颜色填充图形的边界。 为了最好的效果,使用八位或更低的图像时,颜色对象将包含一个索引色值。十六位或三十二位的图像,使用RGB色值。
实例 这个语句把由变量myImage指定的图像对象着色为全黑。 myImage.fill(myImage.rect, rgb(0, 0, 0))
这个语句在图像对象TestImage画一个已填充的椭圆。这个椭圆为绿色填充,并有一个5像素宽的红色边框。 TestImage.fill(0, 0, 100, 100, [#shapeType: #oval, #lineSize: 5, #color: rgb(0, 255, 0), #bgColor: rgb(255, 0, 0)])
参见 color(),draw()
fillColor 语法 member(whichCastMember).fillColor 描述 矢量图形演员属性,用填充图形的颜色为由它指定的RGB值。
当fillMode属性被设为#solid 或 #gradient时可能会使用它,但是前者被设为#none就不会用到它了。假如fillMode属性是#gradient时,fillColor指定倾斜度的开始色。结尾色由endColor指定。 该属性可以被检验和设置。 要看fillColor在完整影片中使用的实例,请打开Director应用程序所在文件夹下的Learning\Lingo Examples目录内的vector shapes.dir文件。 实例 这个语句设置Archie演员的填充色为一个新的RGB值。 member("Archie").fillColor = rgb( 24, 15, 153)
参见 endColor, fillMode
fillCycles 语法 member(whichCastMember).fillCycles 描述 矢量图形演员属性;倾斜度矢量图形填充的填充周期号码,用整数1到7指定。 只有当fillMode属性为#gradient时这个属性才为有效的 该属性可以被检验和设置。 要看fillCycles在完整影片中使用的实例,请打开Director应用程序所在文件夹下的Learning\Lingo Examples目录内的vector shapes.dir文件。
实例 这个语句设置Archie演员的fillCycles属性3。
member("Archie").fillCycles = 3
参见 endColor, fillColor, fillMode
fillDirection 语法 member(whichCastMember).fillDirection 描述 矢量图形演员属性;指定度数去旋转填充的图形。 只当图形的fillMode属性设#gradient为时该属性合法。 该属性可以被检验和设置。 要看fillDirection在完整影片中使用的实例,请打开Director应用程序所在文件夹下的Learning\Lingo Examples目录内的vector shapes.dir文件。 参见 fillMode
filled 语法 member(whichCastMember).filled the filled of member whichCastMember 描述 图形演员属性,用图案(TRUE)或否(FALSE)来显示指定的演员是否被填充。 实例 下列语句使名为Target Area的图形演员为被填充图形,并设它的pattern为数字1,它的一种纯色。 member("Target Area").filled = TRUE member("Target Area").pattern = 1
参见 filled
fillMode 语法 member(whichCastMember).fillMode 描述 矢量图形演员属性;显示图形的填充方法,使用下面可能的值 #none-----图形为透明的 #solid-----图形使用单一的填充色 #gradient-----图形使用两种颜色之间的梯度。 当图形为关闭时,该属性可以被检验和设置。打开的图形不能填充。 要看fillMode在完整影片中使用的实例,请打开Director应用程序所在文件夹下的Learning\Lingo Examples目录内的vector shapes.dir文件。 实例 下列语句设名为Archie的图形演员的fillMode 属性为gradient member("Archie").fillMode = #gradient
参见 endColor, fillColor
fillOffset 语法 member(whichCastMember).fillOffset 描述 矢量图形演员属性;填充图形偏移的水平和垂直像素。 只有当图形的fillMode属性为#gradient时该属性合法。 要看fillOffset在完整影片中使用的实例,请打开Director应用程序所在文件夹下的Learning\Lingo Examples目录内的vector shapes.dir文件。 实例 这个语句改变矢量图形演员miette的填充偏移为水平偏移33个像素,垂直偏移27个像素 member("miette").fillOffset = point(33, 27)
参见 defaultRect, fillMode
fillScale 语法 member(whichCastMember).fillScale 描述 矢量图形演员属性;指定填充图形的比例总计。这个属性在矢量图形窗口中用”spread”代替。 该属性只有当图形的fillMode属性设为#gradient时合法,但是可以同时检验和设置。 要看fillScale在完整影片中使用的实例,请打开Director应用程序所在文件夹下的Learning\Lingo Examples目录内的vector shapes.dir文件。 实例 这个语句设演员Archie的fillScale为33。 member("Archie").fillScale = 33.00
findEmpty 语法 findEmpty(member whichCastMember) 描述 函数;只对当前演员表起作用,显示下一个空的演员的位置或由whichCastMember指定的演员的下一个空的演员的位置。 实例 这个语句找出在演员100后的第一个空的演员 put findEmpty(member 100)
参见 fillMode
findLabel 语法 sprite(whichFlashSprite).findLabel(whichLableName) findLabel(sprite whichFlashSprite, whichLableName)
描述 函数;此函数返回与标签名相关联的帧数(包括在flash影片内部的) 如果指定的标签不存在返回一个0,或者如果这个flash影片的那一部分没有流入也返回一个0。
findPos 语法 list.findPos(property) findPos(list, property)
描述 列表命令;给出由list指定的属性列表中由property指定属性的位置。 在线性列表上使用findPos,如果属性的值为一个数,返回一个伪造的数,如果属性的值为字符串,返回一个剧本错误。 FindPos命令与findPosNear命令执行结果相同,除了当指定的属性不在列表中,findPos为VOID 。 实例 这个语句给出Answers列表中c属性的位置,Answers列表由[#a:10, #b:12, #c:15, #d:22]组成 Answers.findPos(#c) 结果为3,因为c是列表中的第三个属性。 参见 findPosNear, sort
findPosNear 语法 sortedList.findPosNear(valueOrProperty) findPosNear(sortedList, valueOrProperty)
描述 列表命令;只能用于已分类的列表,给出指定的已分类属性列表中由valueOrProperty指定项目的位置。 FindPosNear命令只能工作于已分类的列表。用一个值替换已分类的线性列表的属性值,列表为了一个属性排序。FindPosNear命令与findPos相似,FindPos命令与findPosNear命令相似,除了当指定的属性不在列表中,findPosNear命令用最相似文字数字的名字作为位置的值。这个命令通常用于找出在一个已分类的名字目录中最接近匹配的名字。 实例 #Raja:0]: 这个语句识别一个属性在一个已分类列表Answers中的位置,列表由[#Nile:2, #Pharaoh:4, #Raja:0]组成。 Answers.findPosNear(#Ni) 结果为1,因为在列表中Ni是与Nile最接近匹配的第一个属性。 参见 findPos
finishIdleLoad
语法 finishIdleLoad loadTag 描述 命令;强迫完成读入有指定读入标记的所有演员。 实例 这个语句完成读入有读入标记20的所有演员。 finishIdleLoad 20
参见 idleHandlerPeriod, idleLoadDone(),idleLoadMode, idleLoadPeriod, idleLoadTag, idleReadChunkSize
firstIndent 语法 chunkExpression.firstIndent 描述 文本演员属性;在chunkExpression中包含一定数量像素的首行缩进,即chunkExpression左边页边的空白。 这个值为一个整数:小于0 表示一个悬挂式缩进,0表示没有缩进,大于0表示一个普通的缩进。 实例 这个语句演员Desk的第一行的缩进为0像素。 member("Desk").firstIndent = 0
参见 leftIndent, rightIndent
fixedLineSpace 语法 chunkExpression.fixedLineSpace 描述 文本演员属性;控制文本演员中在chunkExpression那一部分的每一行行矩的高度。 这个值自身为一个整数,指出每一行行矩高度的绝对像素值。 缺省值为0,它是行矩的正常值。 实例 这个语句设演员Desk的行矩的高度的像素值。 member("Desk").fixedLineSpace = 24
fixedRate 语法 sprite(whichFlashOrGIFSprite).fixedRate the fixedRate of sprite whichFlashOrGIFSprite member(whichFlashOrGIFMember).fixedRate the fixedRate of member whichFlashOrGIFMember
描述 演员属性,sprite属性;控制一个Flash影片或动画GIF的帧频。FixedRate属性可以是整数值。缺省值是15。 如果sprite的playbackMode属性是除了#fixed以外的任何值,这个属性都会被忽视。 该属性可以被检验和设置。
实例 这个处理程序可以调整一个Flash影片角色的帧频。这个处理程序接受参数,一个涉及的sprite,一个将Flash影片速度加快或减慢的指示,一个调整速度的数值。 on adjustFixedRate whichSprite, adjustType, howMuch case adjustType of #faster: sprite(whichSprite).fixedRate = sprite(whichSprite).fixedRate + howMuch #slower: sprite(whichSprite).fixedRate = sprite(whichSprite).fixedRate - howMuch end case
end
参见 playBackMode
fixStageSize 语法 the fixStageSize 描述 影片属性;当你读入一个新的影片时,影片属性决定舞台的大小是否变(false)或者不变(true,default),与新的影片的舞台大小及其centerStage的背景无关。
FixStageSize属性不能在一个影片正在播放时改变舞台的大小。 该属性可以被检验和设置。 这个语句检测fixStageSize属性是否打开。如果fixStageSize为FALSE,它将播放头送至一个特定的帧。 if the fixStageSize = FALSE then go to frame "proper size"
这个语句设fixStageSize属性为它当前设置的相反值。 the fixStageSize = not the fixStageSize
参见 centerStage
flashRect 语法 member(whichVectorOrFlashMember).flashRect the flashRect of member whichVectorOrFlashMember
描述 演员属性;显示一个Flash影片或一个矢量图形的原始大小。属性值被当成一个Director矩形显示:例如,rect(0,0,32,32)。 对于被链接的Flash演员,只有当演员的头被完全读入内存中时,FlashRect属性才返回一个有效的值。 该属性可以被检验和设置。 这个sprite剧本改变一个Flash影片sprite的大小为这个Flash影片演员的原始大小。 on beginSprite me sprite(me.spriteNum).rect = sprite(me.spriteNum).member.FlashRect end
参见 defaultRect, defaultRectMode, state
编辑历史:[这消息被xuyi编辑过(编辑时间2000-12-05 08:51:34)] [这消息被xuyi编辑过(编辑时间2000-12-05 16:49:30)] [这消息被xuyi编辑过(编辑时间2000-12-07 22:31:34)] [这消息被xuyi编辑过(编辑时间2000-12-08 10:35:40)] [这消息被xuyi编辑过(编辑时间2000-12-08 10:37:52)] [这消息被Lakesea编辑过(编辑时间2000-12-08 20:04:18)] [这消息被xuyi编辑过(编辑时间2000-12-11 21:15:58)] [这消息被xuyi编辑过(编辑时间2000-12-16 20:42:39)] [这消息被xuyi编辑过(编辑时间2000-12-18 17:16:15)] [这消息被xuyi编辑过(编辑时间2000-12-20 17:25:31)] [这消息被xuyi编辑过(编辑时间2000-12-25 15:39:02)] [这消息被xuyi编辑过(编辑时间2001-01-03 14:56:59)]
|
 BBDD
职务:普通成员
等级:1
金币:0.0
发贴:80
|
#22000/12/7 10:28:23
"这个语句将名为entry的域中从5到 10的这些字符放入名为myKeyword的变量中。"
这个语句将名为entry的域中从第5个到第个10的字符放入名为myKeyword的变量中。
fieldofView里sprite不要翻译出来
fileName (演员表属性) 里面说的都是"演员表" 把"演员"都改为"演员表"
编辑历史:[这消息被BBDD编辑过(编辑时间2000-12-07 10:30:24)] [这消息被BBDD编辑过(编辑时间2000-12-07 10:32:57)] [这消息被BBDD编辑过(编辑时间2000-12-07 10:36:47)]
|
 BBDD
职务:普通成员
等级:1
金币:0.0
发贴:80
|
#32000/12/7 11:05:28
使用一个演员从INTERNET下载时
"使用一个演员从INTERNET下载时,为了减少下载时间"
"然后设flieName为文件在磁盘上的位置。"
然后设演员库的flieName为文件在磁盘上的位置。
"这个语句将含有Buttons演员的外部演员表的路径名和文件名设为Content.cst所在的路径。"
这个语句将Buttons外部演员表文件名设为Content.cst。
"设它的名字为” Thousands”"
把该文件作为"Thousands"外部演员表
|
 xuyi_5d
职务:普通成员
等级:2
金币:1.0
发贴:179
|
#42001/1/3 14:54:49
flashToStage 语法 sprite(whichFlashSprite).flashToStage(pointInFlashMo vie) flashToStage (sprite whichFlashSprite, pointInFlashMovie) 函数;返回Director舞台上的坐标相应于一个Flash影片内指定的坐标。这个函数同时接受Flash通道和影片的坐标,并用Director点值返回Director舞台坐标:例如,point(300,300)。 Flash影片坐标是标准的Flash影片像素,它是影片在Flash建立时的原始大小决定了的。为了计算Flash影片坐标,一个Flash影片的point(0,0)总是在它的左上角。(演员的originPoint属性只能用于旋转和缩放时,不能用于计算影片坐标。) FlashToStage和相应的stageToFlash函数帮助决定Flash影片坐标在一个Director舞台坐标之上。对于Flash和Director两者,point(0,0)在Flash舞台或Director舞台左上角。如果一个Flash sprite被伸展,缩放或旋转时,它们不能匹配。 这个处理程序接受一个点值和一个涉及的sprite作为参数,然后它设定指定的sprite左上等于在通道10中的Flash影片指定的点。 on snapSprite whichFlashPoint, whichSprite sprite(whichSprite).loc = sprite(1).FlashToStage(whichFlashPoint) updatestage end
参见 stageToFlash()
flipH 语法 sprite(whichSpriteNumber).flipH the flipH of sprite whichSpriteNumber 描述 Sprite属性;显示一个Sprite的图像是否在舞台上水平的翻转(TRUE)或(FALSE)。 图像本身绕它的套准点翻转。 使用这个方法任何旋转或倾斜保持不变,只是图像本身被翻转。 实例 这个语句显示sprite5的flipH。 put sprite (5).flipH
参见 flipV, rotation, skew
flipV 语法 sprite(whichSpriteNumber).flipV the flipV of sprite whichSpriteNumber
描述 Sprite属性;显示一个Sprite的图像是否在舞台上垂直的翻转(TRUE)或(FALSE)。 图像本身绕它的套准点翻转。 使用这个方法任何旋转或倾斜保持不变,只是图像本身被翻转。 实例 这个语句显示sprite5的flipV。 sprite (5).flipV = 1
参见 flipH, rotation, skew
float 语法 (expression).float float (expression)
描述 函数;转换一个表达式喔一个浮点数。这个数的小数点后(只是为了显示的目的,计算不被影响)由floatPrecision属性设置。 实例 这个语句转换整数1为浮点数1: put (1).float -- 1.0
实例 数字运算可以使用浮点执行;如果期间有任何一个为浮点数,整个运算以浮点执行: "the floatPrecision = 1 put 2 + 2 -- 4 put (2).float + 2 -- 4.0 the floatPrecision = 4 put 22/7 -- 3 put (22).float / 7
-- 3.1429"
参见 floatPrecision, ilk()
floatP 语法 (expression).floatP floatP(expression)
描述 函数,显示由表达式指定的值是否为一个浮点数(1或TRUE) 或 (0或FALSE) FloatP中的P是谓语。 实例 这个语句测试3.0是否为一个浮点数。Message窗口显示数字1,指出这个语句是TRUE put (3.0).floatP -- 1
这个语句测试3.0是否为一个浮点数。Message窗口显示数字0,指出这个语句为FALSE put (3).floatP -- 0
参见 float(),ilk(),integerP(),objectP(),stringP(),symbolP()
floatPrecision 语法 the floatPrecision 描述 影片属性;完成浮点数显示指定的小数位数。FloatPrecision的值必须是一个整数。最大值是15;缺省值是4。 FloatPrecision属性只用于显示浮点数的小数点位数,它不改变数在执行计算的值。 如果floatPrecision是从1至15的数,浮点数在小数点后显示这个数量的数字。保留跟着的零 如果floatPrecision是0,浮点数转为最相近的整数。没有小数点出现。 如果floatPrecision是一个负数,浮点数转为相对数量小数的绝对值。跟着的零被丢下。 该属性可以被检验和设置。 实例 这个语句转换3.0的平方根为三位小数的数。 the floatPrecision = 3 x = sqrt(3.0) put x
-- 1.732
实例 这个语句转换3.0的平方根为八位小数的数。 the floatPrecision = 8 put x
-- 1.73205081
flushInputEvents 语法 flushInputEvents() 描述 这个命令将从Director的消息队列中冲洗任何等待的鼠标或键盘事件。一般它有用,当lingo在一个紧密的repeat循环并且制作者不想使任何的鼠标单击或键盘按下事件通过。这个命令只在运行时起作用,在制作期间没有任何作用。 实例 这个Lingo当一个repeat循环执行时屏蔽鼠标和键盘事件: repeat with i = 1 to 10000 flushInputEvents() sprite(1).loc = sprite(1).loc + point(1, 1)
end repeat
参见 the mouseDown (system property), the mouseUp (system property), on keyDown, on keyUp
font 语法 member(whichCastMember).font the font of member whichCastMember
描述 文本和域演员属性;确定字体用于显示指定演员包含的字符,只要一个空演员。参数whichCastMember可以是任一个演员名字或号码。 当转换一个影片时Director player for Java不映射其他的字体;Java用缺省字体代替任何不支持的字体。把一个影片当成一个applet回放时,影片中的字体成员属性的值只能是Java支持的字体。 Java只提供下列的跨平台字体: Java font Windows font Macintosh font Helvetica Arial Helvetica TimesRoman Times New Roman Times Courier Courier-New Courier Dialog MS Sans Serif Chicago or Charcoal DialogInput MS Sans Serif Geneva ZapfDingbats WingDings Zapf Dingbats Default Arial Helvetica 字体成员属性可以被检验和设置。 要看字体在完整影片中使用的一个实例,请打开Director应用程序所在文件夹下的Learning\Lingo 实例s目录内的Text影片。 实例 这个语句设置名为oldFont的变量为域演员Rokujo Speaks的当前字体设置: oldFont = member("Rokujo Speaks").font
参见 text; alignment, fontSize, fontStyle, lineHeight (cast member property)
fontSize 语法 member(whichCastMember).fontSize the fontSize of member whichCastMember
描述 域演员属性;确定用于显示指定演员包含的字符的字体大小,只要一个空演员。参数whichCastMember可以是任一个演员名字或号码。 这个属性可以被检验和设置。当检验时,它返回域中首行的高度。当设置时,它对域中的每一行都起作用。 要看fontSize在完整影片中使用的一个实例,请打开Director应用程序所在文件夹下的Learning\Lingo 实例s目录内的Text影片。 实例 这个语句将名为oldSize的变量的值设为域演员Rokujo Speaks的当前fontSize oldSize = member("Rokujo Speaks").fontSize
实例 这个语句设置文本演员myMenu的第三行为24点: member("myMenu").fontSize = 12
参见 text; alignment, font, lineHeight (cast member property)
编辑历史:[这消息被xuyi编辑过(编辑时间2001-01-04 15:30:30)]
|
 xuyi_5d
职务:普通成员
等级:2
金币:1.0
发贴:179
|
#52001/1/4 15:31:25
fontStyle 语法 member(whichCastMember).fontStyle the fontStyle of member whichCastMember member(whichCastMember).char[whichChar].fontStyle the fontStyle of char whichChar member(whichCastMember).word[whichWord].fontStyle the fontStyle of word whichWord member(whichCastMember).line[whichLine].fontStyle the fontStyle of line whichLine
描述 Cast member property; determines the styles applied to the font used to display the specified field cast member, character, line, word, or other chunk expression and requires that the field cast member contain characters, if only a space. 演员属性;确定应用于字体的式样,用于显示指定的域演员,字符,直线,单词,或其他块表达式和域演员包含的字符所需要的字体,只要一个空演员。 The value of the property is a string of styles delimited by commas. Lingo uses a font that is a combination of the styles in the string. The available styles are plain, bold, italic, underline, shadow, outline, and extended; on the Macintosh, condensed also is available. 这个属性的值是一个用逗号划界的式样字符串。Lingo使用的字体是这个式样字符串的结合体。可用的式样是常规plain, 粗体bold, 倾斜italic, 下划线underline, 阴影shadow, 轮廓outline, 和 延长extended;在Macintosh上,还有浓缩condensed。 Use the style plain to remove all currently applied styles. The parameter whichCastMember can be either a cast member name or number. 使用常规式样去移除所有当前应用的式样。参数whichCastMember可以是任一个演员名字或号码。 For a movie playing back as an applet, plain, bold, and italic are the only valid styles for the fontStyle member property. The Director player for Java doesn’t support underline, shadow, outline, extended, or condensed font styles. 当一个影片作为一个applet回放时,只有常规, 粗体, 倾斜, 下划线对fontStyle成员属性合法。Director player for Java不支持下划线, 阴影, 轮廓, 延长或浓缩字体式样。 This property can be tested and set. 该属性可以被检验和设置。 To see an 实例 of fontStyle used in a completed movie, see the Text movie in the Learning\Lingo 实例s folder inside the Director application folder. 要看fontStyle在完整影片中使用的一个实例,请打开Director应用程序所在文件夹下的Learning\Lingo 实例s目录内的Text影片。 实例 This statement sets the variable named oldStyle to the current fontStyle setting for the field cast member Rokujo Speaks: 这个设名为oldStyle的变量为域演员Rokujo Speaks的当前fontStyle设置。 oldStyle = member("Rokujo Speaks").fontStyle
实例 This statement sets the fontStyle member property for the field cast member Poem to bold italic: 这个语句设域成员Poem的fontStyle成员属性为粗斜体。 member("Poem").fontStyle = [#bold, #italic]
实例 This statement sets the fontStyle property of the third word of the cast member Son’s Names to italic: 这个语句设演员Son’s Names的第三个单词的fontStyle属性为斜体。 member("Son's Names").word[3].fontStyle = [#italic]
实例 This statement sets the fontStyle member property of word 1 through word 4 of text member myNote to bold italic: 这个语句设文本成员myNote从第一个到第四个单词的fontStyle成员属性为粗斜体。 member("myNote").word[1..4].fontstyle = [#bold, #italic]
参见 text; alignment, font, lineHeight (cast member property), fontSize
foreColor 语法 member(castName).foreColor = colorNumber set the foreColor of member castName to colorNumber sprite whichSprite.foreColor the foreColor of sprite whichSprite
描述 Cast member property; sets the foreground color of a field cast member. 演员属性;设置域演员的前景色。 For a movie that plays back as an applet, specify colors for the foreColor sprite property as the decimal equivalent of the 24-bit hexadecimal values used in an HTML document. 当一个影片作为一个applet回放时,为sprite属性foreColor指定的颜色当作一个等于24位十六进制数值的十进制数在一个HTML文档中使用。 It is not recommended to apply this property to bitmap cast members deeper than 1-bit, as the results are difficult to predict. 当位图演员比一个深时不推荐使用,因为结果与预知的不同。 To see an 实例 of foreColor used in a completed movie, see the Text movie in the Learning\Lingo 实例s folder inside the Director application folder. 要看foreColor在完整影片中使用的一个实例,请打开Director应用程序所在文件夹下的Learning\Lingo 实例s目录内的Text影片。 实例 The hexadecimal value for pure red, FF0000, is equivalent to 16711680 in decimal numbers. This statement specifies pure red as a cast member’s forecolor: 纯红的十六进制数值为FF0000,等于十进制数16711680。这个语句指定纯红作为演员的前景色: member(20).foreColor = 16711680
实例 This statement changes the color of the field in cast member 1 to the color in palette entry 250: 这个语句改变演员1的域的颜色为调色板的250号。 member(1).foreColor = 250
实例 The following statement sets the variable oldColor to the foreground color of sprite 5: 下列语句设置变量oldColor的值为sprite5的前景色。 oldColor = sprite(5).foreColor
实例 The following statement makes 36 the number for the foreground color of a random sprite from sprites 11 to 13. 下列语句随机的设sprite11到13中的一个的前景色为36。 sprite(10 + random(3)).foreColor = 36
实例 The following statement sets the foreColor of word 3 of line 2 of text member my描述 to a value of 27: 下列语句设置文本演员my描述第2行第3个单词的前景色为27: member("my描述").line[2].word[3].forecolor = 27
参见 backColor, color (sprite property)
forget 语法 timeout("timeoutName").forget() forget(timeout("timeoutName"))
描述 This timeout object function removes the given timeoutObject from the timeoutList, and prevents it from sending further timeout events. 这个timeout目标函数从timeoutList移除已有的timeoutObject,并且防止它发送更多的timeout事件。 实例 This statement deletes the timeout object named AlarmClock from the timeoutList: 这个语句从从timeoutList移除名为AlarmClock的timeout目标。 timeout("AlarmClock").forget()
参见 timeout(),timeoutHandler, timeoutList, new()
forget window 语法 window(whichWindow).forget() forget window whichWindow
描述 Window property; instructs Lingo to close and delete the window specified by whichWindow when it’s no longer in use and no other variables refer to it. 窗口属性;命令Lingo关闭和删除由whichWindow指定的窗口,当它很久没有使用并且没有其它的变量提到它。 When a forget window command is given, the window and the movie in a window (MIAW) disappear without calling the on stopMovie, on closeWindow, or on deactivateWindow handlers. 当一个forget window命令发出时,如果没有在on stopMovie, on closeWindow, 或 on deactivateWindow 处理过程中窗口和MIAW不可见。 If there are many global references to the movie in a window, the window doesn’s respond to the forget command. 如果有一些全局变量涉及了MIAW,窗口不会对forget命令作出响应。 实例 This statement instructs Lingo to delete the window Control Panel when the movie no longer uses the window: 这个语句命令Lingo当影片很久没有使用窗口Control Panel时将它删除。 window("Control Panel").forget()
参见 close window, open window
frame() (函数) 语法 the frame 描述 Function; returns the number of the current frame of the movie. 函数;返回影片当前的帧数。 实例 This statement sends the playback head to the frame before the current frame: 这个语句将播放头送至当前帧的前一帧: go to (the frame - 1)
参见 go, label(),marker()
frame (sprite 属性) 语法 sprite(whichFlashSprite).frame the frame of sprite whichFlashSprite
描述 Sprite property; controls which frame of the current Flash movie is displayed. The default value is 1. Sprite 属性;控制当前Flash影片的第几帧被显示。缺省值为1。 This property can be tested and set. 该属性可以被检验和设置。 实例 This frame script checks to see if a Flash movie has finished playing (by checking to see if the current frame is equal to the total number of frames in the movie). If the movie has not finished, the playback head continues to loop in the current frame; when the movie finishes, the playback head continues to the next frame. (This script assumes that the movie was designed to stop on its final frame and that it has not been set for looped playback.) 这个帧脚本检查一个Flash影片是否播放完(通过检查当前是否等于影片的总帧数)。如果影片没有播放完成,播放头继续在当前帧循环;如果影片播放完成,播放头继续下一帧。(这个脚本假定影片设计为在最后一帧停止,而不是循环播放。) on exitFrame if sprite(5).frame < sprite(5).member.frameCount then go to the frame end if end
frameCount 语法 member(whichFlashMember).frameCount the frameCount of member whichFlashMember
描述 Flash cast member property; indicates the number of frames in the Flash movie cast member. The frameCount member property can have integer values. Flash演员属性;给出Flash演员的总帧数。FrameCount属性只能有整数值。 This property can be tested but not set. 该属性可以被检验但不能设置。 实例 This sprite script displays, in the Message window, the channel number and the number of frames in a Flash movie. 这个脚本在Message窗口显示通道号和Flash影片的总帧数 property spriteNum on beginSprite me put ""The Flash movie in channel"" && spriteNum && has"" && sprite(spriteNum).member.frameCount && ""frames."" End
frameLabel 语法 the frameLabel 描述 Frame property; identifies the label assigned to the current frame. When the current frame has no label, the value of the frameLabel property is 0. 帧属性;确认给予当前帧的标签。当当前帧没有标签时,frameLabel属性的值为0. This property can be tested at any time. It can be set during a Score generation session. 这个属性可以在任何时间被检验。它可以在一个Score产生的期间设置。 实例 This statement checks the label of the current frame. In this case, the current frameLabel value is Start: 这个语句检查当前帧的标签。现在,当前frameLabel的值为Start: put the frameLabel -- "Start"
参见 labelList
framePalette 语法 the framePalette 描述 Frame property; identifies the cast member number of the palette used in the current frame, which is either the current palette or the palette set in the current frame. 帧属性;确定当前帧使用的调色板的演员号,它可以是当前调色板或当前帧设定的调色板。 Because the browser controls the palette for the entire Web page, the Director player for Java always uses the browser’s palette. For the most reliable color when authoring a movie for playback as a Director player for Java, use the default palette for the authoring system. When you want exact control over colors, use Shockwave instead of Java. 因为在整个网页中由浏览器控制调色板,Director player for Java总是使用浏览器的调色板。为了Director player for Java回放时制作一个影片,为了可靠显示大多数颜色,使用制作系统缺省的调色板。 This property can be tested. It can also be set during a Score generation session. 这个属性可以被检验。它也可以在一个Score产生的期间设置。 实例 This statement checks the palette used in the current frame. In this case, the palette is cast member 45. 这个语句检查当前帧使用的调色板。现在调色板是45号演员。 put the framePalette
-- 45
实例 This statement makes palette cast member 45 the palette for the current frame: 这个语句设当前帧使用的调色板为45号演员。 the framePalette = 45
参见 puppetPalette
frameRate 语法 member(whichCastMember).frameRate the frameRate of member whichCastMember 描述 Cast member property; specifies the playback frame rate for the specified digital video, or Flash movie cast member. 演员属性;指定指定的数字视频或Flash影片演员的播放帧速度。 The possible values for the frame rate of a digital video member correspond to the radio buttons for selecting digital video playback options. 一个数字视频的播放帧速度可能的值相应于选择数字视频的播放选项的单选按纽。 When the frameRate member property is between 1 and 255, the digital video movie plays every frame at that frame rate. The frameRate member property cannot be greater than 255. 当frameRate成员属性在1和255之间时,数字视频影片在这个速度下播放每一帧。frameRate成员属性不能大于255. When the frameRate member property is set to -1 or 0, the digital video movie plays every frame at its normal rate. This allows the video to sync to its soundtrack. When the frameRate is set to any value other than -1 or 0, the digital video soundtrack will not play. 当frameRate成员属性设为-1或0时,数字视频影片在正常速度下播放每一帧。这时允许影象与它的声音同步。 当frameRate成员属性设为-1或0之外的任何值时,数字视频声音将不播放。 When the frameRate member property is set to -2, the digital video movie plays every frame as fast as possible. 当frameRate成员属性设为-2时,数字视频影片在尽可能快的速度下播放每一帧。 For Flash movie cast members, the property indicates the frame rate of the movie created in Flash. This property can be tested but not set. 对于Flash影片演员,这个属性显示影片在Flash中创建里的帧速度。 该属性可以被检验但不可设置。 实例 This statement sets the frame rate of the QuickTime digital video cast member Rotating Chair to 30 frames per second: 这个语句QuickTime数字视频演员Rotating Chair的帧速度为每秒30帧: member("Rotating Chair").frameRate = 30
实例 This statement instructs the QuickTime digital video cast member Rotating Chair to play every frame as fast as possible: 这个语句命令QuickTime数字视频演员Rotating Chair在尽可能快的速度下播放每一帧: member("Rotating Chair").frameRate = -2
实例 This sprite script checks to see if the sprite’s cast member was originally created in Flash with a frame rate of less than 15 frames per second. If the movie’s frame rate is slower than 15 frames per second, the script sets the playBackMode property for the sprite so it can be set to another rate. The script then sets the sprite抯 fixedRate property to 15 frames per second. 这个帧脚本检查sprite的演员原先在Flash建立时的帧速度是否小于15帧每秒。如果影片的帧速度慢于每秒15帧,该脚本设置该sprite的playBackMode属性,以便它可以设置为其他的速度。接着脚本设sprite的fixedRate属性为15帧每秒。 on beginSprite me if sprite(spriteNum).member.frameRate < 15 then sprite(spriteNum).playBackMode = #fixed sprite(spriteNum).fixedRate = 15 end if end
参见 fixedRate, movieRate, movieTime, playBackMode
frameReady 语法 frameReady(frameN) frameReady(frameN, frameZ) frameReady() frameReady(sprite whichFlashSprite, frameNumber)
描述 Function; for a Flash movie, determines whether a streaming movie is ready for display. If enough of a sprite has streamed into memory to render the frame (integer for frame number, string for label) specified in the frameNumber parameter, this function is TRUE; otherwise it is FALSE. For a Director movie, this function determines whether all the cast members for frameN (the number of the frame) are downloaded from the Internet and available locally. 函数;对于Flash影片,决定一个流影片是否准备显示。如果足够将一个sprite在frameNumber参数(整数表示帧数,字符串表示标签)中指定的帧读入内存,函数为TRUE;否则为FALSE。对于一个Director影片,这个函数决定是否将用于frameN(帧数)的所有演员从Internet和可用的局域网上下载。 This function is useful only when streaming a movie, range of frames, cast, or linked cast member. To activate streaming, set the Movie:Playback properties in the Modify menu to Use Media as Available or Show Placeholders. 这个函数只有当流式化一个影片,一定范围的帧,演员表,或链接演员表时才有用。要激活流式化,在Modify菜单里设影片的Playback属性为Use Media as Available 或 Show Placeholders。 For Director movies, projectors, and Shockwave movies: 用于Director影片,放映机,和Shockwave影片。 frameReady (frameN)- determines whether the cast members for frameN are downloaded. frameReady (frameN)-决定是否将用于frameN的演员下载。 frameReady (frameN, frameZ)-Determines whether the cast members for frameN through frameZ are downloaded. frameReady (frameN, frameZ)-决定是否将用于从frameN至frameZ的演员下载。 frameReady()-determines if cast member used in any frame of the Score are downloaded. frameReady()-决定是否将用于任何Score的帧的演员下载。 For a demonstration of the frameReady function used with a Director movie, see the frameReady movie. 对于frameReady在一个Director影片中使用的范例,请看frameReady影片。 This function can be tested but not set. 该函数可以被检验但不能设置。 实例 This statement determines whether the cast members for frame 20 are downloaded and ready to be viewed: 这个语句决定是否将用于20帧的演员下载并准备被观看: on exitFrame if frameReady(20) then -- go to frame 20 if all the required --castmembers are locally available go to frame 20 else -- resume animating loop while background --is streaming got to frame 1 end if
end
实例 This frame script checks to see if frame 25 of a Flash movie sprite in channel 5 can be rendered. If it can抰, the script keeps the playback head looping in the current frame of the Director movie. When frame 25 can be rendered, the script starts the movie and lets the playback head proceed to the next frame of the Director movie. 这个帧脚本检查通道5中的Flash影片角色的25帧是否被读入了。如果没有,脚本使播放头在Director影片当前帧循环。当25帧是被读入时,脚本开始这个影片并让播放头进入这个Director影片的下一帧。 on exitFrame if the frameReady(sprite 5, 25) = FALSE then go to the frame else play sprite 5 end if
end
参见 mediaReady
frameScript 语法 the frameScript 描述 Frame property; contains the unique cast member number of the frame script assigned to the current frame. 帧属性;将包含帧剧本的独特的演员号码赋给当前帧。 The frameScript property can be tested. During a Score recording session, you can also assign a frame script to the current frame by setting the frameScript property. FrameScript属性可以被检验。在一个Score记录时间期间,你也可以通过frameScript属性将一个帧脚本赋给当前帧。 实例 This statement displays the number of the script assigned to the current frame. In this case, the script number is 25. 这个语句显示赋给当前帧的脚本的号码。现在这个脚本的号码是25。 put the frameScript -- 25
实例 This statement makes the script cast member Button responses the frame script for the current frame: 这个语句设脚本演员Button responses为当前帧的帧脚本: the frameScript = member "Button responses"
编辑历史:[这消息被xuyi编辑过(编辑时间2001-01-04 15:31:55)] [这消息被xuyi编辑过(编辑时间2001-01-04 16:42:34)]
|
 xuyi_5d
职务:普通成员
等级:2
金币:1.0
发贴:179
|
#62001/1/4 16:44:05
我的全部结束了,敬请指正。
|