Flash Player 6.0.79。
Flash MX 2004。
pBarInstance
.mode
属性;进程栏加载内容的模式。此值可以是下列之一:"event"
、"polled"
或 "manual"
。最常用的模式为 "event"
和 "polled"
。这些模式使用 source
参数指定加载进程是发出 progress
和 complete
事件,像 Loader 组件(事件模式),还是公开 getBytesLoaded
和 getsBytesTotal
方法,像 MovieClip 对象(轮询模式)。您也可以在手动模式下使用 ProgressBar 组件,方法是:手动设置 maximum
、minimum
和 indeterminate
属性,并调用 ProgressBar.setProgress()
方法。
在事件模式中,Loader 对象应该用作源。在轮询模式中,任何公开 getBytesLoaded()
和 getBytesTotal()
方法的对象都可用作源。(包括自定义对象或 _root
对象)
以下代码将进度栏设置为事件模式:
pBar.mode = "event";