Passing values between functions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:48:20Z http://stackoverflow.com/feeds/question/1072896 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1072896/passing-values-between-functions 1 Passing values between functions Piyush Giri 2009-07-02T07:02:31Z 2009-07-14T18:34:56Z <p>Hi All is there any way to locally define a variable in a function and then pass it to the oher function. I mean to say is it possible the pass a local value from one function to other function. Somebody Please suggest me the solution. Thanks in advance</p> http://stackoverflow.com/questions/1072896/passing-values-between-functions/1072942#1072942 5 Answer by zdmytriv for Passing values between functions zdmytriv 2009-07-02T07:19:09Z 2009-07-02T07:19:09Z <p>Or it's that simple or you meant something else:</p> <pre><code>private function function1():void { var localVariable:String = "this is local variable of function1()"; function2(localVariable); } private function function2(string:String):void { trace(string); } function1(); </code></pre> <p>or use global variable as temporary storage:</p> <pre><code>private var globalVariable:String = ""; private function function1():void { var localVariable:String = "this is local variable of function1()"; globalVariable = localVariable; } private function function2():void { trace(globalVariable); } function1(); function2(); </code></pre> http://stackoverflow.com/questions/1072896/passing-values-between-functions/1073699#1073699 1 Answer by PiPeep for Passing values between functions PiPeep 2009-07-02T10:50:41Z 2009-07-02T10:50:41Z <p>zdmytriv is right.</p> <p>Although, you can also make default variables, like so:</p> <p>(Modifying zdmytriv's code)</p> <pre><code>private function function1():void { var localVariable:String = "this is local variable of function1()"; function2(localVariable); function2(); //You don't have to enter a default argument } private function function2(string:String = "something else"):void { trace(string); } </code></pre> <p>This would trace:</p> <pre><code>this is local variable of function1() something else </code></pre> <p>A little off topic, but good to know.</p> http://stackoverflow.com/questions/1072896/passing-values-between-functions/1127174#1127174 0 Answer by lukesh for Passing values between functions lukesh 2009-07-14T18:34:56Z 2009-07-14T18:34:56Z <p>Primitives in Flex are passed by value, where complex objects are passed by reference. You can use this to pass objects around without scoping a variable outside the functions themselves. For instance:</p> <pre><code>private function function1():void { { var localVar:Object = {value:"test"}; trace(localVar.value); function2(localVar); trace(localVar.value); } private function function2(obj:Object):void { obj.value = "new value"; } </code></pre> <p>This would trace:</p> <pre><code>test new value </code></pre> <p>Which reflects the fact that function2 receives the parameter "obj" by reference, as a pointer to the original "localVar" object. When it sets the .value field, that change is reflected in function1.</p> <p>I just thought I'd point that out.</p>