Questions tagged [videodisplay]

46 questions
0
votes
1 answer

Flex 4 VideoDisplay background color

Is there anyway I can change the black background color from the Spark VideoDisplay component? Thank you.
Francisc
  • 77,430
  • 63
  • 180
  • 276
0
votes
1 answer

Flex - does anyone have an example of the use of the VideoDisplay control events

The Flex 3 docs are fairly basic. Can someone post a more complete example that uses the control's events? I'm still trying to get my head around ActionScript events.
Brian Lyttle
  • 14,558
  • 15
  • 68
  • 104
0
votes
1 answer

How to create a window in browser which has a NSWindow handle?

I am making a plugin for safari on mac. I am stuck at how to create a window over browser's window upon which a video can be displayed. Earlier, we were using Cocoa Event model under which window pointer received in NPWindow in NPP_SetWindow…
0
votes
1 answer

VideoDisplay cannot load local flv files

I have noticed that I have to put flv files in the same or sub-directories of the application file, for example myproject/bin-debug/flvs/1.flv, and use videodisplay.source="flvs/1.flv" to load. If I put it in myproject/flvs/1.flv, I cannot load it…
zihaoyu
  • 5,483
  • 11
  • 42
  • 46
0
votes
1 answer

Progress-bar (Video Preloader)

I have a spark component VideoDisplay which displays a video. I want to add a ProgressBar to it which will show load progress of the video and when the video is loaded ProgressBar to disappear. How can I do that?
0
votes
1 answer

Flush Flex VideoDisplay request queue

When a command like play(), pause(), or seek() is called while the videoDisplay is unresponsive it gets put on a queue, how do I flush this queue so the most recent command is the only command processed?
asawilliams
  • 2,908
  • 2
  • 30
  • 54
0
votes
1 answer

Flex VideoDisplay reconnect after idletimeout

I have a VideoDisplay that is able to connect to a source and play. After the connection times out I want the connection to be re-established when my play button is clicked. Right now when I reset the source and play the videoDisplay, it gets…
asawilliams
  • 2,908
  • 2
  • 30
  • 54
0
votes
1 answer

Random point on VideoDisplay isn't accurate enough

For a schoolassigment me and some buddies of mine are creating an application that is showing many similarities with the C-Mon & Kypski musicvideo on www.oneframeoffame.com. The application is being developed in Flex. We want to get a random point…
Mike
  • 1
0
votes
1 answer

MediaPlayerState.PLAYBACK_ERROR on a VideoDisplay using AIR on OSX

I've set up a little application that just shows a spark videoDisplay control loading a local file. The video plays ok as an AIR in windows and it plays ok in a browser over osx if the flex application is a web app, but whenever I try to run as a…
Makinolo
  • 1
  • 1
0
votes
1 answer

how to reload VideoDisplay?

I want to play a flv video from a web server, but this video may be updated after several minutes on the web server. So how could I reload this video every minute in case video is updated? Thanks,
Mark Ma
  • 1,342
  • 3
  • 19
  • 35
0
votes
0 answers

Flex - videoDisplay freezes for seconds when jumping to cuepoint?

Update: I've figured out that my problem exists only when creating my project as a Flash Web Application (which is what I normally do, as I do not want the user to install the air application). If I just export the project, and try to run the .swf…
Stian Berg Larsen
  • 543
  • 2
  • 10
  • 29
0
votes
0 answers

Reset videoDisplay

Trying to completely reset my mx videoDisplay component, so that it will trigger the Ready event when I load new content. As of now, it will only trigger the Ready event if I load a new movie. If I try to stop it, clear it, and load the same movie…
Stian Berg Larsen
  • 543
  • 2
  • 10
  • 29
0
votes
1 answer

Scrollable display of multiple video icons

I want to have multiple video icons at the top my website's front page. I will have about 20 or so which won't fit on one line (I want to keep the videos on one like) so I thought of having two button on the right of the group and on the left of the…
Tam
  • 11,872
  • 19
  • 69
  • 119
0
votes
0 answers

Set playhead ahead of buffered VideoDisplay

As an example of how this might be handled, YouTube will unload the video and start loading it from the position the user clicked on the timeline. Currently all I have is: private function seekHandler(event:MouseEvent):void { player.playheadTime…
Niet the Dark Absol
  • 320,036
  • 81
  • 464
  • 592
0
votes
2 answers

Flex with Presentation model

How to control videodisplay functions like videodisplay.stop, pause(), close etc from the presentation model? But I need to control it from Presentation model. Custom events is not my option, as that is costly.