Reputation:
is it possible to load a swf into another swf using a binary socket instead of the traditional AS3 Loader class? Would you share some code or pointers? Thanks!
Upvotes: 0
Views: 390
Reputation: 27045
It shouldn't be a problem. However, you will still need to use the Loader class, but you won't need to make any calls to a web server with it, which is what I assume you want to avoid.
Take a look at Loader.loadBytes() and the examples for connecting to a Socket server.
Upvotes: 2