playing a video - not fullscreen - Android Pro

Dear all:

Is there any trick to play a video on a canvas or any other way but NOT full screen ?
Assigning it to a movie texture does not work: http://docs.unity3d.com/Manual/android-unsupported.html

Thanks,
Regards,
Nelson

Unity does not allow you to play movie textures on Android, or even IOS, unless it is in fullscreen mode. You can try converting your video to still images (24 images per second), and then switching the texture of a game object at the same speed (every 1/24 of a second). Many people have used this method for getting around the fact you cannot play movie textures in the free version of Unity. Here is a post that may help: Any possibility to play a video in unity free? - Unity Answers

Neeraj00