say i have a flash banner. i want it at the top of my page. every time a person clicks a new link i want it NOT to reload the flash, but keep it there.
Also I want it to where my users that log into the page to have it show as an image file after they log in so that it doesnt play anymore. how would this be done?
simple question
Moderator: General Moderators
try this
That would be hard... Because every time they click a link the html to load the flash will be re-sent to the browser, There is a way i can think of but.
include the main content of ur site... since the flash will be at the top.
like this
Were the include code is the main content section of your site design.
this code is only needed on index file
now links look like this
where name is the filename of the file u want to show in the middle content.
As for once they have logged in just use a new top.
include the main content of ur site... since the flash will be at the top.
like this
Code: Select all
<flash stuff></flashstuff>
<table>
<tr>
<td>LEFT NAVIGATION TABLE</td>
<td> <?PHP include("$file.php"); ?> </td>
<td> RIGHT NAV </td>
</tr>
</table>this code is only needed on index file
now links look like this
Code: Select all
index.php?file=nameAs for once they have logged in just use a new top.