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
|
|
|
|
|
|
|
Or it's that simple or you meant something else:
or use global variable as temporary storage:
|
||||
|
|
|
zdmytriv is right. Although, you can also make default variables, like so: (Modifying zdmytriv's code)
This would trace:
A little off topic, but good to know. |
||||
|
|
|
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:
This would trace:
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. I just thought I'd point that out. |
||
|
|
