|
|||
|
I Have a problem using media player with flash in swf kit
i load a media player movie with swf kit then in flash i have button that close or change to other thing, well I put a script to that button to close the media player I'm using this script if (mp != null) { mp.activex.Stop(); mp.window.hide(); mp=null; mp.window.close(); } but this just hide the medi player window it doesen't close it. I know it beacuse when I close the application and if I press CNTRL + ALT + Shift, in the tab of process I see the name of the application still running How can I solve this problem Thanks Miguel |
|
|||
|
The
Code:
mp=null; Please do like this... Code:
if (mp != null)
{
mp.activex.Stop();
//mp.window.hide();
//mp=null;
mp.window.close();
}
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|