Packagefrocessing.display
Classpublic dynamic class FMovieClip
InheritanceFMovieClip Inheritance flash.display.MovieClip
Subclasses AbstractF5MovieClip

FMovieClip. Event handler setup() predraw() draw() Mouse events mousePressed() mouseReleased() mouseClicked() mouseMoved() Keyboard events keyPressed() keyReleased()



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined 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
Property Detail
frameCountproperty
frameCount:uint  [read-only]

frame count from start drawing.


Implementation
    public function get frameCount():uint
isKeyPressedproperty 
isKeyPressed:Boolean  [read-only]

is key pressed.


Implementation
    public function get isKeyPressed():Boolean
isMousePressedproperty 
isMousePressed:Boolean  [read-only]

is mouse pressed.


Implementation
    public function get isMousePressed():Boolean
keyCodeproperty 
keyCode:uint  [read-only]

the keycode of last key pressed.


Implementation
    public function get keyCode():uint
pmouseXproperty 
pmouseX:Number  [read-only]

pre mouseX.


Implementation
    public function get pmouseX():Number
pmouseYproperty 
pmouseY:Number  [read-only]

pre mouseY.


Implementation
    public function get pmouseY():Number
syncSetupproperty 
public var syncSetup:Boolean = true

setup() 内の読み込み(loadURL,loadShape,loadImage,loadFont,loadString)を待つかどうか指定します.

Constructor Detail
FMovieClip()Constructor
public function FMovieClip(eventHandleObject:InteractiveObject = null)

Parameters
eventHandleObject:InteractiveObject (default = null) — handling object for mouse,key evnet. (default null to stage)
Method Detail
event()method
public function event(handlerName:String, handler:Function):void

Change 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):EventDispatcher

URL を読み込みます.

syncSetup が true の場合、setup() で実行すると、読み込み完了後に draw() が実行されます.

Parameters

url:String
 
loader:EventDispatcher (default = null) — URLLoader or Loader or Sound( null to new URLLoader )

Returns
EventDispatcher — loader

See also

loop()method 
public function loop():void

apply draw() on enterframe.

noLoop()method 
public function noLoop():void

stop draw() on enterframe.

QBest()method 
public function QBest():void

StageQuality to BEST.

QHigh()method 
public function QHigh():void

StageQuality to HIGH.

QLow()method 
public function QLow():void

StageQuality to LOW.

QMedium()method 
public function QMedium():void

StageQuality to MEDIUM.

redraw()method 
public function redraw():void

apply draw().