Fever & FvAsWing update ( rev 111 )

Fever & FvAsWing update ( rev 111 )

Hi all,

A new update is available from SVN repository

  • FvPaperReader is update
  • 2 new video players ( full / light ) are available
  • and more...

Welcome to the revision 111 ;)

1. FvPaperReader update

  • component is now in fvaswing.components.reader.paper.FvPaperReader package
  • instanciation :

    • new FvPaperReader( name : String, enabledExternalLoading : Boolean )
      • name : name use by the playlist for the load / save process
      • enabledExternalLoading : ( optional ) display and allow user "Open file" actions ( default false )
    • FvPaperReader.getInstance( enabledExternalLoading : Boolean )
      • name is automatically created
  • method getDocument is now getDocumentManager()
    • better naming to avoid addDocument / removeDocument method rules confusion
  • method enableExternalFile() is removed
    • choose this feature at instanciation time
  • use myReader.open( myItem ) to open an document at reader startup
  • use myReader.load( "myPlayList.xml" ) to load and open a pre defined playlist file
  • default, the playlist is not visible
  • shortcut Ctrl+B to switch popup / embed playlist state
  • events type :
    • onNewDocument
    • onLoadDocument
    • onProgressDocument
    • onErrorDocument

    • onUIChanged
    • onPageChanged
    • onZoomChanged
    • onSelection
    • onToolChanged
    • onEnableScrolling
    • onVisibleAreaChanged
  • translation node change ( fvaswing:paper ) is now " fvaswing:reader" in localisation files

2. New VideoPlayer component

A demo is available here :

  • playlist support
  • fullscreen mode support ( if player version is not compliant, an alert dialog is open )
  • bookmark video marker support
  • Adobe FLV cue point support ( triggered as onCuePoint event type )
  • PHP Streaming support
  • control video playback using
    • Basic remote controller UI
    • Contextual menu ( right click ) on video
    • The player menubar
    • Defined Shortcuts
  • Localisation API is connected
  • easy to customize using inheritance

  • instanciation :
    • new FvVideoPlayer( name : String, enabledExternalLoading : Boolean )
    • FvVideoPlayer.getInstance( enabledExternalLoading );
  • use myPlayer.open( myItem ) to open an document at reader startup
  • use myPlayer.load( "myPlayList.xml" ) to load and open a pre defined playlist video files
  • use myPlayer.setVideoUIControl( ui ) to customize the remote controller UI

  • events type :
    • onNewDocument
    • onLoadDocument
    • onProgressDocument
    • onErrorDocument

    • onMetaData
    • onFullScreen
    • onVideoPlayChange
    • onVideoPlayHeadChange
    • onVideoStop
    • onCuePoint
    • onVideoVolumeChange
    • onResize
    • onStartStream
    • onEndStream
    • onBufferFull
    • onBufferEmpty

A Boormark Visual Editor is under construction to allow markers list contruction more easily than simple xml file manual edition.

// enable user to load external video and playlist using file chooser
var video : FvVideoPlayer = new FvVideoPlayer( "myReader", true );

var videoItem : FvVideoItem = new FvVideoItem( "assets/Vid_02.flv" );
video.addDocument( videoItem );
video.addDocument( new FvVideoItem( "assets/video.flv", "My video" ) );
video.addDocument( new FvVideoItem( "assets/example.flv" ) );

// open reader and play passed-in item
video.open( videoItem );

 

// enable user to load external video and playlist using file chooser
var video : FvVideoPlayer = new FvVideoPlayer( "myReader", true );

// load passed-in playlist
// ( reader will be automatically open )
video.load( "playlist.xml" );

3. VideoPlayer ( light version )

A demo is available here :

  • Act like a classic Aswing component ( JPanel subclass )
  • fullscreen mode support ( if player version is not compliant, an alert dialog is open )
  • PHP Streaming support
  • control video playback using the Contextual menu ( right click ) on video
  • Localisation API is connected
  • use myPlayer.load( "video.flv" ) to load video file
  • events type :
    • onLoadInit
    • onLoadError

    • onMetaData
    • onFullScreen
    • onVideoPlayChange
    • onVideoPlayHeadChange
    • onVideoStop
    • onCuePoint
    • onVideoVolumeChange
    • onResize
    • onStartStream
    • onEndStream
    • onBufferFull
    • onBufferEmpty

You don't have to wait for ( JComponent.ON_CREATED ) before loading the video.
An internal process checks this state for you and loads video when ready

var lite : FvVideoPlayerLite = new FvVideoPlayerLite();
lite.load( "repository/video.flv" );

var frame : JFrame = new JFrame( FvAsWingStage.getRootMovieClip(), "Lite player", false );
frame.setResizable( true );
frame.setClosable( false );

var content : Container = frame.getContentPane();
content.setLayout( new BorderLayout( 5,5 ) );
content.append( lite, BorderLayout.CENTER );

frame.setSize( 300, 200 );
frame.show();

4. Playlist based component template

To create more easily component reader with playlist, document loading,... a new Reader / Document / PlayList abstract implemenation is added.
To build your own component you basically need to :

  • extends fvaswing.components.reader.abstract.FvPlayList class to customize your own playlist
  • extends fvaswing.components.reader.abstract.FvReader class to customize your own reader
    • reader act as PlayList / Document manager
  • extends fvaswing.components.reader.abstract.FvReaderDocument class to define custom document properties and features
  • ( optional ) creates your own preloading system using fvaswing.components.reader.loader.FvReaderItemLoader interface

Internal system is automatically build for you :

  • Events support
  • Playlist managment
  • Drag'n drop system
  • Keyboard managment
  • Menubar
  • Standart localisation for builtin components
  • and more... ;)

Take a look at

  • fvaswing.components.reader.FvPaperReader component
  • fvaswing.components.reader.FvVideoPlayer component
to see concrete example of implementation.

5. New menu component

  • FvMenu component
    • allow PopupMenu and Menubar menu item creation with Fever Keys accelerator support
    • automatically take accelerator caption to appen menu item label
    • take a look at fvaswing.components.reader.abstract.FvReader for concrete example
var fileMenu : FvMenu = new FvMenu( "File" );

var openItem : FvMenuItem = fileMenu.addMenuItem(
     "Open",
     _handleOpenItem,
     this,
     new KeyCombo( "Ctrl+O", Keyboard.onKeyCONTROL, Keyboard.onKeyO )
);

5. General updates and news

  • New event structure DynBubbleEvent
    • based on Pixlib BubbleEvent
    • untime properties definition ( "dynamic" class tag )
    • keep Pixlib bubbling support
  • 2 new methods in fever.core.client.ClientPlayer class
    • getVersion() : String
    • isFullScreenCompliant() : Boolean
  • New package fever.medias.video
    • FvVideoDisplay class
      • based on Pixlib VideoDisplay class
      • add FLV cue point support
      • add Video metatdata access
    • VideoCuePoint class
    • VideoCuePointEvent class
    • VideoCuePointType class
    • VideoMetaData class

 

That's all for today, any feebacks / comments / critics are always welcome ;)

Romain Ecarnot

Comments
Ken Rogers's Gravatar I lvoe your work! I plan on using this for my next application compiled with HAXE. I have a question regarding your samples.

The FvThemeChooser has a preloader component unlike the others. I was looking at the code and could not understand how the preloader was included and set for this sample. Again, thanks so much for this amazing package!
# Posted By Ken Rogers | 12/2/06 11:38 AM
Romain's Gravatar Hi Ken and thanks for your comments ;)

The preloading you see is part of the Fever preloading system.
It works with :
- Configuration engine
- Fever installer system.

Take a look at these 2 articles about :
http://docs.google.com/View?docid=dgsw6qcd_27hkq5w...
http://docs.google.com/View?docid=dgsw6qcd_24d8sr4...

You can take a look too at an old Fever articles about somes Fever emebed system here :
http://docs.google.com/View?docid=dgsw6qcd_17g2kg9...

If you don't find your answer, feel free to contact me ;)

Cheers,
Romain
# Posted By Romain | 12/3/06 4:41 AM
wow's Gravatar <a href="http://www.feelingame.com/">wow power leveling</a>
<a href="http://www.feelingame.com">wow powerleveling</a>
<a href="http://www.feelingame.com/wow-power-leveling.asp">wow power leveling</a>
<a href="http://www.feelingame.com/wow-gold.asp">wow gold</a>
<a href="http://www.feelingame.com/wow-items.asp">wow items</a>
<a href="http://www.feelingame.com/about-us.asp" target="_blank">http://www.feelingame.com/about-us.asp">feelingame.com</a>
<a href="http://www.feelingame.com/wow-tips.asp" target="_blank">http://www.feelingame.com/wow-tips.asp">wow tips</a>
<a href="http://www.feelingame.com/most-valuable.asp" target="_blank">http://www.feelingame.com/most-valuable.asp">Most Valuable WOW Power Leveling Service</a>
<a href="http://www.feelingame.com/faq.asp">wow power leveling faq</a>
<a href="http://www.cheap-wow-power-leveling.com">cheap wow power leveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow power leveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow powerleveling</a>
<a href="http://www.cheap-wow-power-leveling.com/">wow power lvl</a>
# Posted By wow | 12/10/07 1:10 AM
smremont.com's Gravatar cool <u style="display:none">
<a href="http://www.smremont.com">smremont.com</a>
<a href="http://www.polostroy.org">polostroy.org</a>
<a href="http://www.willastroy.com">willastroy.com</a>
<a href="http://www.mngt.ru">mngt.ru</a>
<a href="http://www.ofbis.info">ofbis.info</a>
<a href="http://www.onbis.info">onbis.info</a>
<a href="http://www.mnfin.info">mnfin.info</a>
<a href="http://www.m-bis.info">m-bis.info</a>
<a href="http://www.finup.info">finup.info</a>
<a href="http://www.qbis.info">qbis.info</a>
<a href="http://www.ftrs.info">ftrs.info</a>
<a href="http://www.f-bis.info">f-bis.info</a>
<a href="http://www.bis-up.info">bis-up.info</a>
<a href="http://www.forexbis.info">forexbis.info</a>
<a href="http://www.fnbis.info">fnbis.info</a>
<a href="http://www.conbis.info">conbis.info</a>
<a href="http://www.bisoff.info">bisoff.info</a>
<a href="http://www.bisall.info">bisall.info</a>
<a href="http://www.orgstroy.com">orgstroy.com</a></u>
# Posted By smremont.com | 2/19/08 2:37 PM
fsdfsf's Gravatar It's cool!.. This is great work and it is good to meet you all.
Excellent site!!!
http://pipes.yahoo.com/pipes/pipe.info?_id=4o54eTX...
http://pipes.yahoo.com/pipes/pipe.info?_id=78364cb...
# Posted By fsdfsf | 2/25/08 6:06 AM
xxsshara's Gravatar very good article, thank you <u style="display:none">
<a href="http://www.isovet.ru">isovet.ru</a>
<a href="http://www.mebelyaroslavl.ru">mebelyaroslavl.ru</a>
<a href="http://factor-tsp.ru">factor-tsp.ru</a>
<a href="http://spbgau.su">spbgau.su</a>
<a href="http://gru3.ru">gru3.ru</a></u>
# Posted By xxsshara | 2/27/08 9:10 AM
# Posted By Allerfrd | 4/9/08 5:40 AM
yy's Gravatar http://www.omakasetai.com
http://www.cleat.bz
http://man3.jp
http://loan.saisoncard.co.jp
http://www.mvn.jp
http://www.2dou3.com
http://www.sugu-menkyo.jp/
http://www.tealla.com
http://www.valer.jp
http://www.ikyoku-jinji.com
http://www.wayzup.com
http://www.koushouki.com
http://www.bmbeauty.co.jp/
http://pc.m-friend.jp/index1.asp
http://www.rs-group.jp/mb/index.html
http://movamova.net/?n=deco_top
http://digi-comi.net/
http://www.e-chiken.com/shikkan/gekkeikonnann.htm
http://ihinseiri.jp
http://www.soushow.co.jp/car/
http://www.daishin.biz/DAN/DAN.html
http://www.kaigo-sora.co.jp
http://www.kaisha-seturitsu.com
http://www.sanyukk.com
http://kango.bunnabi.jp/m/
http://www.propaganda-web.com/design/gcom285/mens....
http://www.refonavi.com/
http://www.hide-clinic.com/
http://www.ec-engine.jp
http://lei.ne.jp/h/w-dress
http://lei.ne.jp/h
http://www.legal-agent.jp
http://www.za-hitonotsuma.com
http://wikifipau.org/
http://www.creationlife.co.jp/kenyu/atopy.html
http://www.good-stay.net
http://www.monthly-urban.com
http://www.koukokunavi.jp
http://www.gaikaex.net/
http://www.works-core.co.jp/
http://www.securestage.com/
http://www.dentouin.or.jp/
http://drprojet.com/
http://www.adultshop.co.jp/
http://zensyoji.or.jp/
http://www.chizai-job.com/
http://www.daichou-koumon.com/
http://www.legal-lab.com/
http://www7b.biglobe.ne.jp/~houjyu/
http://www.jinmyouji-nokotsudo.jp/
http://www.giftbank.co.jp/
http://www.sweepdesign.jp/wakaresase/
http://www.30upclub.com/items/muscle2.html
http://www.30upclub.com/items/shape_getia.html
http://www.miraiclub.jp/
http://www.adire.jp/cashing/index.html
http://www.le-poisson-japan.com/
http://www.icb-finishing.co.jp/
http://www.nipponsoft.co.jp/recovery
http://www.max.ac.jp/
http://www.chizai-job.com
http://www.green-f.biz
/http://www.icb-finishing.co.jp/image_consult/index.html" target="_blank">http://www.icb-finishing.co.jp/image_consult/index...
http://www.rs-holdings.net/
http://www.deli-spot.net
http://www.c-class.jp
# Posted By yy | 4/25/08 2:18 AM
huo's Gravatar http://tour.travel.jp.msn.com/domestic/diving/????...
http://tour.travel.jp.msn.com/domestic/Okinawa/???...
http://www.abcsunny.co.jp/????????
http://www.actostaff.jp/??
http://www.actostaff.jp/????" target="_blank">http://www.actostaff.jp/????
http://www.actostaff.jp/????" target="_blank">http://www.actostaff.jp/????
http://www.arbeit-guide.co.jp/?????" target="_blank">http://www.arbeit-guide.co.jp/?????
http://www.arbeit-guide.co.jp/????
http://www.arbeit-guide.co.jp/?????" target="_blank">http://www.arbeit-guide.co.jp/??????????
http://www.at-kokusai.jp/index.html/?????
http://www.bikekaitorisatei.com/?????
http://www.biyou-m.com/????
http://www.deai-deai-kekkon.com/????
http://www.e-cash6.com/????????????
http://www.ee-aia.com/?????
http://www.fdcp.co.jp/????
http://www.free-credit.jp/????????????
http://www.free-credit.jp/???????????
http://www.free-credit.jp/???
http://www.furifuri.org/????
http://www.g-kizuna.com/???????????
http://www.gpat.jp/index.html/????
http://www.gpat.jp/index.html/??
http://www.hide-clinic.com/??????
http://www.jurgenlehlshop.jp/jp/index.html/???????...
http://www.kawase-market.com/??
http://www.kawase-market.com/????
http://www.kepp.jp/???
http://www.kepp.jp/??????
http://www.kinutashika.jp/??????
http://www.kitchenhouse.jp/????????
http://www.mj-net.jp/FX
http://www.mj-net.jp/??
http://www.money-a.com/???????????
http://www.palette.jp/???
http://www.palette.jp/??????" target="_blank">http://www.palette.jp/??????
http://www.rittou.jp/pc/????
http://www.senior-work.jp/??????" target="_blank">http://www.senior-work.jp/??????
http://www.senior-work.jp/??
http://www.shinga.com/index.html/?????
http://www.sienjyuku.com/????
http://www.sienjyuku.com/????????
http://www.style-h.net/???
http://www.suguokane.com/????????????
http://www.traderssec.com/??
http://www.vantan.com/courses_h/fd_top.html/?????
http://www.zks.jp/??
http://www.zks.jp/??
# Posted By huo | 5/7/08 9:40 PM
huo's Gravatar http://loan.saisoncard.co.jp/???
http://tour.travel.jp.msn.com/overseas/asia/?????
http://vantan.com/index.html/????
http://www.505555.jp/??
http://www.a-aia.com/???????
http://www.adultshop.co.jp/???????
http://www.business-wind.com/??
http://www.business-wind.com/???????
http://www.career-rise.co.jp/haken/????
http://www.fdcp.co.jp/?????" target="_blank">http://www.fdcp.co.jp/?????
http://www.fdcp.co.jp/?????" target="_blank">http://www.fdcp.co.jp/????????
http://www.fdcp.co.jp/????
http://www.fdcp.co.jp/?????" target="_blank">http://www.fdcp.co.jp/???????
http://www.foodrink.co.jp/si/si.html/????
http://www.foodrink.co.jp/si/si.html/??????????" target="_blank">http://www.foodrink.co.jp/si/si.html/??????????
http://www.fujitadental.jp/????
http://www.fw-solutions.com/index_f.html/SCM??????...
http://www.fxcn.co.jp/????
http://www.fxcn.co.jp/????
http://www.giftbank.co.jp/???????????
http://www.heldin-held.com/?????
http://www.heldin-held.com/???????
http://www.jurgenlehlshop.jp/jp/index.html/??????
http://www.kawase-market.com/FX http://www.kepp.jp/?????
http://www.ladis.co.jp/fukuen/??
http://www.mj-net.jp/????
http://www.noel.co.jp/ie/index.html/???????
http://www.noel.co.jp/ie/ms.html/???????
http://www.palette.jp/?????
http://www.shustop.com/???
http://www.shustop.com/???
http://www.shustop.com/????
http://www.shustop.com/??
http://www.style-h.net/???
http://www.style-h.net/??????
http://www.vantan.com/courses_h/fd_top.html/??????...
http://www.vantan.com/courses_h/fd_top.html/??????...??
http://www.vantan.com/courses_h/fs_top.html/??????...
http://www.vantan.com/courses_h/fs_top.html/??????...??
http://www.vantan.com/courses_h/hm_top.html/??????...
http://www.vantan.com/courses_h/hm_top.html/??????...??" target="_blank">http://www.vantan.com/courses_h/hm_top.html/??????...
http://www.vantan.com/courses_h/in_top.html/??????...
http://www.vantan.com/courses_h/in_top.html/??????...??
http://www.yuraku.jp/??
# Posted By huo | 5/7/08 9:45 PM
dave's Gravatar This is a good article!Dig your article to http://www.diging.com
American business directory http://www.qxiu.com
open directory http://www.qxiu.net
# Posted By dave | 5/9/08 4:08 AM
BlogCFC was created by Raymond Camden. This blog is running version 5.5.006.