how to make and install a flash hearder into php script?

gazat4

New Member
Messages
14
Reaction score
0
Points
0
Hello I am working on a big project and finding new ideas every day but I need some help.
Is there a free software where I can design a flash header and how do I put it into a php open source script.

example at http://www.lightning-autohits.com/

And would this kill my bandwidth?
 

freecrm

New Member
Messages
629
Reaction score
0
Points
0
Firstly, whilst the top banner looks good in swf, you should never include menu buttons in it as search bots cannot read them!

You can achieve similar effects with JS, operating on simple unordered list links.

Secondly, I have never seen a free flash swf creator. There are plenty of converters, but no creators and I would never recommend a torrent site . You'll either have to invest in Flash or re-think your options. What about an animated .gif in high res?

Inputting into a php page is simple.

usually, a header is inserted from a different file.

<?php include ('header.php');?>

your header file would then have something like..

<embed SRC="header.swf" WIDTH="750" HEIGHT="350"PLAY="true" LOOP="true" WMODE="transparent" QUALITY="best">

(This has come straight off the page you suggested!)
 
Last edited:

gazat4

New Member
Messages
14
Reaction score
0
Points
0
Thanks for your Reply. I will try what you suggested about animated gif in high res.
 
Top