Getting little play controls over my flash video? - html

I have an .swf that plays a small flash video on a website, and I can't for the life of me figure out how to get little controls similar to this virtual spokesperson on this website.
http://washerwizards.com/
I'm not flash savvy, but I keep reading about skin files etc. I'm unsure of how to make them work though.

Related

How to create audio deformation effects in actionsctipt 3?

I use NetConnection, NetStream and Video classes to show video in actionscript 3 (AIR SDK 31.0.0.96) and I can play/stop/pause video, but I don't know how can I add any audio effects (speed changing, distortion, waves or something else).
In my game user has to guess video by deformated sound and for some reasons deformated effect should to be applied in runtime.
I hope, that you will can advice me some library for process audio track in runtime or show me simple code example to access to audio from actionscript.
Thank you.

What kind of bug in flash video playback can show this image?

This picture is shown when one of my friends tries to play the video in my flash program. I use standard Flash Video things to play it (a media.Video class). I don't have a slighets idea what could cause such a peculiar bug???
Here is the image:

How to know for sure something was made in Flash?

If you right-click on a game of movie in a website and see a box with the bottoim line "About Adobe Flash Player..." does that necessarily mean that the content was made with Flash (Either Flash Pro, Flash Builder, FDT, Flash Develop)?
Does it mean that the creators for sure used AS3, or could you in thery have an html5 or union project running in flash player?
Yes, it means the content is made in Flash. If you view source for the website, contents made in flash have .swf extension.
But the creators may not have used AS3, it may be made using AS2 if older.

How to play video loop smoothly in as3?

I have to play video loop (2 second HD quality), and there is problem with playing video from the begining because method seek(0) always freeze Flash Player for a moment. There is now way to avoid this problem.
I have an idea, to play 2 netstreams in 2 separeted workers, but dont know how to share stage to do this ;[.
i have same problem.
i have embed the flv video in swf and play it in time line .
with embed vido you can loop it smoothly, this is a good solution in some cases.
(unconditionally embedding the video in swf have performance issue increased when ever your project become more complicated.
another issue is the swf file size become larger and larger
)

Most efficient way to play sound (many play button in one page)

I have a page where the user can click a button to play word pronunciation,
you can take a loot at http://japaneseclass.jp/note/open/351
Right now, the page uses flash player, and it is really heavy to load about 100 flash sound button on a single page.
I have already tried other flash player such as 1bit player, and they are all the same (heavy)
What are some other alternatives?
I tried to use embed, and it is also heavy.
What I have in mind is to use img button and use javascript to play it, but I dont know how.
You could create one flash audio player that sits somewhere on the page unseen, and make your buttons call it using ExternalInterface, passing a reference to the mp3 you want to play. That way the actual media player is very small, and it loads in the audio tracks on demand.