[Flashcoders] AS3 is it possbile to show a movieclip before its all frames loaded
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
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