Hi,
maybe you can use this script from paul tuersley : http://www.paul.tuersley.btinternet.co.uk/scripts/FindProperties_v1.3. jsx.zip
to get the properties of your effect.
If you're after the percentage number, this should help. It assumes your stabilized layer is layer 1 of the active comp:
{
var myComp = app.project.activeItem;
var myLayer = myComp.layer(1);
var myEffect = myLayer.property("Effects").property("Warp Stabilizer");
var myName = myEffect.property("ADBE SubspaceStabilizer-0017").name;
var numIdx = myName.indexOf("(");
if (numIdx > -1){
var myPct = parseFloat(myName.substr(numIdx+1));
alert (myPct);
}else{
alert("No percentage found.");
}
}
Dan
North America
Europe, Middle East and Africa
Asia Pacific