here i am, with another problem :

i use this code:
Code:
case "save":
var f = FlashPlayer.getVariable("_root.f")
var h = FlashPlayer.getVariable("_root.h")
var c = FlashPlayer.getVariable("_root.c")
var d = FlashPlayer.getVariable("_root.d")
image = Image.captureMovie();
// crop
image.crop(f, h, c, d)
trace (f+","+h+","+c+","+d)
// save file
var f = "jpg files(*.jpg)|*.jpg|";
var path = Dialogs.fileSave(f,"","");
trace(path);
image.save(path);
break;
but this results in just the whole movie being captured.
what am i doing wrong? ???