Welcome Guest ( Log In | Register )




                Web Hosting Guide

Note: How To Retrieve Variables From Function To Another
demolaynyc
post Nov 26 2006, 05:39 AM
Post #1


Premium Member
Group Icon

Group: Members
Posts: 330
Joined: 2-February 06
Member No.: 11,040


I have been having troubles with this but I found out a solution to this. The problem is to declare variables inside a function and retrieve its value from another function--but that doesn't work.

Here is an example of the wrong thing to do:

CODE

function firstFunc () {
     var aVariable = oneValue;
}

function getVariable () {
     trace (aVariable);
}


The trace would return (undefined) because it is undefined in that exact function.

Solution:
do not declare variables inside a function. If you have to, use _root.variableName instead of var variable Name

Here's a sample code:

CODE

function firstFunc () {
     _root.aVariable = oneValue;
}

function getVariable() {
     trace(_root.aVariable);
}


So, tell me what you think. And if there's a better alternative please do post it.
Go to the top of the page
 
+Quote Post

Posts in this topic


Reply to this topicNew Topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts   5 spotok 2,750 24th February 2010 - 12:16 PM
Last post by: iG-rabin
No new   56 prosorcerer 13,695 23rd January 2010 - 03:08 PM
Last post by: iG-
No New Posts   6 pbolduc 4,421 4th January 2010 - 09:48 AM
Last post by: iG-jitendra kumar
No New Posts   1 turbopowerdmaxsteel 8,335 9th December 2009 - 10:22 AM
Last post by: iG-imran
No New Posts   7 Houdini 6,856 6th December 2009 - 05:05 AM
Last post by: iG-Jason
No New Posts   1 xboxrulz 415 7th February 2009 - 12:38 PM
Last post by: rnd-am
No New Posts   11 TavoxPeru 2,451 29th January 2009 - 07:39 AM
Last post by: TavoxPeru
No New Posts   0 xboxrulz 362 29th November 2008 - 08:37 PM
Last post by: xboxrulz
No New Posts   4 khalilov 1,933 10th November 2008 - 05:19 PM
Last post by: khalilov
No New Posts   0 khalilov 611 9th November 2008 - 11:10 AM
Last post by: khalilov
No New Posts   5 yordan 5,426 6th November 2008 - 09:52 AM
Last post by: yordan
No New Posts   0 CheckProgs 406 12th October 2008 - 02:07 AM
Last post by: CheckProgs
No New Posts   7 vizskywalker 5,041 7th July 2008 - 11:03 AM
Last post by: TavoxPeru
No New Posts   6 jedipi 3,827 14th June 2008 - 08:23 AM
Last post by: iGuest
No New Posts   0 Jared 413 21st April 2008 - 04:40 AM
Last post by: Jared


Web Hosting Powered by ComputingHost.com.
HONESTY ROCKS! truth rules.
Creative Commons License