| Package | frocessing.display |
| Class | public dynamic class FMovieClip |
| Inheritance | FMovieClip flash.display.MovieClip |
| Subclasses | AbstractF5MovieClip |
| Property | Defined By | ||
|---|---|---|---|
| frameCount : uint [read-only]
frame count from start drawing. | FMovieClip | ||
| isKeyPressed : Boolean [read-only]
is key pressed. | FMovieClip | ||
| isMousePressed : Boolean [read-only]
is mouse pressed. | FMovieClip | ||
| keyCode : uint [read-only]
the keycode of last key pressed. | FMovieClip | ||
| pmouseX : Number [read-only]
pre mouseX. | FMovieClip | ||
| pmouseY : Number [read-only]
pre mouseY. | FMovieClip | ||
| syncSetup : Boolean = true
setup() 内の読み込み(loadURL,loadShape,loadImage,loadFont,loadString)を待つかどうか指定します. | FMovieClip | ||
| Method | Defined By | ||
|---|---|---|---|
FMovieClip(eventHandleObject:InteractiveObject = null) | FMovieClip | ||
event(handlerName:String, handler:Function):void
Change the event handler, or handling non public function. | FMovieClip | ||
loadURL(url:String, loader:EventDispatcher = null):EventDispatcher
URL を読み込みます. | FMovieClip | ||
loop():void
apply draw() on enterframe. | FMovieClip | ||
noLoop():void
stop draw() on enterframe. | FMovieClip | ||
QBest():void
StageQuality to BEST. | FMovieClip | ||
QHigh():void
StageQuality to HIGH. | FMovieClip | ||
QLow():void
StageQuality to LOW. | FMovieClip | ||
QMedium():void
StageQuality to MEDIUM. | FMovieClip | ||
redraw():void
apply draw(). | FMovieClip | ||
| frameCount | property |
frameCount:uint [read-only] frame count from start drawing.
public function get frameCount():uint| isKeyPressed | property |
isKeyPressed:Boolean [read-only] is key pressed.
public function get isKeyPressed():Boolean| isMousePressed | property |
isMousePressed:Boolean [read-only] is mouse pressed.
public function get isMousePressed():Boolean| keyCode | property |
keyCode:uint [read-only] the keycode of last key pressed.
public function get keyCode():uint| pmouseX | property |
pmouseX:Number [read-only] pre mouseX.
public function get pmouseX():Number| pmouseY | property |
pmouseY:Number [read-only] pre mouseY.
public function get pmouseY():Number| syncSetup | property |
public var syncSetup:Boolean = truesetup() 内の読み込み(loadURL,loadShape,loadImage,loadFont,loadString)を待つかどうか指定します.
| FMovieClip | () | Constructor |
public function FMovieClip(eventHandleObject:InteractiveObject = null)Parameters
eventHandleObject:InteractiveObject (default = null) — handling object for mouse,key evnet. (default null to stage)
|
| event | () | method |
public function event(handlerName:String, handler:Function):voidChange the event handler, or handling non public function.
Parameters
handlerName:String | |
handler:Function |
See also
| loadURL | () | method |
public function loadURL(url:String, loader:EventDispatcher = null):EventDispatcherURL を読み込みます.
syncSetup が true の場合、setup() で実行すると、読み込み完了後に draw() が実行されます.
Parameters
url:String | |
loader:EventDispatcher (default = null) — URLLoader or Loader or Sound( null to new URLLoader )
|
EventDispatcher — loader
|
See also
| loop | () | method |
public function loop():voidapply draw() on enterframe.
| noLoop | () | method |
public function noLoop():voidstop draw() on enterframe.
| QBest | () | method |
public function QBest():voidStageQuality to BEST.
| QHigh | () | method |
public function QHigh():voidStageQuality to HIGH.
| QLow | () | method |
public function QLow():voidStageQuality to LOW.
| QMedium | () | method |
public function QMedium():voidStageQuality to MEDIUM.
| redraw | () | method |
public function redraw():voidapply draw().