Heist
12-10-2007, 02:25 PM
Im a bit cunfused. Im trying to publish data from amfphp inside a dynamic textfield. The bit thats confusing me is how do i specify what exactly needs to be published in my textfield ?
function onRefreshResult(r:ResultEvent) {
dynamic_tf.text = r.result;
}
If it helps here is how i publish data from amfphp
$query = sprintf("SELECT sender as From, subject as Topic FROM pm WHERE nick='%s' ORDER BY mess_id AND old DESC", $user);
function onRefreshResult(r:ResultEvent) {
dynamic_tf.text = r.result;
}
If it helps here is how i publish data from amfphp
$query = sprintf("SELECT sender as From, subject as Topic FROM pm WHERE nick='%s' ORDER BY mess_id AND old DESC", $user);