I&#39;m trying to push PNG files as part of a &quot;presentation app&quot;.  I tried looking at CTCounter and using #update: as an example to follow.  The method CTCounter&gt;&gt;update: sends the  message SUElement&gt;&gt;update:.  The instance of WAImageTag in my app that I&#39;m trying to update (with a new PNG file) is given an id (by senting the message #id:).  Using this id I tried to update the image:<br>
<br>    self pusher javascript: [ :script |<br>        script element<br>            id: &#39;WWW&#39;;<br>            update: (MMAFileLibrary / self getCurrentPageFile) asString].   &quot;An instance of WAUrl.&quot;<br><br>
This failed.  Tried using SUElement&gt;&gt;replace:<br><br>    self pusher javascript: [ :script |<br>        script element<br>            id: &#39;WWW&#39;;<br>            replace: (html image url: MMAFileLibrary / self getCurrentPageFile)].   &quot;An instance of WAImageTag .&quot;<br>
<br>This resulted in the string &#39;a WAImageTag&#39; being pushed to other browsers.<br><br>Any ideas?<br><br>---John<br>