Hi,
I have got a website that basically has got the following structure:
index.php
The menu.swf has got some buttons that have got:Code:<embed src="menu.swf">
<table width="100%">
<tr>
<td width="50%"><? include('index1.php') ?></td>
<td width="50%"><? include('index2.php') ?></td>
</tr>
</table>
Actionscript Code:on(release){
getURL('xpto.php')
}
What I need to know is:
Is there any AS that could change this:
to this:Code:<td width="50%"><? include('index1.php') ?></td>
<td width="50%"><? include('index2.php') ?></td>
without refreshing the page? Something that only changes this includes target, without refreshing the entire website?Code:<td width="50%"><? include('xpto1.php') ?></td>
<td width="50%"><? include('xpto2.php') ?></td>
Thanks in advance.
