[Flashcoders] AS3 is it possbile to show a movieclip before its all frames loaded

2011-06-13 Thread B Shankar PEDANA
Hi, Is it possible to show a movieclip before all its frames(say 100 frames) or when its first frame is loaded? Thanks Shankar ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Re: Video player fullscreening/quality

2011-02-20 Thread B Shankar PEDANA
Hi, Try this..It might solve your problem. == import flash.display.StageDisplayState; function goFullScreen():void { if (stage.displayState == StageDisplayState.NORMAL) { stage.displayState=StageDisplayState.FULL_SCREEN; } else