SFlashDisplayInfo

DisplayInfo structure for flash display objects (MovieClip, TextField, Button)

C++
struct SFlashDisplayInfo {
  enum Flags {
    FDIF_X = 0x001,
    FDIF_Y = 0x002,
    FDIF_Z = 0x004,
    FDIF_XScale = 0x008,
    FDIF_YScale = 0x010,
    FDIF_ZScale = 0x020,
    FDIF_Rotation = 0x040,
    FDIF_XRotation = 0x080,
    FDIF_YRotation = 0x100,
    FDIF_Alpha = 0x200,
    FDIF_Visible = 0x400
  };
};
File

IFlashPlayer.h

SFlashDisplayInfo::Flags Enumeration
C++
enum Flags {
  FDIF_X = 0x001,
  FDIF_Y = 0x002,
  FDIF_Z = 0x004,
  FDIF_XScale = 0x008,
  FDIF_YScale = 0x010,
  FDIF_ZScale = 0x020,
  FDIF_Rotation = 0x040,
  FDIF_XRotation = 0x080,
  FDIF_YRotation = 0x100,
  FDIF_Alpha = 0x200,
  FDIF_Visible = 0x400
};
File

IFlashPlayer.h

SFlashDisplayInfo::Clear Method
C++
void Clear();
SFlashDisplayInfo::GetAlpha Method
C++
float GetAlpha() const;
SFlashDisplayInfo::GetRotation Method
C++
float GetRotation() const;
SFlashDisplayInfo::GetVisible Method
C++
bool GetVisible() const;
SFlashDisplayInfo::GetX Method
C++
float GetX() const;
SFlashDisplayInfo::GetXRotation Method
C++
float GetXRotation() const;
SFlashDisplayInfo::GetXScale Method
C++
float GetXScale() const;
SFlashDisplayInfo::GetY Method
C++
float GetY() const;
SFlashDisplayInfo::GetYRotation Method
C++
float GetYRotation() const;
SFlashDisplayInfo::GetYScale Method
C++
float GetYScale() const;
SFlashDisplayInfo::GetZ Method
C++
float GetZ() const;
SFlashDisplayInfo::GetZScale Method
C++
float GetZScale() const;
SFlashDisplayInfo::IsAnyFlagSet Method
C++
bool IsAnyFlagSet() const;
SFlashDisplayInfo::IsFlagSet Method
C++
bool IsFlagSet(unsigned int flag) const;
SFlashDisplayInfo::Set Method
C++
void Set(float x, float y, float z, float xscale, float yscale, float zscale, float rotation, float xrotation, float yrotation, float alpha, bool visible);
SFlashDisplayInfo::SetAlpha Method
C++
void SetAlpha(float alpha);
SFlashDisplayInfo::SetPosition Method (float, float)
C++
void SetPosition(float x, float y);
SFlashDisplayInfo::SetPosition Method (float, float, float)
C++
void SetPosition(float x, float y, float z);
SFlashDisplayInfo::SetRotation Method
C++
void SetRotation(float degrees);
SFlashDisplayInfo::SetScale Method (float, float)
C++
void SetScale(float xscale, float yscale);
SFlashDisplayInfo::SetScale Method (float, float, float)
C++
void SetScale(float xscale, float yscale, float zscale);
SFlashDisplayInfo::SetVisible Method
C++
void SetVisible(bool visible);
SFlashDisplayInfo::SetX Method
C++
void SetX(float x);
SFlashDisplayInfo::SetXRotation Method
C++
void SetXRotation(float degrees);
SFlashDisplayInfo::SetXScale Method
C++
void SetXScale(float xscale);
Description

100 == 100

SFlashDisplayInfo::SetY Method
C++
void SetY(float y);
SFlashDisplayInfo::SetYRotation Method
C++
void SetYRotation(float degrees);
SFlashDisplayInfo::SetYScale Method
C++
void SetYScale(float yscale);
Description

100 == 100

SFlashDisplayInfo::SetZ Method
C++
void SetZ(float z);
SFlashDisplayInfo::SetZScale Method
C++
void SetZScale(float zscale);
Description

100 == 100

SFlashDisplayInfo::SFlashDisplayInfo Constructor ()
C++
SFlashDisplayInfo();
SFlashDisplayInfo::SFlashDisplayInfo Constructor (float, float, float, float, float, float, float, float, float, float, bool, unsigned short)
C++
SFlashDisplayInfo(float x, float y, float z, float xscale, float yscale, float zscale, float rotation, float xrotation, float yrotation, float alpha, bool visible, unsigned short varsSet);