done!
//v0.1 select proxy run[ ddhMed 1 ](window willbe opened for selecting reference, then proxy willl be deleted)
// run ddhMed 0 - and proxy will not be deleted
global proc string ddhMed (int $st){
string $filePath[];
string $dir;
$lssl = `ls -sl`;
$proxy = $lssl[0];
vector $prPos = `xform -q -ws -t`;
vector $prRot = `xform -q -ws -ro`;
vector $prScl = `xform -q -ws -s`;
$ffilter = "Maya files(*.ma *.mb);;MayaASCii(*.ma);;Maya binary(*.mb);;All files(*.*)";
if($filePath[0]!="") $dir = $filePath[0];
else $dir = `workspace -q -dir`;
$filePath = `fileDialog2 -dir $dir -fm 1 -ff $ffilter -dialogStyle 2`;
$bName = `basenameEx $filePath[0]`;
$ref = `file -r -gl -loadReferenceDepth "all" -shd "displayLayers" -mergeNamespacesOnClash false -ns $bName -options "v=0;" $filePath`;
$rfObjs = ls("-dag",(referenceQuery("-n",`referenceQuery -rfn $ref`)));
$chkGrp = `listRelatives -s $rfObjs[0]`;
if(!size($chkGrp)&&size(`ls -dag $rfObjs[0]`)==`size $rfObjs`)
$mainGrp = $rfObjs[0];
else{
$loc = `spaceLocator -n $bName`;
for ($wat in $rfObjs)
if (!size(`listRelatives -p $wat`)) parent $wat $loc[0];
$mainGrp = $loc[0];
}
xform -ws -t ($prPos.x) ($prPos.y) ($prPos.z) $mainGrp;
xform -ws -ro ($prRot.x) ($prRot.y) ($prRot.z) $mainGrp;
xform -ws -s ($prScl.x) ($prScl.y) ($prScl.z) $mainGrp;
if ($st)delete $proxy;
headsUpMessage -s "^_^";
return $mainGrp;
}