Soldato
- Joined
- 25 Sep 2003
- Posts
- 3,750
- Location
- Manchester
I'm trying to create a simple drop down box that will then change a flash file in the center of the page but i've no idea. This is what I have so far. How can I go about passing the drop down box value to the flash file?
e.g. On The Beach would be beach.ivp
My research seems to point that I should use DHTML (dynamic html??) which I guess would make sense as html is static afaik, i.e. it's read once by the browser and you'd need some kind of dynamic control?
No idea on DHTML though or how to pass around values. My programming extent is VB and although I made a few useful tools I'm certainly not an expert. Where do I start??
Or would it be better to create it all in Flash and use that to create a flashy drop down box and send the values around etc?
e.g. On The Beach would be beach.ivp
Code:
<HTML>
<HEAD>
<TITLE>Lyme Regis Tour</TITLE>
</HEAD>
<BODY>
<center>
<font face="arial" size="2">
<H1>Lyme Regis Tour </H1>
</font>
<table width="780" border="0">
<tr>
<td><select name="jumpto">
<option value="townmill_bakery_hdrblended.ivp">The Town Mill Bakery</option>
<option>On The Beach</option>
<option>Sandy Area</option>
<option>The Cob</option>
<option>The Cob end</option>
<option>Boats</option>
</select></td>
</tr>
<tr>
<td><applet archive="PurePlayerPro.jar" code="PurePlayerPro" width="640" height="480">
<param name="panorama" value="townmill_bakery_hdrblended.ivp">
<param name="optimizememory" value="true">
</applet></td>
</tr>
</table>
</center>
</BODY>
</HTML>
My research seems to point that I should use DHTML (dynamic html??) which I guess would make sense as html is static afaik, i.e. it's read once by the browser and you'd need some kind of dynamic control?
No idea on DHTML though or how to pass around values. My programming extent is VB and although I made a few useful tools I'm certainly not an expert. Where do I start??

Or would it be better to create it all in Flash and use that to create a flashy drop down box and send the values around etc?
Last edited: