<div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div lang="NL" link="blue" vlink="purple"><div><div><div><p class="MsoNormal"><span lang="EN-US">Tom;</span></p>
</div></div></div></div></blockquote><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div lang="NL" link="blue" vlink="purple"><div><div><div><p class="MsoNormal">
<span lang="EN-US" style="font-size:11.0pt;color:#1F497D">A different question I now have is, how do I convert a float to
a string? Haven’t been able to find this in the documentation/examples…
:(</span></p>

<p class="MsoNormal"><span lang="EN-US" style="font-size:11.0pt;color:#1F497D"> </span></p>

<p class="MsoNormal"><font class="Apple-style-span" color="#1F497D" size="4"><span class="Apple-style-span" style="font-size: 15px;"><br></span></font></p></div></div></div></div></blockquote><div><br></div><div>Strangely casting doesn't work (I feel it should). This works though;</div>
<div><br></div><div>3 => float foo;</div><div><br></div><div>string bar;</div><div><br></div><div>foo +=> bar;</div><div><br></div><div><<<bar>>>; </div><div><br></div><div>That's more or less a implicit cast.</div>
<div><br></div><div>We can also make it a bit nicer and create a function that you could use inside of the creation of your OSC messages;</div><div><br></div><div>//Float TO String converter</div><div><br></div><div>fun string ftos(float arg)</div>
<div>    {</div><div>    string bar;</div><div>    arg +=> bar;</div><div>    return bar;</div><div>    }</div><div>    </div><div>//trivial test</div><div><<<ftos( 123.45 ) >>>; </div><div><br></div>
<div>I still feel the lack of a real cast for this is a missing feature though. And I'd like to be able to overload the cast operation.</div><div><br></div><div>Yours,</div><div>Kas.</div></div>