
April 22nd, 2003, 11:07 AM
|
|
Junior Member
|
|
Join Date: Mar 2003
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
simple animation using dynamic text from MySQL... is this possible?
Hey all,
I just upgraded to MX and starting to explore the database integration. What I want to do is create a simple animation with data from 3 or 4 fields in a MySQL database. Can dynamic text be animated (simple animation... size, movement over a few frames... nothing fancy)??
Right now I'm using this page to load an event calendar, with each link opening a new window for more detail. I'd like this popup (view_event.php) to contain the flash with the text loaded for the specific event (event_id=x).
Code:
while (list($event_id, $event_name, $event_date, $day_name,
$event_day, $month_name) = mysql_fetch_array($result))
{ printf("<tr><td width=\"170\" align=\"right\"
class=\"bold12d\">$day_name, $event_day $month_name</td>
\n");
printf("<td width=\"170\"><a href=\"#top\"
class=\"small\" onClick=\"MM_openBrWindow('view_event.php?
event_id=$event_id', 'eventwin', 'scrollbars=yes, resizable=yes,
width=480, height=360')\">$event_name</a></td></tr> \n");
}
Any help would be greatly appreciated!
Last edited by tim_wright : April 25th, 2003 at 11:03 AM.
|