<html><head><meta http-equiv="Content-Type" content="text/html charset=windows-1252"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">Hi All,<div><br></div><div>I’m making a movie of a graph. I calculate my data, put it in a window, graph the results. It all works fine (and creates lovely movies). Now, I want to put the parameters that are varying over the course of the movie in the graph.</div><div><br></div><div>I created two text boxes, named “psi_ID” and “delta_ID” Since I know their names, I should be able to call them directly.</div><div><br></div><div>I use: </div><div><span style="font-family: Monaco; font-size: 14px; color: rgb(0, 166, 66);"><br></span></div><div><div style="margin: 0px; font-size: 14px; font-family: Monaco;">psi_string = <span style="color: #797979">"Psi = "</span> + `j` + <span style="color: #797979">"°"</span></div></div><div><span style="font-family: Monaco; font-size: 14px; color: rgb(0, 166, 66);">pf.SetShapeProperties</span><span style="font-family: Monaco; font-size: 14px;">(shape = </span><span style="font-family: Monaco; font-size: 14px; color: rgb(121, 121, 121);">"psi_ID"</span><span style="font-family: Monaco; font-size: 14px;">, text = psi_string)</span></div><div><br></div><div><br></div><div>This fails with the error that it cannot convert parameter to desired type. I think this refers to the first argument. If I change it to </div><div><br></div><div><div style="margin: 0px; font-size: 14px; font-family: Monaco;"><span style="color: #00a642">pf.SetShapeProperties</span>(name = <span style="color: #797979">"psi_ID"</span>, text = psi_string)</div></div><div style="margin: 0px; font-size: 14px; font-family: Monaco;"><br></div><div style="margin: 0px;">This fails with the error “No such shape” (I have checked the shape name)</div><div style="margin: 0px;"><br></div><div style="margin: 0px;">Can anyone see what I am doing wrong here?</div><div style="margin: 0px;"><br></div><div style="margin: 0px;">Cheers</div><div style="margin: 0px;">Chris </div></body></html>