I have a public variable and I am trying to set it, then read it from a different function:

public var str:String;

public function DailyVerse() 
{
    function create() {
        str = "hello";
    } 

    function take() {
        var message:String = str;
        trace(message);
    } 
    take();
}

My trace results says null. Why does it not give me "hello"?

link|improve this question

make sure you call create() BEFORE take() – ToddBFisher Jan 29 at 21:49
Is DailyVerse a class? – Ascension Systems Jan 29 at 21:51
Thanks ToddBFisher, that worked perfectly! Ascension Systems, yes DailyVerse is a class. – Brandon Jan 29 at 22:13
feedback

1 Answer

I'm not sure why you have this set up this way.... if you want to get and set variable, you use the getter and setter syntax for flash.

private var myRestrictedString:String;

public function get DailyVerse():String {
   if(myRestrictedString == undefined) {
      //Not yet created
      myRestrictedString = "Something";
   }
   return myRestrictedString;
}

public function set DaileyVerse(string:String):void {
   myRestrictedString = string;
}

Now you can access this from outside of your class like so:

myClass.DailyVerse = "Test";
trace(myClass.DailyVerse); //Outputs "Test"
link|improve this answer
If DailyVerse is supposed to be a class, you use the same principles just place the getter/setter within the class. – Ascension Systems Jan 29 at 21:52
1  
Lazy instantiaion rocks! +1UP. I would also suggest adding the underscore _myRestrictedString but that's just my preference. – ToddBFisher Jan 29 at 21:54
2  
It is set up this way because I am horrible at programming and Im not sure of what Im doing :) Im attempting to create a website that pulls a daily verse or quote from an XML file, which I have working. I am trying to take those quotes and put them in a variable so I can then send that to a "favorites" database, and maybe let the user email it. I have the variable working, with the quote from the xml, but I cannot trace it from any other functions. Thanks for all the help for both of you. I am going to give this a shot tonight now that I have a better idea of how it should work. – Brandon Jan 29 at 22:18
LOL @Brandon, that's so brutally honest, I just have to up vote your question ;) – weltraumpirat Jan 29 at 23:13
lol that is pretty awesome. Don't get discouraged you're doing good! Keep at it you'll improve over time. We're all improving all the time. :) – Ascension Systems Jan 29 at 23:25
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.