
July 18th, 2002, 07:13 AM
|
 |
busy...is there any other way?
|
|
Join Date: Nov 2001
Location: Amersfoort, Netherlands
Posts: 259
Time spent in forums: 1 Day 2 h 9 m 43 sec
Reputation Power: 12
|
|
|
that is 1 way of doing it....another (more dynamic in my opinion) is to let flash load a script with variables in it.
howto outlined:
on timeline let flash load variables (see loadmovie) and call a php (if u use php) script.
the php script gets the wanted variables from a database (mysql in your case) en echo them as:
echo "&var1=value&var2=value2&var3=value3";
If flash load this it can use the variables var1, var2 and var3.
For instance if you dynamically want to fill a textbox with the content of var1 you make a textbox in flash (after loading the script on the timeline) and use |AB in flash the make it a input type textbox and give the textbox the name var1.
Now your flashmovie will show the content of var1 in the textbox.
goodluck
|