Re: [Flashcoders] Flash video, works locally not online

2007-03-22 Thread DannyT
I've no idea what i did but it works now, think it was something to do with the attachMovie. Very frustrating for a while tho. Thanks for the suggestions guys. On 22/03/07, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: it could also be that your server doesn't have the right mime settings

[Flashcoders] Flash video, works locally not online

2007-03-21 Thread DannyT
I am trying to get some video loaded at runtime using the following: var my_nc:NetConnection; var my_ns:NetStream; my_nc = new NetConnection(); my_nc.connect(null); my_ns = new NetStream(my_nc); curMedia = createEmptyMovieClip(videoPlayer, getNextHighestDepth());

Re: [Flashcoders] Flash video, works locally not online

2007-03-21 Thread Latcho
The path to a video is relative to your swf when playing it standalone or in your IDE player. But in an online situation the path is relative to the place where the swf is embedded, so to the html file/location. This confuses me often, and this might also be your problem ? regards, latcho.

Re: [Flashcoders] Flash video, works locally not online

2007-03-21 Thread [p e r c e p t i c o n]
it could also be that your server doesn't have the right mime settings for flvees cheers On 3/21/07, DannyT [EMAIL PROTECTED] wrote: I am trying to get some video loaded at runtime using the following: var my_nc:NetConnection; var my_ns:NetStream; my_nc = new NetConnection();