Re: [flexcoders] Re: Support movie format other than flv?

2007-05-13 Thread Young Kim

Thanks for the advise.

On 5/12/07, Stefan Schmalhaus [EMAIL PROTECTED] wrote:


  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com,
ad9798 [EMAIL PROTECTED] wrote:

 Is there way to make Apollo to play movie files other than flv format?
 Thinking about creating a simple media player with Apollo and I would
 love to make that player support avi or other format. Can we use
 DirectShow with actionscript 3.0 in any way?

No, I don't think so. DirectShow is platform-specific (Windows), and
Apollo is a cross-platform runtime.

You could try to embed a QuickTime movie in an HTML file and load this
file into an HTML component, but if there's no QuickTime player on the
user's computer the movie doesn't play.

Stefan

 



Re: [flexcoders] Multiple TrackHighLight for a slider without thumbs

2007-02-27 Thread Young Kim

Very interesting approach and I guess I should give it a shot. However, what
if I want to have multiple track highlights in one HSlider. e.g. a track
highlight for  b/w 10 - 20 and other track highlight for 30 - 40 so forth.
Add more HSlider for each highlight segment? Can we implement this
progmatically?

On 2/24/07, Doug McCune [EMAIL PROTECTED] wrote:


  My initial reaction is to suggest using two HSliders, one overlaid
directly on top of the other. For the bottom one, set the skin for the thumb
to draw nothing, so the thumbs won't appear. For the top one set the skin
for the track to a skin that draws nothing. So what you would end up seeing
is the track of the bottom slider but the thumb of the top slider. Then you
just set the bottom slider to have a thumbcount of 2, the top slider has a
thumbcount of 1, and when they drop the top slider it sets the values of the
bottom slider. Hopefully that makes sense.

Doug


On 2/24/07, ad9798 [EMAIL PROTECTED] wrote:

   I am trying to highlight multiple segments from a HSlider without
 multiple thumbs.

 For example, I drag the thumb to a certain position on the slider to
 mark and then drag it again to the other place to mark again. After
 second mark, the segment between two marks is highlighted.

 Has anybody done this? or knows how to do this?
 Much appreciated.


 



Re: [flexcoders] How to clear video image from VideoDisplay?

2007-02-19 Thread Young Kim

Thanks!! Works great!!

On 2/18/07, cisnky [EMAIL PROTECTED] wrote:


  Use the close method.

.close();


On 2/18/07, ad9798 [EMAIL PROTECTED] wrote:

   Video class has method called 'clear()' to clear out the image from
 displaying it, but I can't find similar function to clear out image
 from VideoDisplay? Any ideas?