Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
whiterrabbit #1
AS Class
Here is the main class which imports the QueeryParserClass
[Q]package
{
import classes.QueeryParser;
import flash.events.Event;
public class GenSubmit
{
public function GenSubmit(event:Event)
{
var qp:QueeryParser = new QueeryParser(event)
trace(qp.getfiltervalue());
}
}
}[/Q]
The event being passed in is from a combo box. I do a
[Q]_filtervalue = event.currentTarget.selectedLabel;[/Q] within the
constructor of the QueeryParser class.
then I have a public function (getfiltervalue) also inside the QueeryParser
class that returns the value.
I can trace it out as shown above. but say I wanted to assign that value to a
textbox, I can't do it.
None of the properties inside the class, even if I declare them public and
Bindable are visible outside the class.
Can someone explain this?
thanks.
whiterrabbit Guest
-
#25580 [WFx]: set_error_handler to a class/method resets class properties when error occurs
ID: 25580 Updated by: sniper@php.net Reported By: paul dot liversidge at recycledpixels dot com Status: Wont... -
#25580 [Opn->WFx]: set_error_handler to a class/method resets class properties when error occurs
ID: 25580 Updated by: sniper@php.net Reported By: paul dot liversidge at recycledpixels dot com -Status: Open... -
#25580 [Opn]: set_error_handler to a class/method resets class properties when error occurs
ID: 25580 User updated by: paul.liversidge@recycledpixels.com Reported By: paul dot liversidge at recycledpixels dot com... -
#25580 [NEW]: set_error_handler to a class/method resets class properties when error occurs
From: paul dot liversidge at recycledpixels dot com Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: ... -
Can't find class java.lang.NoClassDefFoundError. (Wrong class path?)
While creating JVM, I am getting the following error: Can't find class java.lang.NoClassDefFoundError. (Wrong class path?) I gave all the...



Reply With Quote

