Glen, thank you for your help also. I don't think it is cache problem.
I see now that any swf that plays in Flash Player disappear if I chose
full screen from Flash Player Menu. Movie still plays I here sound but
screen is blank.

2011/2/24 Glen Pike <g...@engineeredarts.co.uk>:
> Hi,
>
>    IE 8 is fine with 10.1.85.3 & 10,2,152,26
>    Firefox 3.6.13 is fine with 10,2,152,26
>
>    Cache problem?
>
>    Glen
>
> On 24/02/2011 10:09, natalia Vikhtinskaya wrote:
>>
>> I see white empty screen in full mode. IE 8, FireFox 3.6, FlashPlayer 10
>>
>> 2011/2/24 Glen Pike<g...@engineeredarts.co.uk>:
>>>
>>> Hi,
>>>
>>>    It looks reasonable from here - I see a grey background with a blue
>>> rectangle that still shows up if I go full-screen - they are cropped
>>> slightly, i.e. the blue rectangle is at the bottom right hand corner of
>>> my
>>> screen and I have white bars top and bottom - maybe the swf doesn't match
>>> my
>>> screen proportion - 1280 x 1024
>>>
>>>    Glen
>>>
>>>
>>> On 24/02/2011 09:48, natalia Vikhtinskaya wrote:
>>>>
>>>> Hi
>>>> I am trying to use full screen mode. I tested this example for AS2
>>>> http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html
>>>>
>>>> Here is a test html with goScaledFullScreen function
>>>> http://www.mightybook.com/test/adobeAS2.html
>>>>
>>>> As you can see in full mode  content disappears.
>>>> The same if I use goFullScreen function.
>>>> What is wrong in my adaptation?
>>>>
>>>> Code with custom context menu from this article
>>>>
>>>> import flash.geom.Rectangle;
>>>>
>>>> function goFullScreen()
>>>> {
>>>>    Stage["displayState"] = "fullScreen";
>>>> }
>>>>
>>>> function goScaledFullScreen(){
>>>>    var screenRectangle:Rectangle = new Rectangle();
>>>>    screenRectangle.x = 0;
>>>>    screenRectangle.y = 0;
>>>>    screenRectangle.width=Stage.width/2;
>>>>    screenRectangle.height=Stage.height/2;
>>>>    Stage["fullScreenSourceRect"] = screenRectangle;
>>>>    Stage["displayState"] = "fullScreen";
>>>> }
>>>>
>>>> function exitFullScreen()
>>>> {
>>>>    Stage["displayState"] = "normal";
>>>> }
>>>>
>>>> function menuHandler(obj, menuObj)
>>>> {
>>>>    if (Stage["displayState"] == "normal")
>>>>    {
>>>>       menuObj.customItems[0].enabled = true;
>>>>       menuObj.customItems[1].enabled = false;
>>>>    }
>>>>    else
>>>>    {
>>>>       menuObj.customItems[0].enabled = false;
>>>>       menuObj.customItems[1].enabled = true;
>>>>    }
>>>> }
>>>> var fullscreenCM:ContextMenu = new ContextMenu(menuHandler);
>>>>
>>>> fullscreenCM.hideBuiltInItems();
>>>>
>>>> var fs:ContextMenuItem = new ContextMenuItem("Go Full
>>>> Screen",goScaledFullScreen);
>>>> fullscreenCM.customItems.push( fs );
>>>>
>>>> var xfs:ContextMenuItem = new ContextMenuItem("Exit Full Screen",
>>>> exitFullScreen);
>>>> fullscreenCM.customItems.push( xfs );
>>>>
>>>> _root.menu = fullscreenCM;
>>>>
>>>>
>>>> Thank you in advance.
>>>> _______________________________________________
>>>> Flashcoders mailing list
>>>> Flashcoders@chattyfig.figleaf.com
>>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>>
>>>>
>>> _______________________________________________
>>> Flashcoders mailing list
>>> Flashcoders@chattyfig.figleaf.com
>>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>>
>> _______________________________________________
>> Flashcoders mailing list
>> Flashcoders@chattyfig.figleaf.com
>> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>>
>>
>
> _______________________________________________
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>

_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to