Page 1 of 1

how to insert flash file

Posted: Mon Apr 07, 2008 6:00 am
by shrihit
I have flash object( LINE.fla & LINE. swf) . It will be very much appreciated if anybody show me step by step instruction
to insert this flash object ( dancing line) in to page.

Re: how to insert flash file

Posted: Mon Apr 07, 2008 12:55 pm
by nakkiel

Re: how to insert flash file

Posted: Thu Apr 10, 2008 5:51 pm
by shrihit
There is nothing  written how to install it. Please tell how  and where to install it.

Re: how to insert flash file

Posted: Thu Apr 10, 2008 8:20 pm
by Gregor
Its a module, so you install it by copying the content of the zip-file to he module directory. Logon to your cms, go to modules and there you'll see the module and the install button. Usually the developer also added a help menu.

Gregor

Re: how to insert flash file

Posted: Mon Apr 14, 2008 9:49 am
by nakkiel
I got an swf object to work using this (code in the last post):
http://forum.cmsmadesimple.org/index.ph ... 616.0.html

Re: how to insert flash file

Posted: Mon Apr 14, 2008 11:59 am
by Wiedmann
I got an swf object to work using this
With the swfobject-tag (plugin) you've got it not working?

Re: how to insert flash file

Posted: Wed Apr 16, 2008 12:21 pm
by nakkiel
What I tried to say, I got an swf working just by using the "normal" way of doing it, something like this:

Code: Select all

<object codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100" height="100" id="swf">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="your_swf_name.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="your_swf_name.swf" quality="high" bgcolor="#ffffff" width="100" height="100" name="swf" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
So you don't need to install flv-player module for this.