Action action = actionList.get(row);
if (action.hasEnvelopes()) {
for (Parameter parameter : action.getParameterList()) {
Envelope envelope = parameter.getEnvelope();
if (envelope != null) {
double val = envelope.evaluate(frame);
parameter.setValue(Tools.doubleToString(val));
}
}
StringBuffer b = new StringBuffer();