# Why can't 3D Rotation animation doesn't work on other PCs?

**URL:** https://forum.kirupa.com/t/why-cant-3d-rotation-animation-doesnt-work-on-other-pcs/319286
**Category:** flash
**Created:** [February 15, 2011, 2:40pm UTC](https://forum.kirupa.com/t/why-cant-3d-rotation-animation-doesnt-work-on-other-pcs/319286 "2011-02-15T14:40:19Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![learner\_7n](https://avatars.discourse-cdn.com/v4/letter/l/b2d939/32.png) [@learner\_7n](https://forum.kirupa.com/u/learner_7n)
#### Post date: [February 15, 2011, 2:40pm UTC](https://forum.kirupa.com/t/why-cant-3d-rotation-animation-doesnt-work-on-other-pcs/319286/1 "2011-02-15T14:40:19Z")

</div>

Hi,

I have created a Buttons Menu and then using Flash CS4 AS3 3D Rotation Tool Just added tilting effect using manual tweening and added the following code:

```auto
ButtonPanelTilt_mc.addEventListener(MouseEvent.ROLL_OVER, rollOverMenu);

function rollOverMenu(event:MouseEvent):void {
ButtonPanelTilt_mc.gotoAndPlay("Tilt");
}

ButtonPanelTilt_mc.addEventListener(MouseEvent.ROLL_OUT, rollOutMenu);

function rollOutMenu(event:MouseEvent):void {
ButtonPanelTilt_mc.gotoAndPlay("Normal");
}

```

The .SWF File is working pretty well on my PC but on other PCs, when I move my mouse over the buttons menu, it disappears.

How to solve the problem? The above is the only code I have.

Please help.
