サンプルコードFlexBook の中の flv プレーヤー ![]() FlexBook は、ドラッグやクリックでまるで本物の本のようにページをめくる 事のできる Flex 用のコンテナです。 March 14th, 2007 のアーティクルの FlexBook source files からダウンロード できます。MIT ライセンスなので、以下のようなドキュメント内の表記とともに 自由に使用できます。 01. FlexBook 02. 03. The MIT License 04. 05. Copyright (c) 2007-2008 Ely Greenfield 06. 07. Permission is hereby granted, free of charge, to any person 08. obtaining a copy of this software and associated documentation 09. files (the "Software" ), to deal in the Software without 10. restriction, including without limitation the rights to use, 11. copy, modify, merge, publish, distribute, sublicense, and/or sell 12. copies of the Software, and to permit persons to whom the 13. Software is furnished to do so, subject to the following 14. conditions: 15. 16. The above copyright notice and this permission notice shall be 17. included in all copies or substantial portions of the Software. 18. 19. THE SOFTWARE IS PROVIDED "AS IS" , WITHOUT WARRANTY OF ANY KIND, 20. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 21. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 22. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 23. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 24. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 25. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 26. OTHER DEALINGS IN THE SOFTWARE. 問題点全てのコンテナが問題無く実装はできないようです。 複雑なコンテナは表示できないかもしれません。 今回致命的だったのは、VideoDisplay をページに実装した場合、 backCover という、FlexBook 用のコンテナを同時に使用した場合 フリーズしました。使わなければ問題無いのでサンプルでは使用していません。 オリジナルのサンプルは、チャート等煩雑な構成になっているので、 こちらのサンプルでは、外部ソース化したユーザーコントロールも 使用せずにシンプルなものになっています。 ( Main.mxml と、ライブラリがあればビルドできます ) FlexBook の構成方法は単純で、扉はあっても無くても良く、それ以外は 実装したコンテナが全てページになるという仕掛けです。 001. <?xml version= "1.0" encoding= "utf-8" ?> 002. <mx:Application 003. xmlns:mx= "http://www.adobe.com/2006/mxml" 004. initialize= "initData();" 005. xmlns:controls= "qs.controls.*" 006. xmlns:effects= "qs.effects.*" 007. backgroundGradientColors= "[#000000, #282828]" 008. backgroundColor= "#282828" 009. paddingTop= "40" 010. > 011. 012. <mx:Script> 013. <![CDATA[ 014. 015. import mx.controls.*; 016. import mx.events.*; 017. import mx.formatters.*; 018. import flash.external.*; 019. 020. // ********************************************************* 021. // ログ表示 022. // ********************************************************* 023. public function firebug(data:Object): void { 024. 025. var fmt:DateFormatter = new DateFormatter(); 026. 027. fmt.formatString = "YYYY/MM/DD HH:NN:SS" ; 028. var logdt:String = fmt.format( new Date ); 029. 030. ExternalInterface.call( 031. "console.log" , logdt, 032. data+ "" 033. ); 034. 035. } 036. 037. // ********************************************************* 038. // アプリケーションの初期化 039. // ********************************************************* 040. public function initData(): void { 041. 042. // 再生イベントの発生間隔 043. myVid.playheadUpdateInterval = 1 ; 044. 045. // プログレスバーの初期化 046. progressBar.setProgress( 0 , 100 ); 047. 048. // JavaScript に公開するメソッドの登録 049. ExternalInterface.addCallback( "flexPlay" , Play); 050. ExternalInterface.addCallback( "flexPause" , Pause); 051. ExternalInterface.addCallback( "flexStop" , Stop); 052. 053. } 054. 055. // ********************************************************* 056. // イベントテスト 057. // ********************************************************* 058. public function state_check(e:mx.events.VideoEvent): void { 059. 060. firebug(e.state); 061. 062. } 063. 064. // ********************************************************* 065. // 再生ヘッド位置の表示 066. // ********************************************************* 067. public function playhead_Update(e:mx.events.VideoEvent): void { 068. progressBar.setProgress( 069. e.playheadTime, 070. e.currentTarget.totalTime 071. ); 072. } 073. 074. // ********************************************************* 075. // JavaScript 用のインターフェイス 076. // ********************************************************* 077. public function Play(): void { 078. 079. myVid.play(); 080. 081. } 082. public function Pause(): void { 083. 084. myVid.pause(); 085. 086. } 087. public function Stop(): void { 088. 089. myVid.autoRewind= true ; 090. myVid.stop(); 091. myVid.autoRewind= false ; 092. 093. } 094. 095. ]]> 096. </mx:Script> 097. 098. <controls:FlexBook id= "book" 099. paddingTop= "60" 100. width= "850" height= "510" 101. horizontalCenter= "0" 102. animateCurrentPageIndex= "true" 103. activeGrabArea= "corner" 104. edgeAndCornerSize= "50" 105. itemSize= "halfPage" 106. > 107. 108. <!--表紙定義--> 109. <controls:cover> 110. <mx:Canvas 111. backgroundColor= "#FFFFFF" color= "#000000" 112. > 113. <mx:Label 114. text= "ようこそいらっしゃいました" 115. fontSize= "20" 116. horizontalCenter= "0" 117. verticalCenter= "0" 118. width= "100%" textAlign= "center" 119. /> 120. </mx:Canvas> 121. </controls:cover> 122. 123. <!-- 1 ページ目--> 124. <mx:Canvas 125. backgroundColor= "#FFFFFF" color= "#000000" 126. > 127. <mx:Label 128. text= "物語は・・・・" 129. fontSize= "20" 130. horizontalCenter= "0" 131. verticalCenter= "0" 132. width= "100%" textAlign= "center" 133. /> 134. </mx:Canvas> 135. 136. <!-- 2 ページ目--> 137. <mx:Canvas 138. backgroundColor= "#FFFFFF" color= "#000000" 139. > 140. <mx:Label 141. text= "ある時突然始まったのです。" 142. fontSize= "20" 143. horizontalCenter= "0" 144. verticalCenter= "0" 145. width= "100%" textAlign= "center" 146. /> 147. </mx:Canvas> 148. 149. <!-- 3 ページ目--> 150. <mx:VideoDisplay 151. source= "sample.flv" 152. id= "myVid" 153. autoPlay= "false" autoRewind= "false" 154. playheadUpdate= "playhead_Update(event)" 155. complete= "progressBar.setProgress(100,100)" 156. ready= "state_check(event)" 157. stateChange= "state_check(event)" 158. /> 159. 160. <!-- 4 ページ目--> 161. <mx:VBox 162. backgroundColor= "#FFFFFF" color= "#000000" 163. paddingLeft= "20" 164. > 165. <mx:HBox 166. backgroundColor= "#FFFFFF" color= "#000000" 167. paddingTop= "20" 168. paddingLeft= "20" 169. paddingBottom= "20" 170. > 171. <mx:Button 172. label= "Play" 173. click= "myVid.play();" 174. width= "60" 175. /> 176. <mx:Button 177. label= "Pause" 178. click= "myVid.pause();" 179. width= "60" 180. /> 181. <mx:Button 182. label= "Stop" 183. click= "myVid.autoRewind=true;myVid.stop();myVid.autoRewind=false;" 184. width= "60" 185. /> 186. 187. 188. </mx:HBox> 189. <mx:ProgressBar 190. id= "progressBar" 191. mode= "manual" 192. label= "" 193. width= "300" 194. /> 195. </mx:VBox> 196. 197. <!-- 5 ページ目--> 198. <mx:Canvas 199. backgroundColor= "#FFFFFF" color= "#000000" 200. > 201. <mx:Label 202. text= "さて・・・" 203. fontSize= "20" 204. horizontalCenter= "0" 205. verticalCenter= "0" 206. width= "100%" textAlign= "center" 207. /> 208. </mx:Canvas> 209. 210. <!-- 6 ページ目--> 211. <mx:Canvas 212. backgroundColor= "#FFFFFF" color= "#000000" 213. > 214. <mx:Label 215. text= "またのおこしをお待ちしております" 216. fontSize= "20" 217. horizontalCenter= "0" 218. verticalCenter= "0" 219. width= "100%" textAlign= "center" 220. /> 221. </mx:Canvas> 222. 223. </controls:FlexBook> 224. 225. 226. </mx:Application> |