Same here, i really want to enable this option somehow.
i tried the following, but it didnt help me. maybe anyone else can make it work though..
In ImageArea.as, line 98 says:
image_cm.hideBuiltInItems();
First, if i disable this line, the ordinary context menu pops up. unfortunately, "save as.." is not an option.
Second, I added the following code:
image_cm.builtInItems.save = true;
but that didnt help either.
So, lastly, I think i have to add the option myself. My incomplete and unsuccessfull attempt:
if (mXMLManager.enableRightClickOpen) image_cm.customItems.push(new ContextMenuItem("Save...", Delegate.create(this,doSave)));
I guess this should be okey, so i wish to add the function "doSave" to e.g. line 235. which should be something like:
private function doSave(){
COMMAND(mXMLManager.imagePath + mXMLManager.imageFileNames[mCurrentImageIndex]);
}
[nb. used the getURL as example: line 232:
private function openImageLink(){
getURL(mXMLManager.imagePath + mXMLManager.imageFileNames[mCurrentImageIndex],"_blank");]
where i need the relevant "Save as..." command (AS? / HTML? / other?) to replace COMMAND.
Anyone??