Hi,
I need to link a flash movie with Django, so I userd djangoAMF.
I followed the tutorial 
(http://djangoamf.sourceforge.jp/index.php?UserManual_en) and seems to 
work fine, but when I  put the results inside a textbox in my flash 
application, it understand data as a float number!

In django I use a simple helloworld function:
---------
def HelloWorld(req):
    return "HelloWorld"
----------
In flash I followed the  so the handleResult function is:
---------
function handleResult(re:ResultEvent):Void {
    this.message_txt.text = re.result;
}
---------

The result is that in message_txt I find a strange number like 
"4.432432e-123" that seems somehow related to the string (if I change 
string the number change! otherwise it remain the same).

Someone has experience with this kind of problem?

Thanks,


Lorenzo

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to