thank you Todd...
> The format for creating any new object is the following format:
> someVar= new Object();
> //someVar is a variable name you make up to represent the instance of the
> new object you are creating.
> So if you were making a new array, you could write it in the following:
> some_array=new Array();
> //with the array object you can also pass items for the array like so:
> some_array=new Array("item1", "item2");
> trace(some_array); //traces back item1, item2
> I am not sure about the remotestream object. But your best bet is to look
> up in the same help files you were looking at, keeping in mind that object
> must have a variable created then associate it to a new object of your
> choice, whether it be Date, MovieClip, Array, String, Sound, ect. They
all
> have the same format of making an object.
>
> --
> Todd R. Coulson
> multimedia developer - Haley Productions
> todd@haleypro.com
> search newgroups at:
http://groups.google.com >
> "Mário Diogo" <mjorge@netliz.pt> wrote in message
> news:c3d9sq$dp3$1@forums.macromedia.com...
> > To creat a remote stream, i have first to create a netstream object.....
> >
> > For example:
> > remotestream = "my_sample_remote_stream"; //where
> "my_sample_remote_stream"
> > is my object..
> >
> > How do i creat this object?
> >
> > I´ve been watching the flash help files and for what i understand i can
> > creat it like this. What i want to know is if this code is correct, to
> creat
> > the object.?!!
> >
> > Is it like this?
> > newobject = ([my_sample_remote_stream]);
> >
> > Thanks for any help...
> >
> >
>
>