Re: [Flashcoders] Remove right click menu

2006-03-07 Thread Dominico Savio
I can't use director because of the following reason: 1. The client worry that Director will be gone in the next 4, 5 years, and the application have to last longer than that :( 2. We are using Flash Remoting, loadVariables via ASP.NET page, load XML and I am not so sure we can do that with Flash

Re: [Flashcoders] Remove right click menu

2006-03-06 Thread Ramon Miguel M. Tayag
Yes, with 3rd party apps like Zinc or SWFStudio. On 3/7/06, Dominico Savio [EMAIL PROTECTED] wrote: Is there anyway we can remove the Setting and About Macromedia ... when users do the right click? My client need to use right click in this project Dominic

Re: [Flashcoders] Remove right click menu

2006-03-06 Thread Gaia-Tek
Here's what I've been able to find out: Disable Flash movie right-click menu disabling right-clicking on a Flash movie (in IE [on a PC]) so, i've complained for some time on various forums about the inherent security flaw of having the About Macromedia Flash Player X open a new browser

Re: [Flashcoders] Remove right click menu

2006-03-06 Thread Dominico Savio
I want to use this online, so can Zinc and SWFStudio do that? or I have to export swf out as EXE? On 3/6/06, Ramon Miguel M. Tayag [EMAIL PROTECTED] wrote: Yes, with 3rd party apps like Zinc or SWFStudio. On 3/7/06, Dominico Savio [EMAIL PROTECTED] wrote: Is there anyway we can remove the

Re: [Flashcoders] Remove right click menu

2006-03-06 Thread Ramon Miguel M. Tayag
Ah, Zinc and SWFStudio are only for standalone apps. You'll be better of w/ Gaia's advice. On 3/7/06, Dominico Savio [EMAIL PROTECTED] wrote: I want to use this online, so can Zinc and SWFStudio do that? or I have to export swf out as EXE? On 3/6/06, Ramon Miguel M. Tayag [EMAIL PROTECTED]

Re: [Flashcoders] Remove right click menu

2006-03-06 Thread Dominico Savio
:( can't use the solution from Gaia-Tek :( because we not allowed to have any message window popping up at all. I am trying to make an application which stimulates MS offices using Flash, and as you know MS Office uses a lot right click to do a lot of things, that's why having alert windows like

Re: [Flashcoders] Remove right click menu

2006-03-06 Thread Michael Bedar
Doesn't office show a contextual menu on r-click? If so you can customize the contextual menu instead of hiding it... var newMenu:ContextMenu = new ContextMenu(); newMenu.hideBuiltInItems(); On Mar 7, 2006, at 12:18 AM, Dominico Savio wrote: :( can't use the solution from Gaia-Tek :(

Re: [Flashcoders] Remove right click menu

2006-03-06 Thread Dennis Roche
why not try director? drop the flash movie inside director and then on export disable the context menu option. there shouldn't be a huge performance hit. you could also dynamically load the swf file into director and simply use the dcr as a stub movie.

Re: [Flashcoders] Remove right click menu

2006-03-06 Thread Ramon Miguel M. Tayag
True, it would work a lot like www.goowy.com does (without FireFox, because for some reason [probably the superimposed HTML], right clicking the Flash window doesn't work in FireFox). You'll still see the Settings and About or something like that... On 3/7/06, Michael Bedar [EMAIL PROTECTED]