New to flex and attempting a small Weather app to learn flex. I'm
attempting to pass a variable into a package and can't seem to find any
info on how to do this. Here is the code from my app that calls the
package:
public function initApp():void {
rssParser = new RSSParser();
rssParser.addEventListener("dataWritten", onDataReceived);
}
Which works just fine. What I would like to do is pass the text from an
input field (zipcode.text) into the rssParser package but can't seem to
get this working. Any guidance would be great.