I have created one windows application on .net framework using c# for running Adobe flex application using Active X flash object. it is working fine and there is no issue except when window form is minimized and application is running in it and if any pop up alert come then it is going on top left corner of form and if window is in normal or maximized mode same alert is displaying in middle of application. sometimes alert is displaying in inside window but outside border of form. please help..
here is c# code i have written for running flash application
AxShockwaveFlash ax = new AxShockwaveFlash();
ax.Dock = DockStyle.Fill;
ax.AllowNetworking = "all";
ax.AllowScriptAccess = "always";
ax.DisableLocalSecurity();
ax.LoadMovie(0, applicationUrl);
Thank you VC.One for your response. your first comment given me answer. sorry for late posting. issue was i made "Docktype=fill" for flash object so whenever screen minimize the size of flash object also decreased so based on that size eg.100,20 alert displayed on 0,0 location. So now removed "Docktype=fill" and maintaining original screen size. My application is working fine now
Thank you.