|
主题: 第4组controller ~ doubleclick
|
 acneyouth
职务:普通成员
等级:1
金币:1.0
发贴:181
|
#12000/12/11 23:50:11
请问你是不是用的D8的help如果是的话,请翻译完整,THX
1、controller 语法:member(whichCastMember).controller the controller of member whichCastMember 描述:数字视频成员属性;决定数字视频影片成员是否显示它的控制按钮。设置此属性为 1显示控制按钮,设置为0隐藏控制按钮。 此属性仅用于QuickTime数字视频。 ·对Video for Windows成员设置此属性将不会有效果,也不会产生出错消息。 ·检测Video for Windows成员的此属性总是返回False。 数字视频必须使用direct-to-stage回放模式才能显示控制按钮。 例:下例使名为"Demo"的QuickTime成员显示它的控制按钮。 点句法: member("Demo").controller = 1
传统句法: set the controller of member "Demo" to 1
2、copypixel() 语法:imageObject.copyPixels(sourceImageObject, destinationRect, sourceRect {, parameterList}) imageObject.copyPixels(sourceImageObject,destinationQuad, sourceRect {, parameterList }) 描述:使用本函数前先要建立图片的image,关于这点请看image的帮助。 本函数将源图片(sourceImageobject)中坐标为sourcerect的区域拷贝到imageObject中坐标为 destinationRect或destinationQuad的区域。 添加参数使你能够对拷贝的像素进行一些操作,参数的数量不限,参数列表如下: #color 前景色,缺省为黑色(The foreground color to apply for colorization effects. ) #bgcolor 背景色,缺省为白色 #ink 对被拷贝的像素使用的油墨。用油墨的符号名称或编号表示 blendLevel 设置blend属性值,可取0——255,默认为255。取低于255的值 时,如果你使用的是backgroundtransparent油墨,则油墨效果会改变为#blend或#blendtransparent。 #dither 决定是否使用抖动效果,值为true或false,缺省为false。 #maskImage 指定一个mask(遮罩)或matte对象,注意,如果被拷贝的对象(sourceImage)有alpha通道且usealpha属性为true,这#maskImage参数被忽略。 #maskOffset 指定mask的位置,以sourceImage的左上角为坐标0点,缺省值为(0,0)。 如果你要把一个image对象的某一区域拷贝到它自己的另一区域,最好先为它建一个副本,把要拷贝的部分拷进副本,再拷回原image对象。 如果要给一个image对象使用matte油墨效果,最好先用creatmatte()建一个matte对象,再将此对象以参数传给image对象。
例1: 以下程序将成员“happy“的image的内容全部拷进成员”flower“的image中。如果"flower"的尺寸小于"happy"的尺寸,程序将自动调整 “flower”的尺寸。 member("flower").image.copyPixels(member("Happy").image,\
rect(20, 20, 100, 40), rect(0, 0, 200, 90))
例2: 下例将成员"happy"中矩形框(0, 0, 200, 90)中的内容拷贝到成员"flower"的坐标为(20, 20, 100, 40)的矩形框中。注意目标矩形框的尺寸会改变。 member("flower").image.copyPixels(member("Happy").image, \
member("flower").rect, member("Happy").rect)
例3: 下例将成员"happy"的全部内容拷进成员"flower"中,blend属性被设为50,既半透明状态,部分的显示下边的成员"flower"。 member("flower").image.copyPixels(member("Happy").image,\
member("Happy").rect, member("Happy").rect, [#blendLevel: 50])
3、copyrightInfo 语法:member(whichCastMember).copyrightInfo
copyrightInfo of member whichCastMember 描述:本属性用于Shockwave Audio (SWA),用来显示和设置版权信息,并且在 Shockwave Audio (SWA) 已经被播放或是被预加载后才作用。
例1: 以下程序将名为“SWAfile”的swa文件的版权信息显示在名为“Info Display”的域角色成员中。 Dot syntax:
set whatState = the state of member "SWAfile" if whatState > 1 AND whatState < 9 then put member("SWAfile").copyrightInfo into member("Info Display")
end if
Verbose syntax:
set whatState = the state of member "SWAfile" if whatState > 1 AND whatState < 9 then put the copyrightInfo of member "SWAfile" into member "Info Display"
end if
4、copyToClipBoard 语法: member(whichCastMember).copyToClipBoard() copyToClipBoard member whichCastMember 将cast member拷贝到剪贴板,然后就可以从剪贴版拷贝到movie的其它cast中,或者 其它的应用程序中。
例1: 下例将名为"chair"的成员拷贝到剪贴板。 member("chair").copyToClipboard()
例2: 下例将序号为5的成员拷贝到剪贴板。 member(5).copyToClipboard()
5、cos 语法:(angle).cos
cos (angle) 数学函数,求余弦,angle为弧度(不是角度)。 例1: 下例计算pi的1/2的余弦并在消息窗口中输出结果。 put (PI/2).cos
6、count 语法:list.count count (list) count(theObject) object.count textExpression.count list.count和count(list)返回线性表或属性表的元素个数, count(theObject)和object.count返回对象中的属性变量的个数,包括它的ancestor(祖先)中的属性 的数量。 textExpression.count有三种用法: (1)member(whichCastMember).text.line.count统计行数 (2)member(whichCastMember).text.char.count统计词数,包括标点,汉字被视为一个 字符 (3)member(whichCastMember).text.word.count统计英文词数,不包括标点。
7、cpuHogTicks 语法:the cpuHogTicks =N N为整数,决定director的projector每隔多长时间将cpu的使用权交还个系统,以处理后台事件和键盘事 件等。缺省为20个tick
编辑历史:[这消息被acneyouth编辑过(编辑时间2000-12-12 09:06:00)] [这消息被lakesea编辑过(编辑时间2000-12-12 12:04:35)] [这消息被acneyouth编辑过(编辑时间2000-12-12 13:10:53)] [这消息被校对组编辑过(编辑时间2000-12-20 10:46:23)] [这消息被acneyouth编辑过(编辑时间2001-01-05 14:50:52)]
|
 LS
职务:管理员
等级:12
金币:30.8
发贴:8074
|
#22000/12/12 12:03:03
小豆豆,若帖子里有与笑脸符号相近的符号,发贴时在下方的选项中选择“禁止笑脸”转换,我帮你把笑脸改回符号。
5D艺术网站长。
|
 acneyouth
职务:普通成员
等级:1
金币:1.0
发贴:181
|
#32000/12/18 23:51:32
8、createMask() 语法:imageObject.createMask() 本函数为copyPixels()函数创建并返回一个mask对象。mask对象不是image对象,它只有在使用 copyPixels()来复制sprite的mask墨水效果的时候才有用处。你可以把mask对象存入变量以便重复使用。
例1:以下程序把成员"Happy"的内容拷贝到成员"brown square"中。成员"gradient2"是作为被拷贝 对象的mask来使用。该mask相对于目标区域向上偏移10个象素,向左偏移10个象素。 member("brown square").image.copyPixels(member("Happy").image, \ rect(20, 20, 150, 108), member("Happy").rect, \
[#maskImage:member("gradient2").image.createMask(), maskOffset:point(-10, -10)])
参考:copyPixels(),createMatte(),ink
9、createMatte() 语法:imageObject.createMatte({alphaThreshold}) 本函数创建并返回一个matte对象,以用于copyPixels()函数复制sprite的matte墨水效果。matte 对象是director根据指定的image对象的alpha图层来创建的。{alphaThreshold}参数的作用是忽略alpha 通道的取值小于该参数的象素。它只用于带alpha通道的32-bit 的image。 matte对象不是一个image对象,它只为copyPixels()函数服务。你可以把matte对象存入变量以便重复使用。 例:以下程序通过image对象"testImage"的alpha通道创建一个新的matte对象,并且将透明度小于50%的象素忽略。 newMatte = testImage.createMatte(128) 参考:copyPixels(),createMask()
10、creationDate 语法: member.creationDate the creationDate of member 描述:director会自动记录创建成员的时间(包括日期)。本函数可以测试和更改这个时间。本函数对程序的执行没有任何影响。 例1、以下程序在消息窗口中输出成员1的创建时间: put member(1).creationDate -- date( 1999, 12, 8 )
11、crop (1)作为成员属性: 语法:member(whichCastMember).crop=true(or false) the crop of member whichCastMember to true(or false) 用于数字视频。当memeber(whichCastMember).crop=false的时候,改变对应的sprite的尺寸,会使它随之缩放。当memeber(whichCastMember).crop=true的时候,改变对应的sprite的尺寸,如果sprite的尺寸小于成员的尺寸,对应的区域就不会被显示。 例:下例设置了成员interView的crop属性。 member("Interview").crop = TRUE
(2)作为针对image对象的命令 语法:imageObject.crop(rectToCropTo) 描述:rectToCropTo是一个rect格式的值(例如rect(n1,n2,n3,n4),本函数将返回imageobject中rectToCropTo区域内的内容。可将这个返回值赋给一个image对象。源image对象(imageObject)不会被改变。
例1、以下程序将sprite(10)的内容拷贝到成员"sprite snapshot"中。如果成员"sprite snapshot"的尺寸不同于sprite(10)的尺寸,sprite(10)要被缩放以填满成员"sprite snapshot" set stageImage = (the stage).image set spriteImage = stageImage.crop(sprite(10).rect) member("sprite snapshot").image = spriteImage 例2、下例在成员"flower"中取出以成员"happy"的rect属性为坐标的区域,拷贝到成员"happy"的image中。 member("Happy").image = member("Flower").image.crop(member("Happy").rect)
(3)作为针对成员的命令 语法:member(whichMember).crop(rectToCropTo) crop member whichMember, rectToCropTo 用于位图,可以将位图成员裁剪到指定的尺寸,也可以配合"the stage"对象以得到舞台上某个区域的映象。 例:下例将一个位图成员的内容设置为舞台的映象,然后将sprite(10).rect区域的内容裁剪出来。 member("stage image").picture = (the stage).picture member("stage image").crop(sprite(10).rect) 参考:picture (cast member property)
12、on cuePassed 语法:on cuePassed(channelID, cuePointNumber,cuePointName) statement(s) end 或: on cuePassed(me,channelID, cuePointNumber,cuePointName) statement(s) end 描述:系统消息和事件句柄。可以在声音或视频等素材(可能包括其它素材)中用相应的编辑器插入多个线索点(cue point),每当程序经过线索点(cue point)之后,就会发出cuepassed消息。on cuePassed句柄接受到该消息,就会执行句柄中的程序。 各参数的含义如下: me——代表使用该参数的程序所属的精灵。在行为中必须包含该参数。 channelID—— 声音或精灵的通道号。 cuePointNumber——引发on cuePassed事件的线索点在成员的线索点的列表中的索引号。 cuePointName——引发on cuePassed事件的线索点的名字。 接收消息的优先级是:1精灵脚本,2成员脚本,3帧脚本,4电影脚本。精灵脚本只能接收到它所属精灵的cue point引发的消息。
例:以下程序应写在帧脚本或电影脚本中,它在消息窗口中报告声音通道1中的每个cue point经过的消息。 on cuePassed channel, number, name if (channel = #Sound1) then put "CuePoint" && number && "named" && name && "occurred in sound 1" end if end
参考:scriptInstanceList, cuePointNames, cuePointTimes, isPastCuePoint()
13、cuePointNames 语法:member(whichCastMember).cuePointNames the cuePointNames of member whichCastMember 描述:成员属性,是一个线性表,列出所有线索点(cue point)的名字,没有名字的将用空字串替代。线索点的名字可以用于声音、视频的同步。SoundEdit成员、QuickTime数字视频成员和含有线索点(cue point)的xtra成员都支持此属性。对在运行时实时产生线索点(cue point)的xtra成员使用此属性,得不到名字列表。 例:在消息窗口输出成员"symphony"的第三个线索点的名字。 put member("symphony").cuePointNames[3]
参考:put member("symphony").cuePointNames[3]
14、cuepointTimes 语法:member(whichCastMember).cuePointTimes the cuePointTimes of member whichCastMember 描述:成员属性。以毫秒列出所给线索点所在的时间。对于音频与视频的同步有重要作用。SoundEdit成员、QuickTime数字视频成员和含有线索点(cue point)的xtra成员都支持此属性。对在运行时实时产生线索点(cue point)的确xtra成员使用此属性,得不到时间列表。 例:以下程序输出音频成员的第三个线索点所在的时间。 put member("symphony").cuePointTimes[3]
15、currentSpriteNum 语法:the currentSpriteNum 描述:电影属性。指出有剧本正在运行的精灵的通道号。这里的“剧本”包括行为( behaviors)和成员脚本(cast member scripts) 如果对帧脚本和影片脚本使用此属性,将返回0。此属性的功能与(me.spriteNum)相似,但它不需要在句柄上加上me (如on mouseup me)。 本属性在需要将低版本的.dir文件转换到6.0以上版本时很有用(从6.0开始director引入了“行为”)。它使你不需要完全重写那些类似行为(behavior-like)的函数。现在有了行为,它就不是必要的了。 例:下例可以写为成员脚本或影片脚本,它将精灵的成员换成另一个成员。 on mouseDown sprite(the currentSpriteNum).member = member "DownPict" end
16、currentTime sprite(whichSprite).currentTime the currentTime of sprite whichSprite sound(channelNum).currentTime 描述:精灵和声音通道属性。用于音频精灵QuickTime数字视频精灵,或任何支持线索点(cue point)的xtra。它以毫秒返回当前的执行时间。对于音频通道,它返回正在指定音频通道中播放的音频成员的当前执行时间。 此属性可以检测和设置。对于设置,有效值从0到成员的时间长度(duration)。 Shockwave音频(SWA)是作为精灵出现在精灵通道,在音频通道播放声音。应该通过引用它的精灵通道号而不是音频通道号来使用它。 例:下例显示在10号通道中的音频精灵的当前播放时间,单位为毫秒。 member("time").text = string(sprite (10).currentTime/ 1000)
17、cursor(命令) 语法:cursor [castNumber, maskCastNumber] cursor whichCursor cursor (member whichCursorCastMember) 描述:命令,用于改变鼠标指针,直到将cursor的值改为0。(各位大虾请帮我译一下:changes the cast member or built-in cursor that is used for a cursor and stays in effect until you turn it off by setting the cursor to 0.) · 语法cursor [castNumber, maskCastNumber]用来指定用作指针的成员,以及它的可选的mask。指针的热点是成员的注册点。指定的成员必须是位深为1-bit的位图,尺寸必须小于16*16像素。如果大于这个尺寸,director将自动裁出坐上角16*16像素的部分作为指针,指针的热点仍在成员的注册点。 ·语法 cursor whichCursor 用于指定缺省的系统指针。“whichCursor”必须取以下值之一: 0* 没有指针被设置(译者注:就是将指针的控制权交还系统) -1 箭头指针 1 “I”字型指针 2 "十"字型指针 3* 粗"十"字型指针 4 watch指针(只用于Macintosh系统) 200* 空指针(指针被隐藏) 带*号表示java播放器不支持这种指针样式,它将用一个箭头指针代替它。 ·语法cursor (member whichCursorCastMember)使用cursor Xtra来设置指针。(原文如下:“Use the syntax cursor (member whichCursorCastMember) for the custom cursors available through the Cursor Xtra.” 请大虾们看看译的对不对。) 请注意区分"cursor 1"和"cursor [1]"这两种语法的区别。前一种指定系统内置的I型指针,后一种指定成员1作为指针。 注:虽然cursor Xtra允许多种类型的成员作为指针,但文本成员不能被用作指针。
在发生系统事件,比如file loading事件时,操作系统将不管当前影片中的cursor命令的设置,显示watch指针,在将控制权交还应用程序后将指针该为pointer cursor指针(不知pointer cursor指什么,请大虾帮忙)。在多个影片间跳转时,如果多个影片使用相同的非系统内置的指针,可以把指针的序号存在全局变量(global variable)中,这样在跳转时,它将驻留在内存中。
cursor命令能被xtra或外部的agent中断。如果指针被设置成一个值,一个xtra或外部agent又取得了指针的控制权,此时再将指针设为初始值的命令将没有效果,因为director收不到指针被改变的消息。遇到这种情况,可以将指针设为第三个值,再将指针设为初始值。 例1:只要status=1,以下程序在Macintosh系统上将指针设为watch指针,字Windows系统上将指针设为沙漏指针。 if status = 1 then cursor 4 以下句柄检测member成员是否是1-bit位图成员,如果是就将它设为指针。 on myCursor someMember if the depth of member someMember = 1 then cursor[someMember] else beep end if
end 参考:cursor (sprite property), rollOver()
编辑历史:[这消息被acneyouth编辑过(编辑时间2000-12-19 09:05:56)] [这消息被acneyouth编辑过(编辑时间2001-01-01 22:38:17)] [这消息被acneyouth编辑过(编辑时间2001-01-04 15:46:11)]
|
 acneyouth
职务:普通成员
等级:1
金币:1.0
发贴:181
|
#42001/1/1 22:42:10
18、cursor(精灵属性) 语法:sprite(whichSprite).cursor = [castNumber, maskCastNumber] set the cursor of sprite whichSprite to [castNumber, maskCastNumber] sprite(whichSprite).cursor = whichCursor set the cursor of sprite whichSprite to whichCursor 描述:精灵属性。决定当鼠标移动到用"whichSprite"指定的精灵上时指针的样式,直到用户用cursor 0将此命令的效果 关闭。该命令可告诉最终用户,哪些区域应该鼠标点击。 想不通这是哪种情况,请大虾帮忙:When you set the cursor sprite property in a given frame, Director keeps track of the sprite rectangle to determine whether to alter the cursor. This rectangle persists when the movie enters another frame unless you set the cursor sprite property for that channel to 0. ·使用语法cursor of sprite...[castNumber, maskCastNumber]来指定被用作指针的成员及其可选的mask。 ·使用语法cursor of sprite...whichCursor来指定系统缺省的指针。whichCursor必须是以下的整数之一: 0* 没有指针被设置(译者注:就是将指针的控制权交还系统) -1 箭头指针 1 “I”字型指针 2 "十"字型指针 3* 粗"十"字型指针 4 watch指针(只用于Macintosh系统) 200* 空指针(指针被隐藏) 带*号表示java播放器不支持这种指针样式,它将用一个箭头指针代替它。 ·使用定制的指针,应该将精灵的cursor属性设置为一个包含被用作指针的表,或一个表示系统指针的数字。 在Windows中,指针必须是一个演员表成员,而不能是一个素材(原文为"resource")。如果以resource为指针 director将用标准的箭头指针来替代它。在跨平台项目中,最好不要使用定制指针。 如果一个位图指针使用了matte油墨,那它只在精灵的matte部分之上才会改变。 即使精灵的位置已经移动,指针在它的原始位置上仍会改变。要避免这种情况,可以在这个区域禁止执行 rollovers,或者在将精灵删除前将它的位置重定义到菜单栏之上。 在machintosh系统中,你可以使用一个在当前的open movie文件被编过号的指针resource来作为指针,只要 将whichCursor置换为cursor resource的编号就可以了。 本属性可以被检测和设置。 例:本程序将在20号精灵上的指针变为watch指针。 sprite(20).cursor = 4 或 set the cursor of sprite 20 to 4
参考:cursor (command)
19、sprite(whichSprite).cursor
20 、cursorsize 语法:member(whichCursorCastMember).cursorSize the cursorSize of member whichCursorCastMember 描述:指针成员属性;指定名为"whichCursorCastMember"的动画指针成员的尺寸。可以使用的值为: 16 16*16象素 32 32*32象素 比指定尺寸小的成员将全尺寸西显示,比指定尺寸大的成员将按比例缩小到指定尺寸。对Windows,缺省值为32,对Macintosh,缺省指为16。如果使用了 错误的参数,运行时将弹出错误提示对话框(但打包时不会出错)。 本属性可以被测试和设置。 例:这个命令重新设置20号动画指针成员的尺寸为32*32像素。 member(20).cursorSize = 32 或set the cursorSize of member 20 = 32
21、date() (系统时钟) 语法:the abbr date the abbrev date the abbreviated date the date the long date the short date 描述:函数;返回当前的系统日期,返回值有三种形式:abbreviated, long, 或short (缺省),abbreviated形式也可称为abbrev或abbr。 如果程序发布成java的形式,date函数仍然有效,但它不接受 abbrev, long, or short这几个参数。程序运行时,date的返回值的 形式是MM/DD/YY,MM代表月,DD代表日,YY代表年,1月到9月用一位数字表示。 director显示日期的格式与PC使用的格式有关。 ·在Windows系统中,可以使用控制面板来定制日期的显示格式。(Windows将当前的short格式储存在system.ini文件中。(请校对 组帮忙:Windows stores the current short date format in the System.ini file. Use this value to determine what the parts of the short date indicate) ·在Macintosh系统中,可以使用日期和时间控制面板定制时间日期的显示格式。 例1:下例显示abbreviated格式的日期: put the abbreviated date -- "Sat, Sep 7, 1991" 例2:下例显示long格式的日期: put the long date -- "Saturday, September 7, 1991" 例3:下例显示short格式的日期: put the short date -- "9/7/91" 例4:下例通过检测date返回的头四个字符是不是1/1来判断当前日期是不是1月1号。如果是,在alert对话框中显示"Happy New Year!" if char 1 to 4 of the date = "1/1/" then alert "Happy New Year!" 注:这三个日期格式,根据你的操作系统被注册为哪个国家的版本而变。上面的例子都是以美国为例的。
参考:time(),date() (formats), systemDate
22、date( )(formats) 语法:date(ISOFormatString) date(ISOFormatInteger) date(ISOFormatIntegerYear, ISOFormatIntegerMonth, ISOFormatIntegerDay) 描述:函数和数据类型;(这句太长了,请校对组帮忙:formatted date object instance for use with other date object instances in arithmetic operations and for use in manipulating dates across platforms and in international formats.) 创建日期格式的数据时,年份用4位数字,月份和日期用两位数字。下边的几个表达式是等价的: 整数: set vacationStart = date(19980618) 字符串: set vacationStart = date("19980618") 逗号分隔: set vacationStart = date(1998, 06, 18) 对date对象的加减被视为对日期的加减。 date对象实例的三个单独的属性的返回值是: #year 以整数表示的年分 #month 以整数表示的月份 #day 以整数表示的日期 例1:下例计算两个日期之间有多少天: myBirthDay = date(19650712) yourBirthDay = date(19450529) put "There are" && abs(yourBirthday - myBirthday) && "days between our birthdays."
例2:下例访问一个date对象的一个单独的属性: myBirthDay = date(19650712) put "I was born in month number"&&myBirthday.month
参考:date() (system clock)
23、on deactivateApplication 语法:on deactivateApplication end 描述:内置句柄;当反映机被送到后台时运行。在Windows系统上,用户可以将反映机送到后台运行,转而运行 另外的程序。任何一个在反映机中运行的MIAWs都可以使用这个句柄。 在创作中,只有当General Preferences菜单中的Animate in Background选项被选中时,这个句柄才会 被调用。
在Windows中,如果只是将反映机最小化,而不在前台运行任何程序的话,这个句柄不会被调用。 例:每次用户将放映机调到后台,以下程序将发出一个声音: on deactivateApplication sound(1).queue(member("closeSound")) sound(1).play() end 参考:activateApplication, on activateWindow, on deactivateWindow
24、on deactivateWindow 语法:on deactivateWindow statement(s) end 描述:系统消息和事件句柄;含有当电影的窗口被设置为非活动窗口时要执行的程序。这个句柄是放置你要对 被设置为非活动窗口执行的lingo的好地方。 例:下例在将影片中的窗口设置为非活动窗口时播放一个名为"Snore"的声音。 on deactivateWindow puppetSound 2, "Snore" end
25、defaultRect 语法:member(whichFlashOrVectorShapeMember).defaultRect the defaultRect of member whichFlashOrVectorShapeMember 描述:成员属性;控制所有由fash影片成员或矢量图形成员创建的的新的精灵的缺省尺寸。defaultRect的设 置也应用到所有舞台上未被拉伸过的精灵。指定本属性的值应使用rectangle格式的值,如rect(0,0,32,32)。
本属性会被成员的defaultRectMode成员属性影响。当一个(flash)影片被插入到演员表中时,defaultRectMode 属性总是被设置成#flash,这意味着defaultRectMode的初始值总是影片在flash中被创建时的属性。应该在改变 defaultRectMode属性的值为#fixed之后设置defaultRecct的值。 本属性可以检测和设置。 例:
26、defaultRectMode 语法:member(whichVectorOrFlashMember).defaultRectMode the defaultRectMode of member whichVectorOrFlashMember 描述:成员属性;控制怎样设置由flash电影成员和矢量图成员创建的精灵的缺省尺寸。属性值是一个rectangle格式的值,例如:rect(0,0,32,32)。 defaultRectMode属性并不直接设置flash电影的实际尺寸,它只是决定怎样设置缺省值。此属性可以使用以下参数: ·#flash(缺省值)——使用flash影片的初始尺寸作为在director中的默认尺寸。 ·#fixed——使用defaltRect成员属性指定的尺寸作为在director中的默认尺寸。 defaultRect成员属性会受到成员的deFaultRectMode属性的影响。当影片被插入到演员表中时,deFaultRectMode属性总是被设置为#flash,这 意味着影片的初始尺寸是它在flash中被创建时的尺寸。在设置障碍defaultRectMode属性为#fixed后才能设置defaultRect属性。 本属性可以被设置和检测。 例:下例接受一个演员表的名字和一个rectangle型数据为参数,然后在指定的演员表中寻找flash演员,将它们的defaultRectMode属性设置为#fixed, 再将defaultRectMode属性设置为rect(0,0,320,240)。 on setDefaultRectSize whichCast repeat with i = 1 to the number of members of castLib whichCast if member(i, whichCast).type = #flash then member(i, whichCast).defaultRectMode = #fixed member(i, whichCast).defaultRect = rect(0,0,320,240) end if end repeat end 参考:flashRect, defaultRect
27、delay 语法:delay numberOfTicks 描述:命令;将播放头暂停指的时间。整数表达式指定了要暂停多少个ticks,1个tick等于1/60秒。在案delay命令的有效期内,唯一有效的鼠标事件和键盘事件是按 Control+Alt+period(windows)或者Command+period键终止影片。因为能够延长某个特定的幀,所以这个命令对控制回放节奏很有用。 delay命令只能在播放头移动的时候应用。当delay命令作用的时候,句柄仍然在运行:仅仅是播放头暂停了,不是脚本暂停了。在EnterFrame 和exitFrame中都应该放置使用了delay的脚本。
在播放头已经停止的情况下,如果要模仿一个暂停行为,可以用startTimer命令或将timer的值设为一个变量,然后在退出这个幀时暂停一个指定的时间长度。 (参见例三,译者注) 例1:下例在播放头离开当前幀的时候将影片延迟2秒: on exitFrame delay 2 * 60 end 例2:下例可以写在幀脚本中,它将影片延迟一个随机的时间: on keyDown if the key = RETURN then delay random(180) end 例3:第一个句柄在播放头离开一个幀的时候设置timer,第二个句柄写在下一幀, 它使影片在当前幀循环指定的时间。 --写在第一幀的脚本
on exitFrame global gTimer set gTimer = the ticks
end --写在第二幀的脚本 on exitFrame global gTimer if the ticks < gTimer + (10 * 60) then go to the frame end if end 参考:startTimer, ticks, timer
28、delete 语法:delete chunkExpression 描述:命令;在任何字符串中删除指定的表达式(character,word,item,或者line)所代表的部分。源字符串包括域成员和字符变量。 在Learning\Lingo Examples文件夹中有一个使用了delete命令的例子。 例1:下例删除了名为"address" 的域成员的第三行的第一个单词: delete word 1 of line 3 of member "Address" 例2:下例删除了名为"address" 的文本成员的第三行的第一个单词: delete member("Address").line[3].word[1] 例3:如果变量bidAmount的第一个字符是"$"的话,下例将它删除: if bidAmount.char[1] = "$" then delete bidAmount.char[1] 参考:char...of, field, item...of, line...of, word...of; hilite (cast member property), paragraph
29、deleteAll 语法:list.deleteAll() deleteAll list 描述:表命令(list command);不改变表的类型,删除其中的所有项目。 例:下例删除名为"propList"的表中的所有项目。 propList.deleteAll()
30、deleteAt 语法:list.deleteAt(number) deleteAt list, number 描述:表命令(list command);删除用list指定的线性表或属性表中用number指定的位置上的表项。 delete命令检查要删除的表项是否在表中,如果不在,director将显示一个警告窗口。 例:下例在名为"desingers"的线性表中删除第二个表项。 designers = ["gee", "kayne", "ohashi"] designers.deleteAt(2)
结果desiners的值为:[gee, ohashi]. 下面的句柄在尝试删除一个表项前先检查它是否存在:
on myDeleteAt theList, theIndex if theList.count < theIndex then beep else theList.deleteAt(theIndex) end if end
参考:addAt
31、deleteFrame 语法:deleteFrame 描述:命令;在Score generation session(请大虾帮忙)过程中,删除当前幀,使接下来的一幀成为当前幀。 例:下面的句柄监测10好精灵是否已经移出640*480的舞台的右边缘,如果是则将此幀删除。 on testSprite beginRecording if sprite(10).locH > 640 then deleteFrame endRecording end 参考:beginRecording, endRecording, updateFrame
32、deleteOne 语法:list.deleteOne(value) deleteOne list, value 描述:表命令(deleteOne);删除线性表或属性表中的一个值。对于属性表,deleteOne同时也删除与该值相关的属性。如果该值在表中出现了不止一次,deleteOne只 删除第一次出现的那一个。 试图删除一个属性没有任何效果。 例:下例中,先创建一个包含Tuesday,Wednesday和Friday的表,然后从表中删除Wednesday。 days = ["Tuesday", "Wednesday", "Friday"] days.deleteOne("Wednesday") put days 使用put days命令将在消息窗中显示: -- ["Tuesday", "Friday"]
33、deleteProp 语法:list.deleteProp(item) deleteProp list, item 描述:表命令(list command);在指定的表中删除指定的表项item)。 ·对线性表,用代表要删除的表项的位置的的数字来替换item。此命令的作用与deleteAt命令相同。如果item的值大于表中表项的数目,将会产生脚本错误。 ·对属性表,用要删除的属性的名字替换item。删除一个属性同时也会删除它的值。 例:下例从名为spriteAttributes,内容为 [#height:100, #width: 200, #color: 34, #ink: 15]的表中删除color属性: spriteAttributes.deleteProp(#color)
结果是:[#height:100, #width: 200, #ink: 15]
参考:deleteAt
34、deleteVertex() 语法:member(memberRef).deleteVertex(indexToRemove) deleteVertex(member memberRef, indexToRemove) 描述:矢量图命令;removes an existing vertex of a vector shape cast member in the index position specified.(不懂矢量图,请大虾帮忙) 例:This line removes the second vertex point in the vector shape Archie(请大虾帮忙) member("Archie").deleteVertex(2)
参考:addVertex, moveVertex(),originMode, vertexList
35、depth 语法:imageObject.depth member(whichCastMember).depth the depth of member whichCastMember 描述:image对象或位图成员属性;显示给定的image对象或位图成员的色彩深度。 深度 色彩数 1 黑、白 2 4色 4,8 16或256色(基于调色板)或灰度 16 16位色 32 32位色 本属性可以被测试而不能被设置。 例:下例显示存于变量newImage中的image对象的色彩深度。输出结果在消息窗口中显示。 put newImage.depth 例:下例在消息窗口中显示成员"Shrine"的色彩深度。 put member("Shrine").depth
编辑历史:[这消息被acneyouth编辑过(编辑时间2001-01-02 09:05:02)]
|
 acneyouth
职务:普通成员
等级:1
金币:1.0
发贴:181
|
#52001/1/4 15:36:37
36、deskTopRectList 语法:the deskTopRectList 描述:系统属性;显示在桌面上的尺寸和位置。这个属性对检查对象(例如窗口,精灵,弹出窗口)是否完全显示在屏幕上很有用。
结果是一个rectangles格式的表,每个rectangle表示一个显示器的边界的坐标。每个监视器的坐标以第一个监视器的左上角为坐标0点。第一个监视器的坐标 等于它的尺寸。如果有第二个监视器,则第二个rectagle值显示第二监视器的右下角相对于第一个监视器的位置。 本属性可以测试,但不能设置。 例1:下例检测显示器的尺寸并在消息窗口中显示结果: put the deskTopRectList -- [rect(0,0,1024,768), rect(1025, 0, 1665, 480] 结果显示第一个显示器是1024*768像素,第二个显示器是640*480像素。 例2:下例检测当前系统有几个显示器: on countMonitors return the deskTopRectList.count end
37、digitalVideoTimeScale 语法:the digitalVideoTimeScale 描述:系统属性;决定系统用于跟踪数字视频成员的时间间隔,单位是/秒。(不知如前所译对不对,请大虾帮忙:System property; determines the time scale, in units per second, that the system uses to track digital video cast members.) 例如,如果digitalVideoTimeScale的值为: ·100——The time scale is 1/100 of a second (and the movie is tracked in 100 units per second). ·500——The time scale is 1/500 of a second (and the movie is tracked in 500 units per second). ·0——Director uses the time scale of the movie that is currently playing. Set digitalVideoTimeScale to precisely access tracks by ensuring that the system抯 time unit for video is a multiple of the digital video抯 time unit. 此属性可以被测试和设置。 例:This statement sets the time scale that the system uses to measure digital video to 600 units per second: the digitalVideoTimeScale to 600 由于不知scale和track该怎么译,因此译不下去,请校对组帮忙。
38、digitalVideoType 语法:member(whichCastMember).digitalVideoType the digitalVideoType of member whichCastMember 描述:成员属性;指出指定的数字视频的格式,可能的值有#quickTime或#videoForWindows。 此属性可以被测试,但不能被设置。 例:下例检测成员"Today's Events"是个QuickTime还是AVI,并在消息窗中显示结果。 put member("Today's Events").digitalVideoType 参考:quickTimeVersion()
39、directToStage 语法:member(whichCastMember).directToStage the directToStage of member whichCastMember sprite(whichSprite).directToStage the directToStage of sprite whichSprite 描述:精灵属性及成员属性;决定数字视频、动画GIF、矢量图或Flash的层(layer)。如果该属性的值是True(1),成员的层将在其它所有成员的前面,同时油墨效果将不起作用。 如果该属性的值为False(0),成员可以显示在任何活动层,油墨效果也可以作用在精零上。 ·对数字视频和GIF动画成员应使用语法member(whichCastMember).directToStage。 ·对Flash和矢量图应使用语法sprite(whichSprite).directToStage。 对支持此属性的成员使用此属性将改善回放效果。
任何成员都不可能显示在使用了directToStage属性的精灵前面。同样,油墨效果也无法影响使用了directToStage属性的精灵。
当某精灵的directToStage属性为True时,Director将它直接写到屏幕上,而不先在Director的缓存中与其它精灵合成。结果将与拖尾(trails)油墨效果相似。
要擦除由directToStage属性的打开和关闭操作造成的拖尾痕迹,可以使用一个全屏的过渡效果,或让另一个精灵通过有拖尾痕迹的区域。(在Windows系统上,you can branch to another similar screen, and the video won't completely disappear.)
要看directToStage在完整的影片中使用的例子,看Learning\Lingo Example目录下的QT and Flash。 例:下例使名为"The Residents"的QuickTime影片总显示在舞台的最前面: member("The Residents").directToStage = 1
40、dither 语法:member(whichMember).dither the dither of member whichMember 描述:位图成员属性;当位图成员在8位色深或更低的色深下显示时,如果必须显示一个不在成员中的色彩,就将该成员抖动(True),或告诉Director在当前调色板中选择一个 最接近的色彩(False)。 为了性能和质量的平衡,只有在需要高品质的时候才将dither设为Ture。抖动比重映射慢,(请大虾帮忙:)and artifacts may be more apparent when animating over a dithered image.
如果色彩深度大于8 bit,此属性将没有效果。 参考:depth
41、do 语法:do stringExpression 描述:命令;求表达式stringExpression的值并将结果当作一个Lingo命令来执行。这个命令对执行用户已经输入到字符变量、域、arrays和文件中,准备用作命令的表达式很有用。 在此命令中使用一个未初始化的变量将导致一个编译错误。
注意:全局变量必须在此命令前声明。 此命令将多行字符视为一行。 例:下例执行引号中的命令: do "beep 2" do commandList[3]
42、doneParsing (whichParser) 查找不到该项目
43、doubleClick 语法:the doubleClick 描述:函数;根据设定好的时间判断连续的两次鼠标点击是双击(True)还是两次单击(False)。 例1:下例在用户双击鼠标时使程序跳转到名为"Enter Bid"的帧。 if the doubleClick then go to frame "Enter Bid" 例2:下例检测一个双击动作。当用户点击鼠标,一个为双击设置时间的repeat循环就开始运行(在此例中是20 ticks)。如果在案20 ticks的时限期间发生了另 一次鼠标单击,则运行doubleClickAction句柄,否则将运行singleClickAction句柄。 on mouseUp if the doubleClick then exit startTimer repeat while the timer < 20 if the mouseDown then doubleClickAction exit end if end repeat singleClickAction end mouseUp 参考:clickOn, the mouseDown (system property), the mouseUp (system property)
编辑历史:[这消息被acneyouth编辑过(编辑时间2001-01-04 18:16:28)] [这消息被acneyouth编辑过(编辑时间2001-01-04 18:19:06)]
|
 acneyouth
职务:普通成员
等级:1
金币:1.0
发贴:181
|
#62001/1/4 18:27:00
搞定!有些地方我还得调整以下,不过不妨碍校对组检查。有些地方涉及一些图形或别的方面的知识,有些词我不知该怎么译,这些地方只好请校对组的朋友帮帮忙了! 以后我更改过的地方我会另发贴子注明。
|
 BBDD
职务:普通成员
等级:1
金币:0.0
发贴:80
|
#72001/1/4 20:57:06
你有些地方漏翻了,你是不是用的Director8的help?
|
 acneyouth
职务:普通成员
等级:1
金币:1.0
发贴:181
|
#82001/1/5 10:39:45
我确实是用D8的。等我对一遍。
|
 5D荣誉版主
职务:版主
等级:1
金币:10.0
发贴:177
|
#92001/1/5 11:17:39
应该是使用D8的Lingo dictionary(PDF文件,MM网站上有下载),而不是help文档。
|
 acneyouth
职务:普通成员
等级:1
金币:1.0
发贴:181
|
#102001/1/5 14:27:44
DDBB,刚才我对了一遍,没有漏翻的条目。crop()在help和pdf中都是分成crop()(image object command) 、 crop()(member command) 、 crop()(cast member property)三个独立的文档来写的。在我的翻译中,我把它们和并了,因为我觉得这样比较合适。如果你觉得还是分开好,我可以改过来。具体内容译漏的可能会有,不过我比较了几个条目,发现help和pdf基本上是完全相同的,example也完全一样。如果有漏的应该不会有太大的差异,等我仔细对一下。
|