|
主题: 翻译结束
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#12001/12/31 23:52:59
deleteVertex()
语法
member(memberRef).deleteVertex(indexToRemove) deleteVertex(member memberRef, indexToRemove) 描述
矢量图形命令;在指定的指针位置删除一个矢量图形演员当前的一个顶点。
示例
该行语句删除一个指定矢量图形的第二个顶点: member("Archie").deleteVertex(2)
参见相关语句 addVertex, moveVertex(), originMode, vertexList
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#22001/12/31 23:53:38
digitalVideoTimeScale
Syntax 语法
the digitalVideoTimeScale
描述
系统属性;系统跟踪数字视频演员表成员,以1秒为单位测定其时间尺度.
例如, 假设 digitalVideoTimeScale 设置为:
100—时间尺度为1/100秒(并且视频被跟踪在每秒100个单位内).
500—时间尺度为1/500秒 (并且视频被跟踪在每秒500个单位内).
0—Director 使用的是当前正在播放的视频的时间尺度。
设置数字视频时间尺度为正好访问轨迹以确保系统的时间是这个数字视频时间单位的倍数。
此属性可被测试和设置
例如
该语句设置系统数字视频测量的时间尺度为每秒600个单位。
the digitalVideoTimeScale to 600
编辑历史:[这消息被黑蚂蚁编辑过(编辑时间2002-01-01 00:00:20)]
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#32001/12/31 23:54:12
disableImagingTransformation
语法
the disableImagingTransformation
描述
成像lingo属性;当为TRUE时该属性防止在(the stage).image 已经使用时,Director由于自动获取舞台信息缩卷或放大而进行运算。当属性为假时,Director将一直记录当舞台窗口被缩放为100%和没有移出舞台窗口中心的舞台上的图像。当该属性为TRUE时,缩放和卷曲的舞台将通过利用(the stage).image影响获取图象的外观。
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#42001/12/31 23:54:48
EMPTY
语法
EMPTY
描述
字符串长度为空,同“”, 没有字符的字符串.
例如
该语句删除域演员成员中所有的字符,设其为EMPTY:
member("Notice").text = EMPTY
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#52001/12/31 23:56:02
emulateMultiButtonMouse
语法
the emulateMultiButtonMouse
描述
系统属性; 确定一个电影在Mac中点击鼠标的同时按下Control键相当于Windows中鼠标右击为(TRUE)或者非(FALSE)。
Mac没有鼠标右击控制也是一样的。
设置此属性为TRUE以确保你用跨平台电影时的鼠标按钮在有一致的反应
例如
以下语句用来检测计算机是否为Mac,如果是的话设置emulateMultiButtonMouse属性为TRUE。
if the platform contains "Macintosh" then the emulateMultiButtonMouse = TRUE
参考
keyPressed(), rightMouseDown (system property), rightMouseUp (system property)
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#62001/12/31 23:56:49
enabled
语法
the enabled of menuItem whichItem of menu whichMenu
描述
菜单项属性; 确定被某个项目指定的菜单项是已纯文本形式可见的和可选(TRUE,default)还是为不可见的和不可选择的(FALSE).
项目表达式可以是菜单项名称或者菜单项数量。表达式可以是菜单名也可以是菜单数。 该enabled 属性可以检测并赋值。
注意: 菜单在Shockwave中是无效的
例如
该句柄能否适用所有指定的项目. The argument theMenu specifies the menu; the argument Setting specifies TRUE or FALSE. For example, the calling statement ableMenu ("Special", FALSE) disables all the items in the Special menu. --该句没译
on ableMenu theMenu, vSetting set n = the number of menuItems of menu theMenu repeat with i = 1 to n set the enabled of menuItem i of menu theMenu to vSetting end repeat end ableMenu See also
name (menu property), number (menus), checkMark, script, number (menu items)
编辑历史:[这消息被黑蚂蚁编辑过(编辑时间2002-01-01 00:18:28)]
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#72001/12/31 23:57:18
enableHotSpot
语法
enableHotSpot(sprite whichQTVRSprite, hotSpotID, trueOrFalse)
描述
QTVR (QuickTime VR) 命令QTVR (QuickTime VR) 命令; 确定QTVR精灵中指定的热点为有效(TRUE),
还是无效(FALSE)。
编辑历史:[这消息被黑蚂蚁编辑过(编辑时间2002-01-01 00:07:24)]
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#82001/12/31 23:59:30
用了几个晚上终于在新年之前完成了! Happy new year!!
|
 5D蚂蚁
职务:普通成员
等级:2
金币:1.0
发贴:355
|
#92002/1/1 0:20:40
The argument theMenu specifies the menu; the argument Setting specifies TRUE or FALSE. For example, the calling statement ableMenu ("Special", FALSE) disables all the items in the Special menu. 该句怎么译呀?请高手指点。
|