Answered
stream.play & Stream.get
The streamnames both for these, am I not able to define them in a varible loaded from a file?
internalstreamname = "foo";
application.myStream = Stream.get(internalstreamname);
This does not work.
The streamnames both for these, am I not able to define them in a varible loaded from a file?
internalstreamname = "foo";
application.myStream = Stream.get(internalstreamname);
This does not work.
internalstreamname2 = String(internalstreamname);
application.myStream = Stream.get(internalstreamname2);
This works.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.