Play video with a Apache Flex web app

2015-03-10 Thread Angelo Lazzari
Hi all, we're now committed to create a simple app that should play a sequence of videos (provided from a web agency) and locally saved on the same computer where the app is running: the app will be a AIR app installed on a PC connected to a HD Video (obviously the app won't only play videos but

Re: Play video with a Apache Flex web app

2015-03-10 Thread Angelo Lazzari
Thank you Phil, i will try to convert it first. Thank you! Angelo El mar., 10 de marzo de 2015 a las 13:04, Philip Medlam ( philip.med...@gmail.com) escribió: My best experience of playing videos, is to convert them to .flv files with the Adobe Media Encoder (I believe this is still free?).

Re: Play video with a Apache Flex web app

2015-03-10 Thread Philip Medlam
My best experience of playing videos, is to convert them to .flv files with the Adobe Media Encoder (I believe this is still free?). Suggest you try that option. If you continue to have problems and can reference a small video, I will download it and have a look at the issue. I don't have a PC

Re: how enable checkbox when scroll to bottom of Spark TextArea?

2015-03-10 Thread modjklist
Thank you so much! - Original Message - From: Gaël Chrétien gael.chret...@gmail.com To: users@flex.apache.org Sent: Tuesday, March 10, 2015 12:50:16 AM Subject: Re: how enable checkbox when scroll to bottom of Spark TextArea? Hi, Here is a small implemntation : There is a little

Re: how enable checkbox when scroll to bottom of Spark TextArea?

2015-03-10 Thread modjklist
Wonderful, thanks Evyatar - Original Message - From: Evyatar Ben Halevi-Arbib evyata...@gmail.com To: users@flex apache. org users@flex.apache.org Sent: Tuesday, March 10, 2015 1:21:55 AM Subject: Re: how enable checkbox when scroll to bottom of Spark TextArea? Hey, We had

RE: Play video with a Apache Flex web app

2015-03-10 Thread Sugan Naicker
Hi, You can also try ffmpeg (http://ffmpeg.org/) 1) Convert on PC via Command Line (Can launch via AIR): ffmpeg -i video.avi -ar 22050 -ab 32 -f flv -s 320x240 video.flv 2) Use PHP to convert on your server :

Re: FlexMojos 7.0.1 and FlexPMD

2015-03-10 Thread piotrz
Hi Mario, I'm probably not the right person who should answer to that thread however I can provide you link to Dev list where Chris started to thread about FlexPMD. [1] :) [1] http://apache-flex-development.247.n4.nabble.com/FlexPMD-Starting-work-on-FlexPMD-td45428.html Piotr -

AW: FlexMojos 7.0.1 and FlexPMD

2015-03-10 Thread Christofer Dutz
Hi Mario, i have just started work on Flex PMD. Unfortunately FlexPMD is way out of date and no longer works with more recent Maven versions. Therefore I have started refactoring FlexPMD to work with new PMD versions and hereby by new Maven Plugins for PMD. But still I have to put quite some

Re: how enable checkbox when scroll to bottom of Spark TextArea?

2015-03-10 Thread Gaël Chrétien
Hi, Here is a small implemntation : There is a little problem : the event is distributed before the scroll, so, you can add a blank line to your texarea, and check if the scroll percentage is greater than 99% ;) ?xml version=1.0 encoding=utf-8? s:WindowedApplication

Re: how enable checkbox when scroll to bottom of Spark TextArea?

2015-03-10 Thread Evyatar Ben Halevi-Arbib
Hey, We had something similar in our application, only an enabling a button, and the web version of it was as follows - protected function creationCompleteHandler(event:FlexEvent):void{ scroller.verticalScrollBar.addEventListener(Event.CHANGE,changeHandler,false,0,true);