|
|||
|
FlashPlayer.targetCallLabel("_root", "initFrame");
This works perfect when running a packed exe file alone, - but if I use the installer it doesn't work ??? Kind regards Godowsky |
|
|||
|
Are you loading any external movies in your project? If the external movies haven't been added into your project, the installer won't pack them into the setup file and the installed application won't work properly.
In fact the installer has nothing to do with ffish script, the calltarget method is under the control of the flash player. |
|
|||
|
You can do this by handling an event
Code:
Menu.onUpdateItem = function (id, state)
{
switch (id)
{
case "id0":
// disable the menu item
state.enable = false;
break;
}
}
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|