Hi Alison,

Maybe this will help:

http://www.macromedia.com/go/3121b301

Dunc

On 11/29/05, Woodage, Alison <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I have a file that is loading .flv files dynamically and playing them
> back via a mediaDisplay component.  The swf is packaged for flash player
> 7.
>
> Everything works fine except when run on a mac from a cd drive or
> network drive (it is fine from a local drive, eg desktop) when flash
> player 7 is installed.  If the player is upgraded to flash player 8 the
> problem is resolved.
>
> Any ideas as to why this might be happening under flash player 7 and not
> 8.  And a fix?
>
> This is the code I'm using to load flv:
>
> var netConn:NetConnection = new NetConnection();
> netConn.connect(null);
> var netStream:NetStream = new NetStream(netConn);
> netStream.onStatus = function(infoObject) {
>         status_txt.text += "Status (NetStream): " + newline;
>         status_txt.text += "Level: " + infoObject.level + newline;
>         status_txt.text += "Code:" + infoObject.code + newline;
> };
>
> main_movie.attachVideo(netStream);
> netStream.setBufferTime(5);
> videoToLoad = "../video/"+videoFileArray[videoNum];
> netStream.play(videoToLoad);
>
> Thanks,
>
> Alison Woodage
> Lead Educational Programmer
> Centre for Learning Innovation
> 51 Wentworth Ave
> Strathfield 2135
> 02 9715 8389
>
> **********************************************************************
> This message is intended for the addressee named and may contain
> privileged information or confidential information or both. If you
> are not the intended recipient please delete it and notify the sender.
> **********************************************************************
> _______________________________________________
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to