I am using Strobe Media Playback in an AIR app. I would like access to the NetConnection.connect() call so that I can pass params to the server like so: nc.connect(url, params...). I've tried digging through the SMP and OSMF source and I'm not sure how I could do this, the connect() call appears to be inside the Flex framework classes in some places. Is there a method(s) I can override so that I can change how the nc.connect() call is handled? I am using DVR and VOD type streams.
The NetConnection.connect() call is in the framework. If I'm not wrong it should be in the NetLoader class. You can override the default connect() call to include your params. Hope that helps