I wrote a custom image plugin and I need to override the the image properties context menu item.
The information I have found does not seem to cover overrides. How can this be done?
I need the menu item to open a custom image properties page.
Thanks...
The information I have found does not seem to cover overrides. How can this be done?
I need the menu item to open a custom image properties page.
Thanks...
RE: Context Menu Override - How?
FCKCommands.RegisterCommand('Image', new YourClass()) ;
Then YourClass.Execute() will get called when the context menu item is invoked and you can put up your own dialog.