# AS3 problem, are MAC and PC flashplayers different?

**URL:** https://forum.kirupa.com/t/as3-problem-are-mac-and-pc-flashplayers-different/267563
**Category:** flash
**Created:** [August 3, 2008, 12:35am UTC](https://forum.kirupa.com/t/as3-problem-are-mac-and-pc-flashplayers-different/267563 "2008-08-03T00:35:59Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bootiteq](https://avatars.discourse-cdn.com/v4/letter/b/eb9ed0/32.png) [@bootiteq](https://forum.kirupa.com/u/bootiteq)
#### Post date: [August 3, 2008, 12:35am UTC](https://forum.kirupa.com/t/as3-problem-are-mac-and-pc-flashplayers-different/267563/1 "2008-08-03T00:35:59Z")

</div>

Im using flash player 9.0.124.0 on both MAC and PC…

This below example works on my mac in both Safari and Firefox but does not work on a PC in IE or Firefox

```auto
var _fs:Boolean = false;
 
btn.addEventListener(MouseEvent.MOUSE_DOWN, toggleFullScreen),
 
function toggleFullScreen(e:MouseEvent){
    if(_fs == false){
         _fs == true;
    }else{
         _fs == false;
    }
    
    trace(_fs); // no mater how many times I click "btn" on a PC _fs remains false; 
 
}

```

If you can help that would be great :hat:
