主题:  在D2004中插入DVD总是出错,是什么原因呢?

thelcg

职务:普通成员
等级:1
金币:0.0
发贴:106
#12006/3/23 10:07:35
在D2004中插入DVD总是出错,是什么原因呢?[font=宋体][/font]



无涯子

职务:普通成员
等级:1
金币:0.7
发贴:222
#22006/3/23 10:41:52
是用插件吗?可能插件不支持。


艺术与视知觉沙龙

pkunquan66

职务:普通成员
等级:1
金币:3.0
发贴:29
#32006/3/28 14:27:58
通过使用 Movie 对象的 newMember() 方法,将 DVD 角色成员添加到电影中。

_movie.newMember(#dvd)

具体参见《Director MX 2004 Help 》中的:

DVD
表示一个 DVD 角色成员。

通过使用 Movie 对象的 newMember() 方法,你能添加一个 DVD 角色成员到一个电影。

-- Lingo 语法
_movie.newMember(#dvd)

// javascript 语法
_movie.newMember("dvd";
下列的某些方法或者属性可能仅应用于由 DVD 角色成员创建的精灵。

适合于 DVD 媒体类型的事件摘要
下列DVD 事件始终被 DVDeventNotification 事件处理程序操纵。当这些事件之一出现时,DVDeventNotification 事件处理程序当作一个参数来接收这些事件. 其中的某些事件同样包含被当作第二个或者第三个参数来传递到 DVDeventNotification 的另外的信息。有关更多的关于使用有 DVDeventNotification 处理程序的下列事件的信息,请参见 on DVDeventNotification。

事件

angleChange
noFirstPlayChain

audioStreamChange
parentalLevelChange

buttonChange
playbackStopped

chapterAutoStop
playPeriodAutoStop

chapterStart
rateChange

diskEjected
stillOff

diskInserted
stillOn

domainChange
titleChange

error
UOPchange

karaokeMode
warning


适合于 DVD 媒体类型的方法摘要
方法

activateAtLoc()
selectAtLoc()

activateButton()
selectButton()

frameStep()
selectButtonRelative()

pause() (DVD)
stop() (DVD)

play() (DVD)
subPictureType()

returnToTitle()
titleMenu()

rootMenu()


适合于 DVD 媒体类型的属性摘要
属性

angle (DVD)
duration (DVD)

angleCount
folder

aspectRatio
frameRate (DVD)

audio (DVD)
fullScreen

audioChannelCount
mediaStatus (DVD)

audioExtension
playRate (DVD)

audioFormat
resolution (DVD)

audioSampleRate
selectedButton

audioStream
startTimeList

audioStreamCount
stopTimeList

buttonCount
subPicture

chapter
subPictureCount

chapterCount
title (DVD)

closedCaptions
titleCount

currentTime (DVD)
videoFormat

domain
volume (DVD)


参见
Member



thelcg

职务:普通成员
等级:1
金币:0.0
发贴:106
#42006/4/4 14:40:53
Thank you for your help.