Here&#39;s the flash documentation for setProperty - a movie clip function.  Is this what you had in mind?<br><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 10"><meta name="Originator" content="Microsoft Word 10"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5Cmaryann%5CLOCALS%7E1%5CTemp%5Cmsohtml1%5C01%5Cclip_filelist.xml"><style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:"MS Mincho";
        panose-1:2 2 6 9 4 2 5 8 3 4;
        mso-font-alt:"MS 明朝";
        mso-font-charset:128;
        mso-generic-font-family:modern;
        mso-font-pitch:fixed;
        mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
@font-face
        {font-family:"\@MS Mincho";
        panose-1:2 2 6 9 4 2 5 8 3 4;
        mso-font-charset:128;
        mso-generic-font-family:modern;
        mso-font-pitch:fixed;
        mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {mso-style-parent:"";
        margin:0in;
        margin-bottom:.0001pt;
        mso-pagination:widow-orphan;
        font-size:12.0pt;
        font-family:"Times New Roman";
        mso-fareast-font-family:"MS Mincho";}
h1
        {mso-margin-top-alt:auto;
        margin-right:0in;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        mso-pagination:widow-orphan;
        mso-outline-level:1;
        font-size:24.0pt;
        font-family:"Times New Roman";
        font-weight:bold;}
h4
        {mso-margin-top-alt:auto;
        margin-right:0in;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        mso-pagination:widow-orphan;
        mso-outline-level:4;
        font-size:12.0pt;
        font-family:"Times New Roman";
        font-weight:bold;}
p
        {mso-margin-top-alt:auto;
        margin-right:0in;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        mso-pagination:widow-orphan;
        font-size:12.0pt;
        font-family:"Times New Roman";
        mso-fareast-font-family:"MS Mincho";}
code
        {font-family:"Courier New";
        mso-ascii-font-family:"Courier New";
        mso-fareast-font-family:"MS Mincho";
        mso-hansi-font-family:"Courier New";
        mso-bidi-font-family:"Courier New";}
pre
        {margin:0in;
        margin-bottom:.0001pt;
        mso-pagination:widow-orphan;
        tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
        font-size:10.0pt;
        font-family:"Courier New";
        mso-fareast-font-family:"MS Mincho";}
span.searchhilite
        {mso-style-name:searchhilite;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in .25in 1.0in 1.0in;
        mso-header-margin:.5in;
        mso-footer-margin:.5in;
        mso-paper-source:0;}
div.Section1
        {page:Section1;}
-->
</style>



<p><code><span style="">setProperty(target:Object,
property:Object, expression:Object) : Void</span></code></p>

<p>Changes a property value of a movie clip as the movie clip plays.</p>

<p><strong>Availability: </strong>ActionScript 1.0; Flash Player 4</p>

<h4><a name="146938"></a>Parameters</h4>



<p><strong>target</strong><code><span style="">:Object</span></code> - The path to the instance
name of the movie clip whose property is to be set. <strong><br></strong></p><p><strong>property</strong><code><span style="">:Object</span></code> - The property to be set.</p>

<p><strong>expression</strong><code><span style="">:Object</span></code> - Either the new literal value
of the property, or an equation that evaluates to the new value of the
property.</p>

<h4><a name="147008"></a>Example</h4>

<p>The following ActionScript creates a new movie clip and loads an image into
it. The <code><span style="">_x</span></code>and
<code><span style="">_y</span></code>
coordinates are set for the clip using <code><span style="">setProperty()</span></code>. When you click
the button called <code><span style="">right_btn</span></code>, the <code><span style="">_x</span></code> coordinate of a movie clip
named <code><span style="">params_mc</span></code>
is incremented by 20 pixels.</p>

<pre><span style="font-size: 12pt;">this.createEmptyMovieClip(&quot;params_mc&quot;, 999);</span></pre><pre><span style="font-size: 12pt;">params_mc.loadMovie(&quot;<a href="http://www.helpexamples.com/flash/images/image1.jpg">http://www.helpexamples.com/flash/images/image1.jpg</a>&quot;);</span></pre>

<pre><span style="font-size: 12pt;">setProperty(this.params_mc, _y, 20);</span></pre><pre><span style="font-size: 12pt;">setProperty(this.params_mc, _x, 20);</span></pre><pre><span style="font-size: 12pt;">this.right_btn.onRelease = function() {</span></pre>

<pre><span style="font-size: 12pt;">setProperty(params_mc, _x, <span class="searchhilite">getProperty</span>(params_mc, _x)+20);</span></pre><pre><span style="font-size: 12pt;">};</span></pre>

<p class="MsoNormal"> </p>

<br><br><div class="gmail_quote">On Fri, Jul 23, 2010 at 11:25 AM, Dave Burnett <span dir="ltr">&lt;<a href="mailto:d_b_burnett@hotmail.com">d_b_burnett@hotmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<br>
<br>
I&#39;m having another of my noticeably more frequent senior moments.<br>
At least I&#39;ll get half-price at the buffet soon...<br>
<br>
<br>
icon.previousSibling.clip().getProperty(&#39;id&#39;)<br>
<br>
What&#39;s the syntax to set this same property?<br>
<br>
Thnx.<br>
<font color="#888888"><br>
Dave<br>
</font><div class="hm"><br>
<br>
_________________________________________________________________<br>
Hotmail is redefining busy with tools for the New Busy. Get more from your inbox.<br>
<a href="http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_2_______________________________________________" target="_blank">http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_2_______________________________________________</a><br>


Xerte mailing list<br>
<a href="mailto:Xerte@lists.nottingham.ac.uk">Xerte@lists.nottingham.ac.uk</a><br>
<a href="http://lists.nottingham.ac.uk/mailman/listinfo/xerte" target="_blank">http://lists.nottingham.ac.uk/mailman/listinfo/xerte</a><br>
</div></blockquote></div><br>