importing files?

Hello. May question may seem trivial, but I dont mean importing files into Unity itself. Is there any way to allow player's to import files (pictures, music, text, etc.) into a game after it is published (and then use it as a texture, audio source, etc.)? Thanks

It is possible... Save the text as a String, you can reuse that... Also, Mike (I believe), has a little thing where you can upload an image, and it show g-force's on your face...

Maybe you can save an array of a web address, use WWW to get the material, save it, then you can use it...

So:

  1. User uploads image on to site like www.imageshack.us

  2. User copies the direct link, and pastes it into the game.

  3. Game saves it as a material using WWW.

  4. Then game can use it...

This would be very problamatic, as you can probably tell...