AVCaptionStyle.hx 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package flash.media;
  2. extern class AVCaptionStyle {
  3. @:flash.property var backgroundColor(get,set) : String;
  4. @:flash.property var backgroundOpacity(get,set) : String;
  5. @:flash.property var bottomInset(get,set) : String;
  6. @:flash.property var edgeColor(get,set) : String;
  7. @:flash.property var fillColor(get,set) : String;
  8. @:flash.property var fillOpacity(get,set) : String;
  9. @:flash.property var font(get,set) : String;
  10. @:flash.property var fontColor(get,set) : String;
  11. @:flash.property var fontEdge(get,set) : String;
  12. @:flash.property var fontOpacity(get,set) : String;
  13. @:flash.property var size(get,set) : String;
  14. function new() : Void;
  15. private function get_backgroundColor() : String;
  16. private function get_backgroundOpacity() : String;
  17. private function get_bottomInset() : String;
  18. private function get_edgeColor() : String;
  19. private function get_fillColor() : String;
  20. private function get_fillOpacity() : String;
  21. private function get_font() : String;
  22. private function get_fontColor() : String;
  23. private function get_fontEdge() : String;
  24. private function get_fontOpacity() : String;
  25. private function get_size() : String;
  26. private function set_backgroundColor(value : String) : String;
  27. private function set_backgroundOpacity(value : String) : String;
  28. private function set_bottomInset(value : String) : String;
  29. private function set_edgeColor(value : String) : String;
  30. private function set_fillColor(value : String) : String;
  31. private function set_fillOpacity(value : String) : String;
  32. private function set_font(value : String) : String;
  33. private function set_fontColor(value : String) : String;
  34. private function set_fontEdge(value : String) : String;
  35. private function set_fontOpacity(value : String) : String;
  36. private function set_size(value : String) : String;
  37. static final BLACK : String;
  38. static final BLUE : String;
  39. static final BRIGHT_BLUE : String;
  40. static final BRIGHT_CYAN : String;
  41. static final BRIGHT_GREEN : String;
  42. static final BRIGHT_MAGENTA : String;
  43. static final BRIGHT_RED : String;
  44. static final BRIGHT_WHITE : String;
  45. static final BRIGHT_YELLOW : String;
  46. static final CASUAL : String;
  47. static final CURSIVE : String;
  48. static final CYAN : String;
  49. static final DARK_BLUE : String;
  50. static final DARK_CYAN : String;
  51. static final DARK_GREEN : String;
  52. static final DARK_MAGENTA : String;
  53. static final DARK_RED : String;
  54. static final DARK_YELLOW : String;
  55. static final DEFAULT : String;
  56. static final DEPRESSED : String;
  57. static final GRAY : String;
  58. static final GREEN : String;
  59. static final LARGE : String;
  60. static final LEFT_DROP_SHADOW : String;
  61. static final MAGENTA : String;
  62. static final MEDIUM : String;
  63. static final MONOSPACED_WITHOUT_SERIFS : String;
  64. static final MONOSPACE_WITH_SERIFS : String;
  65. static final NONE : String;
  66. static final PROPORTIONAL_WITHOUT_SERIFS : String;
  67. static final PROPORTIONAL_WITH_SERIFS : String;
  68. static final RAISED : String;
  69. static final RED : String;
  70. static final RIGHT_DROP_SHADOW : String;
  71. static final SMALL : String;
  72. static final SMALL_CAPITALS : String;
  73. static final UNIFORM : String;
  74. static final WHITE : String;
  75. static final YELLOW : String;
  76. }