Dynamically change Flash movies.........
-
What I have is a web page, that allows you to select 1 of 12 possible options. When one of these 12 options are selected I want the web form that it loads to dynamically choose a flash movie file based on the selection. Here is my code in HTML
-
What I have is a web page, that allows you to select 1 of 12 possible options. When one of these 12 options are selected I want the web form that it loads to dynamically choose a flash movie file based on the selection. Here is my code in HTML
IMO, there are two options which you may consider using to dynamically change the media file. + Use the client side script, you can get reference to the player(for example with the getElementById method), then change the Src property of the player. + Use the server side script, you will re-render the player with the new html markup which contains a new media file for the src parameter.