Does anyone know how to display data from an ASP in Koolmoves? I'm trying to display data that I retrieve from an asp in KoolMoves without any success.
I viewed the help and found a few helpful things but I still can't get the data I retrieve from my ASP to display in my dynamic textbox.
This is what my code looks like:
LoadVariables ("sstest.asp",0);
txt1 = var1;
var1 is my simple data from my asp and txt1 is my dynamic text box in Koolmoves. I've tried the LoadVariables using Get and Post with the same results. No data in my dynamic text box. When my movie runs sometimes I get my asp opening up in a seperate IE window. ?? I know it's something silly that I'm doing wrong. I just can't figure out what it is.
Hi Eric,
Try in this way:
1) rename the dynamic-text box as var1
2) use these lines of script (for the main timeline): _root.loadVariables("sstest.asp");
stop();
3) export as Flash 6 but don't forget to set the "backward compatibility"
Originally posted by eric7727 Still no luck. Is there a way for me to see if the data is even getting to my movie from my ASP? Like a msgbox or something?
It works fine for me.
I'm sure that your "personal ASP server" is not working.
Try to launch some simple ASP files in your browser and see the results.
When I launch my ASP I get Var1%3DNote in my IE window. "Note" is the value that is returned from my ASP page. That is what I should see in my dynamic_text box. I don't receive any errors or anything. Just an empty dynamic_text box. ??
I made some changes to my ASP and WAM! The code that Necromanthus sent worked perfectly. I want to thank Necromanthus, w.Brants, and Bob Hartzell for all of your help.
Originally posted by eric7727 I made some changes to my ASP and WAM! The code that Necromanthus sent worked perfectly. I want to thank Necromanthus, w.Brants, and Bob Hartzell for all of your help.