Ticket #170 (closed bug: fixed)
add try/catch around buffer icon
| Reported by: | jeroen | Owned by: | |
|---|---|---|---|
| Priority: | Milestone: | Flash 4.1 | |
| Component: | Keywords: | ||
| Cc: | Forum thread: |
Description
the buffer is madly bugged in 4.0 Don't even bother using the function because most of the streaming scripts don't work because of the bugged buffer, and it's not just that skin it's ALL skins except the default.. Pete 69.212.176.6 I have the latest version of Flash and the JW Player, but when a video is loading, it constantly flashes the "Buffering" icon and loops from 97%-99% through the whole video. It won't stop doing that until I hit pause, then start again. I have no clue why it's doing this. I have the "Bufferlength" set to 1, which is the default. The video won't play on anything other then 1. Anyone else having this problem?
[b]Here is my codeb [code]<script type='text/javascript'> function createPlayer() { var s1 = new SWFObject('/shared/flash_video/player.swf', 'mpl', '950', '500', '9'); s1.addVariable('file', '/shared/flash_video/agent.xml'); s1.addVariable('autostart', 'true'); s1.addVariable('quality', 'true'); s1.addVariable('skin', '/shared/flash_video/skins/Kleur3.swf'); s1.addVariable('playlist', 'right'); s1.addVariable('fullscreen', 'true'); s1.addVariable('playlistsize', '280'); s1.addVariable('repeat', 'true'); s1.addVariable('linktarget', '_self'); s1.write('player');
};
