I am trying to get values from an Access Data Base and pass them to a Flash movie which has text boxes to hold the variables.
I have a single Flash movie. The First frame contains the actionscript :
ifFrameLoaded (1) {
loadVariablesNum ("http:/FilePath.../Courses_Taken.asp?ISID=ISID", 0, "POST"
;
}
The File Courses_Taken.asp has an SQL Query that depends on the variable "ISID" which is passed through te URL, and one other hard coded value.
If I use the variable "ISID" and the one hard coded value, I do not get any values. However if I use a hard coded value in the place of the variable "ISID" I get values. I suspect the problem is in the timing of the Query, but how can I solve the problem. Is there some other cammand I can use to get the values in the first frame??
I have a single Flash movie. The First frame contains the actionscript :
ifFrameLoaded (1) {
loadVariablesNum ("http:/FilePath.../Courses_Taken.asp?ISID=ISID", 0, "POST"
}
The File Courses_Taken.asp has an SQL Query that depends on the variable "ISID" which is passed through te URL, and one other hard coded value.
If I use the variable "ISID" and the one hard coded value, I do not get any values. However if I use a hard coded value in the place of the variable "ISID" I get values. I suspect the problem is in the timing of the Query, but how can I solve the problem. Is there some other cammand I can use to get the values in the first frame??